Displaying 2 results from an estimated 2 matches for "ldgbhelp".
Did you mean:
ldbghelp
2004 Oct 25
0
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
...libdgbhelp is in some other directory that is not typically searched
for linking, it will need to be specified by a -L option, and that -L
option is passed to configure via the LDFLAGS variable (either on the
command line or set in your user environment).
As far as the configure script adding -ldgbhelp, you will need to add a
check for libdgbhelp to llvm/autoconf/configure.ac and re-generate the
configure script. I believe the generated script will concatenate the
-L option and the -ldgbhelp option correctly and stick it into TOOLLINKOPTS.
Modifying the configure script will be necessary reg...
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