Displaying 2 results from an estimated 2 matches for "dummy_ld_library_path_dummy".
2006 Sep 28
2
[LLVMdev] GCC_4.2.0 problem
...Y_PATH that brings in the "llvm" libgcc_s.so.1
that breaks the compilation.
I added this to my build script and now llvm builds properly.
cd build
../llvm-gcc4/configure --prefix=$LLVM/install --enable-llvm=$LLVMOBJDIR
--enable-languages=c --disable-threads
sed -i 's/LD_LIBRARY_PATH/DUMMY_LD_LIBRARY_PATH_DUMMY/g' Makefile
make
make install
The bugreport mentions this, but since the Makefile is not there before make,
one save oneself an make/make clean trip.
Hopefully it helps someone that is fighting with this problem.
I am not sure if it gives any sideeffects but I have not seen any so far.
/Fred
2006 Sep 28
0
[LLVMdev] GCC_4.2.0 problem
...t; libgcc_s.so.1
> that breaks the compilation.
>
> I added this to my build script and now llvm builds properly.
>
> cd build
> ../llvm-gcc4/configure --prefix=$LLVM/install --enable-llvm=$LLVMOBJDIR
> --enable-languages=c --disable-threads
> sed -i 's/LD_LIBRARY_PATH/DUMMY_LD_LIBRARY_PATH_DUMMY/g' Makefile
> make
> make install
>
> The bugreport mentions this, but since the Makefile is not there before make,
> one save oneself an make/make clean trip.
>
> Hopefully it helps someone that is fighting with this problem.
> I am not sure if it gives any sideeffect...