search for: deppkglib

Displaying 1 result from an estimated 1 matches for "deppkglib".

2010 Oct 04
1
source package build/installation with subdirectory-lib
...ge contents (e.g. src, docs, configure script, etc) if i switch into and build depPkg by hand it works just fine, and i set a configure option to locate the .a library file it creates into the depPkg/lib/ directory, like so: bash$ ./configure --prefix=./lib --with-pic --disable-shared this builds depPkglib.a and puts it in the lib directory under depPkg. now when i compile *my* shared library in testing, it also works just fine: bash$ cd src bash$ gcc -std=gnu99 -I/usr/share/R/include -I../depPkg/include -fpic - g -O2 -c mycode.c -o mycode.o bash$ gcc -std=gnu99 -shared -o mycode.so mycode.o -L/usr/...