./configure
Bir kütüphaneye bağlanmak istiyorum ve bazıları dosya içeriyor. Kütüphanem saklandı /home/foo/sw/lib/
ve dosyalarım saklandı /home/foo/sw/include
.
./configure --help
aşağıdakileri atar:
Bazı etkili çevre değişkenleri:
CC C compiler command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
LIBS libraries to pass to the linker, e.g. -l<library>
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
CPP C preprocessor
Çeşitli kombinasyonları denedim:
./configure --prefix=/home/foo/sw -I</home/foo/sw/include> -L</home/foo/sw/lib/>
./configure --prefix=/home/foo/sw -I=/home/foo/sw/include -L=/home/foo/sw/lib/
./configure --prefix=/home/foo/sw -I/home/foo/sw/include -L/home/foo/sw/lib/
etc..
Ancak sözdizimini doğru anlayamıyorum. Biri bana yardım edebilirse, çok memnun olurum. TEŞEKKÜRLER!