I'm trying to learn how to use autotools and I can't seem to find a good beginner-friendly answer to this question. What's the difference between autoconf and autoreconf.
Difference between autoconf and autoreconf
10k views Asked by audiFanatic At
1
There are 1 answers
Related Questions in AUTOTOOLS
- Flint installation error: make: *** [build/generic_files/memory_manager.lo] Error 1
- How to Handle File Existence Check in `configure.ac` When Cross Compiling on WSL
- Re-flex library not found in C++ autotools project
- How to configure/build external libraries in order to achieve relocatable builds?
- How to make a customized release on gitlab?
- How to detect in autotools what libc uses Linux distributive: glibc, uclibc, musl, etc
- CMake forwarding parallel builds to make when using ExternalProject_Add on a Autotools-generated project
- How to compile and link a cpp file separately in unity builds?
- How to replicate, sort of, CMakeLists.txt files into autotools files?
- automake gives the error ".la: file not recognized: file format not recognized"
- How to successfully run make install without root privileges
- How to package an RPM with an old autoconf/automake project
- share AC_DEFINE trough AC_CONFIG_SUBDIRS in autoconf
- How to correctly use both Doxygen and GNU Autotools together
- Autotools: If I only change the installation directory do I need to rebuild everything? If not how can I avoid this
Related Questions in AUTOCONF
- How to Handle File Existence Check in `configure.ac` When Cross Compiling on WSL
- Syntax problem with porting an autoconf makefile to the meson build system
- Bin2c files won't generate on make
- When building Yate from sources on Centos 6.10, the error appears on the configure phase
- What is the canonical approach to use for autoconf dependencies in Xcode?
- automake gives the error ".la: file not recognized: file format not recognized"
- How to successfully run make install without root privileges
- How to package an RPM with an old autoconf/automake project
- share AC_DEFINE trough AC_CONFIG_SUBDIRS in autoconf
- AC_CHECK_LIB with multiple dependencies
- Using the icu library, an undefined reference to 'uregex_groupCount_48' appears when compiling with make
- Makefile.am: How to list all files (of specific extension) in `foo_HEADERS`?
- is it possible to avoid re-run configure and do incremental builds when some sub-makefiles has been changed?
- autoconf - how to check for a (minimal) version of a library at configure time?
- cgminer configure script can't find libusb, which is installed
Related Questions in AUTORECONF
- How to Handle File Existence Check in `configure.ac` When Cross Compiling on WSL
- autoreconf -i -f requires missing files
- Error 'Can't exec "aclocal"' with homebrew installed autoreconf on mac
- error /usr/src/app/node_modules/gifsicle: Command failed. Exit code: 1 Command: node lib/install.js
- node_modules\gifsicle: Command failed
- libao: os_types.h.in not converted to os_types.h by autoreconf
- build sqlsmith autoreconf: 'configure.ac' or 'configure.in' is required
- How does `autoreconf` create m4/ folder?
- bash: /usr/bin/autoreconf: /usr/bin/perl: bad interpreter: No such file or directory
- Autoreconf failed with exit status: 1
- autoreconf fails with "possibly undefined macro: AM_PATH_GLIB_2_0"
- Problem with aclocal version mismatch between different platforms
- autoreconf: 'configure.ac' or 'configure.in' is required
- fblualib installation in Ubunt16.04
- MSYS throws the following error (problem with autotools and mingGW)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
autoconfgenerates theconfigurescript from various input files, some of which are created using other tools likeaclocal,automake, etc.autoreconfis a helper that knows how to call all these tools in the right orderYou'll usually just call
autoreconfyourself and let it deal with all the lower level tools ....