Displaying 4 results from an estimated 4 matches for "lsome_lib".
2007 Mar 31
2
[LLVMdev] native libraries
...t; > I'm using LLVM 1.8 with the GCC4-frontend on a Slackware 10.2 box (GCC
> > 3.3.6). When issuing the following command (line 14 in a script called
> > manual.sh):
> >
> > llvm-ld -O1 *.trans -L${SOME_LIB_DIR} -L${SOME_OTHER_LIB_DIR} -L
> > ${LLVM_FRONT}/lib -lSOME_LIB -lSOME_OTHER_LIB -load=
> > ${MY_LIB_DIR}/opt1.so -load=${MY_LIB_DIR}/opt2.so -debug-pass=Details
> > -debug -o test
> >
> > ... I get the following messages:
> >
> > llvm-ld: warning: Supposed library 'SOME_OTHER_LIB' isn't a library.
>
> The -...
2007 Apr 01
0
[LLVMdev] native libraries
...M 1.8 with the GCC4-frontend on a Slackware 10.2 box (GCC
> > > 3.3.6). When issuing the following command (line 14 in a script called
> > > manual.sh):
> > >
> > > llvm-ld -O1 *.trans -L${SOME_LIB_DIR} -L${SOME_OTHER_LIB_DIR} -L
> > > ${LLVM_FRONT}/lib -lSOME_LIB -lSOME_OTHER_LIB -load=
> > > ${MY_LIB_DIR}/opt1.so -load=${MY_LIB_DIR}/opt2.so -debug-pass=Details
> > > -debug -o test
> > >
> > > ... I get the following messages:
> > >
> > > llvm-ld: warning: Supposed library 'SOME_OTHER_LIB' isn...
2006 Aug 16
2
[LLVMdev] Weird behavior of llvm-ld
Hi,
I'm using LLVM 1.8 with the GCC4-frontend on a Slackware 10.2 box (GCC
3.3.6). When issuing the following command (line 14 in a script called
manual.sh):
llvm-ld -O1 *.trans -L${SOME_LIB_DIR} -L${SOME_OTHER_LIB_DIR}
-L${LLVM_FRONT}/lib -lSOME_LIB -lSOME_OTHER_LIB
-load=${MY_LIB_DIR}/opt1.so -load=${MY_LIB_DIR}/opt2.so
-debug-pass=Details -debug -o test
... I get the following messages:
llvm-ld: warning: Supposed library 'SOME_OTHER_LIB' isn't a library.
./manual.sh: line 14: 25492 Segmentation fault
When I invoke the same f...
2006 Aug 16
0
[LLVMdev] Weird behavior of llvm-ld
...dams wrote:
> Hi,
>
> I'm using LLVM 1.8 with the GCC4-frontend on a Slackware 10.2 box (GCC
> 3.3.6). When issuing the following command (line 14 in a script called
> manual.sh):
>
> llvm-ld -O1 *.trans -L${SOME_LIB_DIR} -L${SOME_OTHER_LIB_DIR} -L
> ${LLVM_FRONT}/lib -lSOME_LIB -lSOME_OTHER_LIB -load=
> ${MY_LIB_DIR}/opt1.so -load=${MY_LIB_DIR}/opt2.so -debug-pass=Details
> -debug -o test
>
> ... I get the following messages:
>
> llvm-ld: warning: Supposed library 'SOME_OTHER_LIB' isn't a library.
The -l option is used to link libraries in...