search for: limagehlp

Displaying 20 results from an estimated 29 matches for "limagehlp".

Did you mean: imagehlp
2009 Jan 17
2
[LLVMdev] Build problems on MinGW
...emoryInfo" - returns: 00000000 T _GetProcessMemoryInfo at 12 00000000 I __imp__GetProcessMemoryInfo at 12 And llvm-config seems to be asking for them to be picked up: -I//include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -O2 -fomit-frame-pointer -Woverloaded-virtual -L//lib -lpsapi -limagehlp -lm -lLLVMCore -lLLVMSupport -lLLVMSystem So I'm still mystified. Best regards, Duncan
2009 Jan 17
0
[LLVMdev] Build problems on MinGW
...0000 T _GetProcessMemoryInfo at 12 > 00000000 I __imp__GetProcessMemoryInfo at 12 > > And llvm-config seems to be asking for them to be picked up: > > -I//include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -O2 > -fomit-frame-pointer -Woverloaded-virtual > -L//lib -lpsapi -limagehlp -lm > -lLLVMCore -lLLVMSupport -lLLVMSystem > > So I'm still mystified. Put them at the end of the library list: -lLLVMCore -lLLVMSupport -lLLVMSystem -limagehlp -lpsapi -lm Unless recently changed, mingw's ld resolves symbols sequentially on the library list, it does not look o...
2010 Sep 07
2
[LLVMdev] llvm-config error
...d not found > > You need MSYS's perl to use llvm-config on mingw. > > Does this below work? > -D_DEBUG (might be -DNDEBUG) > -D__NO_CTYPE_INLINE > -D_GNU_SOURCE > -D__STDC_LIMIT_MACROS > -D__STDC_CONSTANT_MACROS > -lLLVMCore -lLLVMSupport -lLLVMSystem > -lpsapi -limagehlp -lm > > ...Takumi > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100907/58ea3332/attachment.html>
2010 Sep 07
0
[LLVMdev] llvm-config error
...ed reference to `_imp__SymSetOptions at 4' I guess it might be a known issue; http://llvm.org/bugs/show_bug.cgi?id=3347 Would you like me to show the result of "llvm-config –cppflags –ldflags –libs core"? And please try specifying libs (-lLLVMCore -lLLVMSupport -lLLVMSystem -lpsapi -limagehlp -lm) manually. ...Takumi
2009 Jan 18
4
[LLVMdev] Build problems on MinGW solved - possible llvm-config bug
...: > > > I have /lib/libimagehlp.a and /lib/libpsapi.a > > And llvm-config seems to be asking for them to be picked up: > > > > -I//include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -O2 > > -fomit-frame-pointer -Woverloaded-virtual > > -L//lib -lpsapi -limagehlp -lm > > -lLLVMCore -lLLVMSupport -lLLVMSystem > > > > So I'm still mystified. > > Put them at the end of the library list: > > -lLLVMCore -lLLVMSupport -lLLVMSystem -limagehlp -lpsapi -lm This works. I had a look at changing the llvm-config.in.in but my Perl hac...
2009 Dec 12
0
[LLVMdev] Rebuilding LLVM libraries with LLVM-GCC on Windows
...lvm-config --ldflags --libs x86 > > should suffice. In the next message, please show the output of that > command. Maybe the `--ldflags' is adding stuff to the command line that > causes the problem. Try removing it. $ llvm-config --ldflags --libs x86 -L/home/Michael/llvm-2.6/lib -limagehlp -lpsapi -lLLVMX86AsmParser -lLLVMX86AsmPrinter -lLLVMX86CodeGen -lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMCodeGen -lLLVMScalarOpts -lLLVMTransformUtils -lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMCore -lLLVMX86Info -lLLVMSupport -lLLVMSystem > Was the assembler file generated b...
2005 Sep 20
2
[LLVMdev] How to compile llvm with mingw on Windows ?
...vate Getting started with MinGW: >> >>http://www.geocities.com/henrik_bach_llvm/ > > >Thanks Henrik.The make line was most useful. Though, in my case I also >needed to add a -L so libimagehlp.a would be found. Here is my make line: > >$ make tools-only TOOLLINKOPTSB+=-limagehlp TOOLLINKOPTSB+=-lpsapi >LDFLAGS+=-L/ >d/wut/prg/mingw/lib/ LDFLAGS+=-Wl,--no-keep-memory -r > >I've attempted to do this using the 'current' mingw tools. Unfortunately >this lead to an internal compiler error. Which version of gcc are you using? I use 3.4.2.. >Give...
2009 Dec 11
3
[LLVMdev] Rebuilding LLVM libraries with LLVM-GCC on Windows
"Michael Ness" <mike at liquido2.com> writes: [snip] > I then used both of these builds to attempt to assemble and link my > project with llvm-g++: > > $ llvm-g++ out.s -o out.exe `llvm-config --ldflags --libs x86 core > system support` > > gave me the errors found in the attached file "errors_gcc.txt". And > > $ llvm-g++ out.s -o out.exe
2009 Jan 18
0
[LLVMdev] Build problems on MinGW solved - possible llvm-config bug
...have /lib/libimagehlp.a and /lib/libpsapi.a >> > And llvm-config seems to be asking for them to be picked up: >> > >> > -I//include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -O2 >> > -fomit-frame-pointer -Woverloaded-virtual >> > -L//lib -lpsapi -limagehlp -lm >> > -lLLVMCore -lLLVMSupport -lLLVMSystem >> > >> > So I'm still mystified. >> >> Put them at the end of the library list: >> >> -lLLVMCore -lLLVMSupport -lLLVMSystem -limagehlp -lpsapi -lm > > This works. I had a look at changing...
2010 Sep 07
0
[LLVMdev] llvm-config error
...lags --libs core` -o toy > sh: llvm-config: command not found You need MSYS's perl to use llvm-config on mingw. Does this below work? -D_DEBUG (might be -DNDEBUG) -D__NO_CTYPE_INLINE -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -lLLVMCore -lLLVMSupport -lLLVMSystem -lpsapi -limagehlp -lm ...Takumi
2009 Oct 02
0
[LLVMdev] llvm build errors on windows/mingw32
...-g -L/d/Home/Dim/Src/llvm/obj/Debug/lib -L/d/Home/Dim/Src/llvm/obj/Debug/lib -o Debug/UtilsTests.exe /d/Home/Dim/Src/llvm/obj/unittests/Transforms/Utils/Debug/Cloning.o -lLLVMTransformUtils -lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMCore -lLLVMSupport -lLLVMSystem -lpthread -lpsapi -limagehlp -lm -lGoogleTest -lUnitTestMain d:/Home/Dim/Src/llvm/obj/Debug/lib/libGoogleTest.a(gtest.o):gtest.cc:(.text$_ZN4llvm14raw_os_ostreamC1ERSo[llvm::raw_os_ostream::raw_os_ostream(std::basic_ostre am<char, std::char_traits<char> >&)]+0x1e): undefined reference to `vtable for llvm::raw_...
2005 Jan 21
2
[LLVMdev] making cygwin nightly builds available?
...to configure script, fix makefile (gcc throws error, if get -I without any path), fix several config bugs (rand48, some in libstdc++). 6. Add stubs for functions in the debugger support library (fork, waitpid, etc.). I have implementation for some of that functions, but not for all. 7. Add -lpsapi -limagehlp to ExtraLibs to all tools' makefiles. .... \infty [Some dummy things, I've forgotten] As result: mingw port seems don't work now, but can in the nearest future. I have patches for some problems I've listed, but I need to sync them with the latest cvs snapshot. I'll send them,...
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/pipermail/llvm-commits/Week-of-Mon-20090928/088265.html I
2006 Apr 29
3
[LLVMdev] Building LLVM under Mingw. Part I: tools-only
...warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Report bugs to <bug-make at gnu.org>. 1.4. Bison 1.875 from GNUWin32 project $ bison --version bison (GNU Bison) 1.875 1.5 Flex 2.5.4 from GNUWin32 project. 2. Patching. 2.1. Libraries Add "LIBS+= -lpsapi -limagehlp" to each makefile (AFTER Makefile.common inclusion) building some tool (burg, tablegen, ll*), since gcc doesn't support vcpp style #pragma's of form: #pragma comment(lib, "dbghelp.lib") 2.2 CopyFile Patch lib/System/Win32/Path.inc in such way, that declaration of CopyFile w...
2015 Jan 27
2
[LLVMdev] build failure on mingw gcc 4.9.1
...-W -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wno-maybe-uninitialized -Wno-comment -std=gnu++11 -g utils/not/CMakeFiles/not.dir/not.cpp.obj -o bin/not.exe -Wl,--major-image-version,0,--minor-image-version,0 lib/libLLVMSupportD.a -limagehlp -lpsapi -lshell32 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd . lib/libLLVMSupportD.a(Signals.cpp.obj): In function `llvm::sys::PrintStackTraceOnErrorSignal()': D:/Slave/llvm-mingw/build/lib/Support/Windows/Signals.inc:284: und...
2005 Sep 21
0
[LLVMdev] How to compile llvm with mingw on Windows ?
...MinGW: >>> >>> http://www.geocities.com/henrik_bach_llvm/ >> >> >> Thanks Henrik.The make line was most useful. Though, in my case I >> also needed to add a -L so libimagehlp.a would be found. Here is my >> make line: $ make tools-only TOOLLINKOPTSB+=-limagehlp >> TOOLLINKOPTSB+=-lpsapi >> LDFLAGS+=-L/ >> d/wut/prg/mingw/lib/ LDFLAGS+=-Wl,--no-keep-memory -r >> >> I've attempted to do this using the 'current' mingw tools. >> Unfortunately this lead to an internal compiler error. > > Which version of g...
2010 Sep 07
2
[LLVMdev] llvm-config error
Hi I’m having a few problems building the kaleidoscope example (chapter 3) under MinGW. To build the example I use as recommended g++ -g -O3 toy.cpp `llvm-config --cppflags --ldflags --libs core` -o toy but get the following error sh: llvm-config: command not found Indeed in my “\llvm-2.7\tools\llvm-config\” build directory there is no “Release” subdirectory as I would expect (only
2009 Jan 17
2
[LLVMdev] Build problems on MinGW
2009/1/13 Anton Korobeynikov <anton at korobeynikov.info>: > Hello, Duncan > > * LD (which I took to be representative of Binutils version) 2.17.50 > 20060824 > Why you're using such old binutils? 2.18.50-20080109 definitely worked for > me (and release binaries were built so...). Thank you for your reply Anton. I'm sorry it's taken a while to get back to you.
2009 Jan 17
0
[LLVMdev] Build problems on MinGW
Hello, Duncan > $ g++ -g tut1.cpp `llvm-config --cxxflags --ldflags --libs core` -o tut1 > /mingw/lib/libLLVMSystem.a(Process.o):Process.cpp:(.text+0x8d): > undefined reference to `GetProcessMemoryInfo at 12' > collect2: ld returned 1 exit status I believe you will need additional libraries like imagehlp and psapi. -- With best regards, Anton Korobeynikov Faculty of Mathematics
2010 Mar 09
1
[LLVMdev] Changed: Build errors for poolalloc using MinGW/gcc 4.4.0
...e/Basic.o:Basic.cpp:(.text+0x12a): undefined reference to `llvm::PointerType::get(llvm::Type const*, unsigned int)' After trying to understand Makefile.rules in the llvm directory I tried using "make LOADABLE_MODULE=1" and this time the command line includes: -lffi -lpsapi -limagehlp -lm but I still get the undefined references. It looks like the correct "-l..." option is not being generated. I'm guessing this is as you (John) think a configure problem, but being currently a Windows developer I just don't know enough about it to debug. I am only interes...