search for: libdgbhelp

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

2004 Oct 25
2
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
>From: John Criswell <criswell at cs.uiuc.edu> >Date: Mon, 25 Oct 2004 15:38:52 -0500 > >When you run configure, you'd do something like this: > >configure --prefix=<...> LDFLAGS="-L<path where libdgbhelp is installed" > >If you modify Makefile.config directly, just add the necessary -L option to >TOOLLINKOPTS. I believe that should fix it. But, how do I tell which library to link from the path? Because, the lib<library> is in the default library path of MinGW (like /usr/lib)...
2004 Oct 25
0
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
Henrik Bach wrote: >> From: John Criswell <criswell at cs.uiuc.edu> >> Date: Mon, 25 Oct 2004 15:38:52 -0500 > > >> >> When you run configure, you'd do something like this: >> >> configure --prefix=<...> LDFLAGS="-L<path where libdgbhelp is installed" >> >> If you modify Makefile.config directly, just add the necessary -L >> option to TOOLLINKOPTS. I believe that should fix it. > > > But, how do I tell which library to link from the path? Because, the > lib<library> is in the default li...
2004 Oct 25
1
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
>So, if I'm understanding you correctly, libdgbhelp is a library that >doesn't come with MinGW but can be installed on MinGW by the user if it is >needed. Am I correct? Yes. >If that's the case, I would say that it's the user's reponsibility to >install the library into /usr/lib or provide the configure script with...
2004 Oct 25
1
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
...r libraries internal to LLVM, we add the library to the USEDLIBS variable >in the program's Makefile. > >How we should handle the problem depends upon whether this will be needed >for all programs and whether libdbghelp will be part of the LLVM source >tree. Ok. However, the libdgbhelp isn't provided (so far, though you have access to the system interface through header files) on MinGW. But, you have the option to make your own libraries from system dll's on MinGW. For LLVM, libdbghelp is an external system specific library, so I don't think it should be a part of...