Displaying 11 results from an estimated 11 matches for "pijnack".
Did you mean:
hijack
2009 Oct 01
0
[LLVMdev] llvm build errors on windows/mingw32
Wow, I also meet this error before, I'll be pleasure if anyone can
solve this problem, and by the way, are you using msys as the building
env? It's seems that mingw/cmake is working but mingw/msys, and I
didn't ever try with mingw/cygwin:) thanks.
2009/10/1, Ronald Pijnacker <pijnacker at dse.nl>:
> Hi all,
>
> When I try to build llvm on windows/mingw32, I get the following error:
>
> In file included from c:/work/mingw/src/llvm/lib/System/Signals.cpp:33:
> c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc: In function 'LONG
> LLVMUn...
2009 Oct 01
2
[LLVMdev] llvm build errors on windows/mingw32
Hi all,
When I try to build llvm on windows/mingw32, I get the following error:
In file included from c:/work/mingw/src/llvm/lib/System/Signals.cpp:33:
c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc: In function 'LONG LLVMUnhandledExceptionFilter(_EXCEPTION_POINTERS*)':
c:/work/mingw/src/llvm/lib/System/Win32/Signals.inc:275: error: exception handling disabled, use -fexceptions to
2009 Oct 01
6
[LLVMdev] llvm build errors on windows/mingw32
...12'
collect2: ld returned 1 exit status
make[2]: *** [Debug/ADTTests.exe] Error 1
make[2]: Leaving directory `/d/objs/llvm/msys/unittests/ADT'
make[1]: *** [ADT/.makeall] Error 2
make[1]: Leaving directory `/d/objs/llvm/msys/unittests'
make: *** [all] Error 1
I don't know why, And Pijnacker, do you get the same error?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091002/04cc4be6/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: path-for-m...
2009 Oct 02
0
[LLVMdev] llvm build errors on windows/mingw32
On 2009-10-02 19:34, Ronald Pijnacker wrote:
>> On 2009-10-02 01:07, 罗勇刚(Yonggang Luo) wrote:
>>> d:/objs/llvm/msys/Debug/lib/libLLVMSystem.a(Process.o):e:/Downloads/llvm-trunk/lib/System/Win32/Process.inc:78:
>>> undefined reference to `GetProcessMemoryInfo at 12'
>> GetProcessMemoryInfo should be...
2009 Oct 02
2
[LLVMdev] llvm build errors on windows/mingw32
> >>> d:/objs/llvm/msys/Debug/lib/libLLVMSystem.a(Process.o):e:/Downloads/llvm-trunk/lib/System/Win32/Process.inc:78:
> >>> undefined reference to `GetProcessMemoryInfo at 12'
> >> GetProcessMemoryInfo should be defined in psapi.lib, but AFAICS mingw32
> >> doesn't have this import lib. It is included in the MS Platform SDK,
> >> but
2009 Oct 02
0
[LLVMdev] llvm build errors on windows/mingw32
> > >>> d:/objs/llvm/msys/Debug/lib/libLLVMSystem.a(Process.o):e:/Downloads/llvm-trunk/lib/System/Win32/Process.inc:78:
> > >>> undefined reference to `GetProcessMemoryInfo at 12'
> > >> GetProcessMemoryInfo should be defined in psapi.lib, but AFAICS mingw32
> > >> doesn't have this import lib. It is included in the MS Platform SDK,
2009 Oct 02
2
[LLVMdev] llvm build errors on windows/mingw32
> On 2009-10-02 01:07, 罗勇刚(Yonggang Luo) wrote:
> > Well, Now I get the solution.
> > Please, someone can apply the patch.
> >
> > Just modify the makefile resident in lib/System
> >
> > But, a new error is appeared
> > llvm[2]: Linking Debug unit test ADT
> >
2009 Oct 02
2
[LLVMdev] llvm build errors on windows/mingw32
Am 02.10.2009 um 21:07 schrieb Ronald Pijnacker:
> I had a close look at the link line, and -lpsapi is specified before
> -lLLVMSystem (which is giving the error).
> When I put -lpsapi after -lLLVMSystem, it links ok.
I commited a fix for this problem and a modified version of Jay's
patch here:
http://lists.cs.uiuc.edu/piper...
2009 Oct 02
0
[LLVMdev] Cannot find crt2.o with llvm-gcc on windows/mingw
Hi all,
After being able to build llvm and llvm-gcc on windows/mingw,
I am running into problems with linking.
It seems llvm-gcc isn't able to find crt2.o.
Ronald
2009 Oct 11
3
[LLVMdev] Problems linking shared library with __declspec(dllexport)
Hi all,
I am trying to use llvm-gcc to link shared libraries on windows/mingw32.
When I try to link libraries that contain functions declared with
__declspec(dllexport) someFunction();
I get the link error:
Cannot export _someFunction: symbol not found
Removing the declspec directive solves the problem, but this is not a
very feasible solution for me.
Using 'regular' gcc does not
2009 Oct 12
1
[LLVMdev] Problems linking shared library with __declspec(dllexport)
> > I am trying to use llvm-gcc to link shared libraries on windows/mingw32.
> > When I try to link libraries that contain functions declared with
> > __declspec(dllexport) someFunction();
> >
> > I get the link error:
> >
> > Cannot export _someFunction: symbol not found
> dllexport declspec should be put on the function definition, in this
>