diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-11-07 22:28:40 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-11-07 22:28:40 +0100 |
commit | c8e39d6d298f921b8b510bb88bc210fb30f0bd10 (patch) | |
tree | b5a3a68b1d64d667c19031530084a22479938962 /docs | |
parent | c3c8a70767e9e3b2d4bda3d43f2fbb646c1ed0b3 (diff) | |
download | crosstool-ng-c8e39d6d298f921b8b510bb88bc210fb30f0bd10.tar.gz crosstool-ng-c8e39d6d298f921b8b510bb88bc210fb30f0bd10.tar.bz2 crosstool-ng-c8e39d6d298f921b8b510bb88bc210fb30f0bd10.zip |
configure: use autoconf to generate configure
Create configure.ac, an autoconf script to generate ./configure
This will be needed by a subsequent patch to properly handle
--build and --host, and more tests, when the kconfig stuff will
be installed pre-built.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/2 - Installing crosstool-NG.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/2 - Installing crosstool-NG.txt b/docs/2 - Installing crosstool-NG.txt index 69909fe5..198fc2c2 100644 --- a/docs/2 - Installing crosstool-NG.txt +++ b/docs/2 - Installing crosstool-NG.txt @@ -30,6 +30,8 @@ If you go for the install, then you just follow the classical, but yet easy You can then get rid of crosstool-NG source. Next create a directory to serve as a working place, cd in there and run: + mkdir work-dir + cd work-dir ct-ng help See below for complete usage. @@ -39,8 +41,12 @@ The Hacker's way | -----------------+ If you go the hacker's way, then the usage is a bit different, although very -simple: - ./configure --local +simple. First, you need to generate the ./configure script from its autoconf +template: + ./bootstrap + +Then, you run ./configure for local execution of crosstool-NG: + ./configure --enable-local make Now, *do not* remove crosstool-NG sources. They are needed to run crosstool-NG! |