← 返回命令列表

Linux command

autoreconf 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Regenerate

autoreconf

Example

autoreconf --install

Force

autoreconf --force --install

Example

autoreconf --install --verbose

说明

autoreconf runs autoconf, autoheader, automake, and related tools in the correct order. It's the recommended way to regenerate configure scripts and related files in autotools projects. The tool automatically determines which programs to run based on project configuration.

参数

-i, --install
Add missing auxiliary files
-f, --force
Force regeneration even if files are current
-v, --verbose
Verbose output
-s, --symlink
Use symlinks instead of copies for auxiliary files
-W _category_
Warning level
--no-recursive
Don't recurse into subdirectories

FAQ

What is the autoreconf command used for?

autoreconf runs autoconf, autoheader, automake, and related tools in the correct order. It's the recommended way to regenerate configure scripts and related files in autotools projects. The tool automatically determines which programs to run based on project configuration.

How do I run a basic autoreconf example?

Run `autoreconf` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -i, --install do in autoreconf?

Add missing auxiliary files