电脑技术学习

对话 UNIX,第 12 部分: 自己动手完成项目

dn001

  ./configure --help 的输出中包括配置系统使用的通用选项,以及仅与您正在构建的软件相关的特定选项。要查看后者(较短)的列表,可以键入 ./configure --help=short(请参见清单 4):

  清单 4. 要构建的软件包所特定的选项

$ ./configure --help=short
Optional Features:
 --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
 --enable-shared[=PKGS] build shared librarIEs [default=yes]
 --enable-static[=PKGS] build static libraries [default=yes]
 --enable-fast-install[=PKGS]
             optimize for fast installation [default=yes]
 --disable-libtool-lock avoid locking (might break parallel builds)
 --enable-threadsafe   Support threadsafe operation
 --enable-cross-thread-connections
             Allow connection sharing across threads
 --enable-threads-override-locks
             Threads can override each others locks
 --enable-releasemode  Support libtool link to release mode
 --enable-tempstore   Use an in-ram database for temporary tables
             (never,no,yes,always)
 --disable-tcl      do not build TCL extension
 --disable-readline   disable readline support [default=detect]
 --enable-debug     enable debugging & verbose explain

标签: