./configure
ライブラリといくつかのインクルードファイルにリンクしたいと思います。ライブラリはに保存され/home/foo/sw/lib/
、ファイルはに保存され/home/foo/sw/include
ます。
./configure --help
以下をスローします:
影響力のある環境変数:
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
私はさまざまな組み合わせを試しました:
./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..
しかし、構文が正しいようには思えません。誰かが私を助けることができれば、それは大歓迎です。ありがとう!