ฉันต้องการ./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..
แต่ฉันดูเหมือนจะไม่ได้รับไวยากรณ์ที่ถูกต้อง หากใครสามารถช่วยฉันออกไปมันก็จะได้รับการชื่นชมอย่างมาก ขอขอบคุณ!