search for: skynar

Displaying 8 results from an estimated 8 matches for "skynar".

Did you mean: skylar
2010 Jun 13
2
[LLVMdev] CMake sample project?
...is src/ CMakeLists.txt # root make file front/ CMakeLists.txt # library middle/ CMakeLists.txt # library back/ CMakeLists.txt # library npp/ CMakeLists.txt # executable On Sun, Jun 13, 2010 at 8:00 AM, Óscar Fuentes <ofv at wanadoo.es> wrote: > sam lee <skynare at gmail.com> writes: > > > Hi, > > > > I built LLVM on Windows XP through cmake and MinGW make. That was a > breeze! > > Now, I wanted to start a project. > > It seems like I need Makefile.rules and Makefile.config to start a new > > project (from http...
2010 Jun 13
0
[LLVMdev] CMake sample project?
...CMakeLists.txt # library > middle/ > CMakeLists.txt # library > back/ > CMakeLists.txt # library > npp/ > CMakeLists.txt # executable > > > > On Sun, Jun 13, 2010 at 8:00 AM, Óscar Fuentes <ofv at wanadoo.es> wrote: > >> sam lee <skynare at gmail.com> writes: >> >> > Hi, >> > >> > I built LLVM on Windows XP through cmake and MinGW make. That was a >> breeze! >> > Now, I wanted to start a project. >> > It seems like I need Makefile.rules and Makefile.config to start a new...
2010 Jun 13
0
[LLVMdev] CMake sample project?
sam lee <skynare at gmail.com> writes: > Hi, > > I built LLVM on Windows XP through cmake and MinGW make. That was a breeze! > Now, I wanted to start a project. > It seems like I need Makefile.rules and Makefile.config to start a new > project (from http://llvm.org/docs/Projects.html). Those...
2010 Jun 13
2
[LLVMdev] CMake sample project?
Hi, I built LLVM on Windows XP through cmake and MinGW make. That was a breeze! Now, I wanted to start a project. It seems like I need Makefile.rules and Makefile.config to start a new project (from http://llvm.org/docs/Projects.html). And llvm/projects/sample uses autoconf (or ./configure). Is there cmake based sample project available? I could not find any from official release. Has any of you
2010 Jun 13
2
[LLVMdev] CMake sample project?
I built the list by hand though trial and error. I'm not sure if and how llvm-config works with cmake. Its seems now that I got the right dependencies in the right order, there have been no ongoing maintenance issues. On Sun, Jun 13, 2010 at 4:32 PM, sam lee <skynare at gmail.com> wrote: > Ah, thank you so much. > How did you get the list of target_link_libraries() ? > Did you use llvm-config? > If you did not have access to llvm-config, how would you get list of > libraries to link to? > > Thanks. > Sam > > > > On Sun,...
2007 Nov 05
1
[LLVMdev] Getting started using MinGW binary release?
Hi. >From http://llvm.org/docs/GettingStarted.html , it seems I have to build LLVM from source. But I found http://llvm.org/releases/2.1/llvm-2.1-x86-mingw32.tar.bz2 . When I extract the file, I get many binaries (lli.exe, llc.exe...etc). When I run lli.exe, I get: lli.exe - Unable To Locate Component This application has failed to start because pthreadGC.dll was not found.
2010 Jun 15
1
[LLVMdev] CMake sample project?
Ok, I created cmake sample project that can build fibonacci.cpp (from llvm/examples/Fibonacci/fibonacci.cpp). I am linking to all libraries. I'm on windows and I could not make llvm-config to work. How does llvm-config work? I would like to port it to Python or Lua that works on every platform. I know it's Perl, but somehow I could not get it to build on windows. I built it on MSYS. But,
2007 Nov 07
0
[LLVMdev] Getting started using MinGW binary release?
Finally, I got my hands on Windows machine again today. I extracted llvm-2.1-x86-mingw32.tar.bz2 and llvm-gcc4.0-2.1-x86-mingw32.tar.bz2 to C:\llvm (It's a bare Windows Vista installation without MinGW) Added C:\llvm\bin;C:\llvm\libexec\gcc\i686-pc-mingw32\4.0.1 to PATH (C:\llvm\libexec\gcc\i686-pc-mingw32\4.0.1 was added for cc1.exe) Downloaded