Linux中"./configure"的各种选项/参数是什么?

Ran*_*ngh 59 linux configure

我已经看到,在Linux中安装新软件时,我总是先使用configure它.

但有时候我们需要像今天一样安装各种选项来安装lxml:

./configure --with-python=/opt/python27/bin/python 
--prefix=/usr/local 
--with-libxml-prefix=/usr/local 
--with-libxml-include-prefix=/usr/local/include 
--with-libxml-libs-prefix=/usr/local/lib
Run Code Online (Sandbox Code Playgroud)

现在我想知道该人如何知道--with-python可以使用哪种类型的参数 ?
我的意思是:

  1. 所有软件包中的参数是相同的还是软件与软件不同?

  2. 我甚至试图阅读文档,但没有人提到这些参数.

Car*_*rós 119

./configure --help
Run Code Online (Sandbox Code Playgroud)

这将显示该特定configure脚本的所有选项.