Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Re: LLVMdev Digest, Vol 16, Issue 24"
2005 Nov 01
4
[LLVMdev] Re: Still can't compile backend or frontend on, Windows
llvmdev-request at cs.uiuc.edu wrote:
>Send LLVMdev mailing list submissions to
> llvmdev at cs.uiuc.edu
>
>To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>or, via email, send a message with subject or body 'help' to
> llvmdev-request at cs.uiuc.edu
>
>You can reach the person managing the list at
2005 Oct 30
3
[LLVMdev] Still can't compile backend or frontend on Windows
It's a shame this fine tool can't get better installation support for
Windows. If it did I suspect it would get a lot more coverage. After
5 months or so I still have no way to compile the backend tools let
alone the C frontend on windows. I have tried both Cygwin and Mingw so
far. MingW is preferrable since distributions of the binaries would not
require the cygwin.dll. It
2005 Oct 30
0
[LLVMdev] Still can't compile backend or frontend on Windows
On Sat, 29 Oct 2005, Matthew Bromberg wrote:
> It's a shame this fine tool can't get better installation support for
> Windows. If it did I suspect it would get a lot more coverage. After 5
Yup.
> months or so I still have no way to compile the backend tools let alone the C
> frontend on windows. I have tried both Cygwin and Mingw so far. MingW is
> preferrable
2004 Sep 24
0
[LLVMdev] SlowOperationInformer.cpp:55: error: `SIGALRM' undeclared (first use this functi
Henrik Bach wrote:
> Hi
>
> I'm compiling: /usr/local/src/llvm/lib/Support/SlowOperationInformer.cpp
> on MinGW. However, it stops complaining about that SIGALRM is undeclared:
Is there an alarm() syscall on MinGW? And if so, what signal does it
send (according to the MinGW docs)?
-- John T.
> --------------------------
> @ /usr/local/build/llvm/mklib
2004 Sep 24
2
[LLVMdev] SlowOperationInformer.cpp:55: error: `SIGALRM' undeclared (first use this functi
Hi
I'm compiling: /usr/local/src/llvm/lib/Support/SlowOperationInformer.cpp on
MinGW. However, it stops complaining about that SIGALRM is undeclared:
--------------------------
@ /usr/local/build/llvm/mklib --tag=disable-shared --silent --tag=CXX
--mode=compile g++ -c -I/usr/local/build/llvm/lib/Support
-I/usr/local/src/llvm/lib/Support -I/usr/local/build/llvm/include
2004 Sep 24
0
[LLVMdev] SlowOperationInformer.cpp:55: error:`SIGALRM' undeclared (first use this functi
>From: Reid Spencer <reid at x10sys.com>
>Date: Fri, 24 Sep 2004 13:03:44 -0700
>
>I just discovered that the *only* place this is used is in the debugger
>when it is loading files, etc. There should be a way to do this without an
>alarm. In fact, a thread could easily set the "ShouldShowStatus" every
>second until the the thing is cancelled. Since the
2004 Sep 24
0
[LLVMdev] SlowOperationInformer.cpp:55: error:`SIGALRM'undeclared (first use this functi
To be more specific: Lines containing SIGALRM and alarm().
>From: "Henrik Bach" <henrik_bach_llvm at hotmail.com>
>Date: Fri, 24 Sep 2004 23:21:58 +0200
>
>>From: Reid Spencer <reid at x10sys.com>
>>Date: Fri, 24 Sep 2004 13:03:44 -0700
>>
>>I just discovered that the *only* place this is used is in the debugger
>>when it is loading
2004 Sep 24
0
[LLVMdev] SlowOperationInformer.cpp:55: error: `SIGALRM' undeclared (first use this functi
There's simply no equivalent to signals on Windows. There is no way to
asynchronously interrupt a thread's processing to execute some handler.
The only thing you can asynchronously do to a thread is kill it, and
that's generally frowned upon (who knows what critical sections it might
be holding, etc...).
Stuff like alarms is supposed to be done using the "event-driven"
2004 Sep 24
2
[LLVMdev] SlowOperationInformer.cpp:55: error: `SIGALRM' undeclared (first use this functi
Ultimately, this is another function that needs to go into lib/System. An
alternate approach is to fork a thread, sleep, and when the thread wakes up,
"ring the alarm".
Reid.
John Criswell wrote:
> Henrik Bach wrote:
>
>> Hi
>>
>> I'm compiling:
>> /usr/local/src/llvm/lib/Support/SlowOperationInformer.cpp on MinGW.
>> However, it stops
2004 Oct 06
0
[LLVMdev] Compiling errors from UnixLocalInferiorProcess.cpp when compiling on MinGW
This file (UnixLocalInferiorProcess.cpp) is due for porting and placement in
lib/System but I haven't gotten there yet. If you come up with something that
works on MINGW, please let me know.
Thanks,
Reid.
Henrik Bach wrote:
> Hi
>
> When compiling UnixLocalInferiorProcess.cpp, I get these errors:
> -----------------------
>
2004 Oct 06
2
[LLVMdev] Compiling errors from UnixLocalInferiorProcess.cpp when compiling on MinGW
On Wed, 6 Oct 2004, Reid Spencer wrote:
> This file (UnixLocalInferiorProcess.cpp) is due for porting and placement in
> lib/System but I haven't gotten there yet. If you come up with something that
> works on MINGW, please let me know.
As you might guess by the name, this file is essentially entirely unix
specific. The debugger is designed so that multiple backends can be
plugged
2004 Oct 06
2
[LLVMdev] Compiling errors from UnixLocalInferiorProcess.cpp when compiling on MinGW
Hi
When compiling UnixLocalInferiorProcess.cpp, I get these errors:
-----------------------
C:/MinGW/msys/local/projects/src/llvm/lib/Debugger/UnixLocalInferiorProcess.cpp:41:22:
sys/wait.h: No such file or directory
C:/MinGW/msys/local/projects/src/llvm/lib/Debugger/UnixLocalInferiorProcess.cpp:
In
member function `void <unnamed>::IP::startChild(llvm::Module*, const
2004 Sep 25
1
[LLVMdev] Code to be moved to the specific platform in lib/System?
Hi
I'm compiling: llvm/lib/Support/SystemUtils.cpp on MinGW. However, it stops
complaining about these errors:
--------------------------
C:/MinGW/msys/local/src/llvm/lib/Support/SystemUtils.cpp: In function `bool
llvm::isExecutableFile(const std::string&)':
C:/MinGW/msys/local/src/llvm/lib/Support/SystemUtils.cpp:44: error: `getuid'
undeclared (first use this function)
2008 Oct 11
4
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Kenneth Boyd <zaimoni at zaimoni.com> writes:
[snip]
>> That does not really surprise me about CMake, but then mingw is not a
>> primary compiler on Windows, more so is VC++ or Intel, either way a
>> bug should be submitted to the CMake devs.
> I do not want to troll the CMake devteam, so I will not submit the bug
> report without a full-blown patch.
The CMake
2003 Sep 30
3
Adding Tk extensions to R for windows
Hi,
I'm developing an R/TclTk application which uses the BWidget and
Tktable Tk extensions and I'm trying to make it easy to install.
For now, I'm focusing on Windows users who start with nothing.
I have built Tcl/Tk and Tktable for windows using Msys/MinGW.
(BWidget contains only Tcl scripts so does not need building.)
I have then copied Tktable and BWidget into the lib subdirectory
2005 May 19
0
[LLVMdev] Cygwin Compile Fails for me too.
If you use Microsoft's VC++ compiler to build LLVM, you don't need to
build the C front end (indeed, you can't even if you wanted to).
Matthew Bromberg wrote:
> OK I've got
> GNU ld version 2.15.94 20041229
> as and ar are the same version number etc. I think the latest release
> is 2.16.
> I guess you guys like to stay on the bleeding edge!
>
> I'll
2006 May 30
1
has anyone compiled win32-utils under mingw?
Since the 1.8.4 One-click installer is based on VC++ 6.0 which is no
longer available, I am looking for alternative ways of building
win32-utils so as avoid segfaults. Has anyone used MingGW
successfully? When I run ruby extconf.rb from MSYS the resulting make
file assumes that I am using VC++. Do I need to build ruby under MinGW
first?
--
John-Mason Shackelford
Software Developer
Pearson
2008 Jul 31
0
[LLVMdev] Is there room for another build system?
Albert Graef <Dr.Graef at t-online.de> writes:
>> Some points you mention on your web page are solved.
>
> Which ones? (Just curious.)
No cross-compilation.
C99 compiler check missing: You can check the compiler support for a
flag with just one line.
pkg-config support broken. My understanding is that it is fixed.
>> Others are not applicable to LLVM.
>
> That
2006 Jun 27
0
Win32 Extension Issues Wanted!
Everyone. I had a conversation with folks from Microsoft today about
trying to move Ruby''s installer to Visual Studio 2005 and WiX (the MSI
installer). They''re quite serious about trying to get us shifted to
modern compiler technology rather than VC++6 or even MSYS/MINGW. I
can''t say that I disagree with them, either.
However, I indicated that one of the big problems
2008 Oct 11
0
[LLVMdev] 2.4 Pre-release (v1) Available for Testing
OvermindDL1 wrote:
> On Sat, Oct 11, 2008 at 7:30 AM, Kenneth Boyd <zaimoni at zaimoni.com> wrote:
>
>> At the absolute minimum, simple counting of the success/failure/internal
>> error results requires three different exit codes, and a test driver
>> capable of tallying them up and reporting all failures (unexpected
>> success, unexpected failure, and