search for: eleonorenstr

Displaying 4 results from an estimated 4 matches for "eleonorenstr".

2013 May 11
2
[LLVMdev] [llvm-c]
...the LLVM structure to identify what went wrong. Also I did a lot of tests the other day, trying several things without luck. However, since I do not need this code at the moment, it's not urgent, just felt to let you know about my problems. Kind regards, Christian -- Christian-W. Budde Eleonorenstr. 17 30449 Hannover Tel.: +49 511 31048857 E-Mail: Christian at savioursofsoul.de WWW: http://www.savioursofsoul.de/Christian
2013 May 13
0
[LLVMdev] [llvm-c]
...did a lot of tests the other day, trying several things without luck. > > However, since I do not need this code at the moment, it's not urgent, > just felt to let you know about my problems. > > Kind regards, > > Christian > > -- > Christian-W. Budde > Eleonorenstr. 17 > 30449 Hannover > Tel.: +49 511 31048857 > E-Mail: Christian at savioursofsoul.de > WWW: http://www.savioursofsoul.de/Christian > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu &...
2013 May 14
1
[LLVMdev] [llvm-c]
...like in this example (except the fact that I'm using pascal as language and x86 as main target). So if the sequence of calls seems to be right, I'll be investigating whether I've done something wrong compiling the DLL. Thanks for the information, Christian -- Christian-W. Budde Eleonorenstr. 17 30449 Hannover Tel.: +49 511 31048857 E-Mail: Christian at savioursofsoul.de WWW: http://www.savioursofsoul.de/Christian
2013 May 08
5
[LLVMdev] Shared library support of llvm
According to http://llvm.org/docs/CMake.html, "Shared libraries are not supported on Windows and not recommended in the other OSes". The problem is that static libraries have some limitations, especially when linked into multiple shared libraries, the global data of llvm could have multiple copies leading to undefined behaviors. This has caused much pains during my usage of llvm. My