diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-01-27 01:16:17 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-01-27 01:16:17 +0000 |
commit | 81797d0acbeaf9fb70542aad70c1959e7baf5c16 (patch) | |
tree | 1890b80df730f58d8b5f6c2acc4ea57b923a922a /chapter05/gcc-local-exp.sgml | |
parent | a35e5d44499e3a1bdf44dbafc2396321534d775a (diff) |
Removed the installation of a "local gcc"
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@43 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gcc-local-exp.sgml')
-rw-r--r-- | chapter05/gcc-local-exp.sgml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/chapter05/gcc-local-exp.sgml b/chapter05/gcc-local-exp.sgml deleted file mode 100644 index 0de2e3737..000000000 --- a/chapter05/gcc-local-exp.sgml +++ /dev/null @@ -1,31 +0,0 @@ -<sect2> -<title>Command explanations</title> - -<para> -<userinput>--with-local-prefix:</userinput> GCC installs a number of -files in /usr/local even when --prefix is set to something else. We -don't want that to happen in this case so that's why we use the ---with-local-prefix option to change that path. -</para> - -<para> -<userinput>--with-gxx-include-dir:</userinput> GCC installs the C++ -header files in /usr/include/g++ by default. Again, in this case we -don't want that to happen, we want this GCC version to be installed -completely under /usr/local/gcc2952. -</para> - -<para> -<userinput>make bootstrap:</userinput> Compile GCC by bootstrapping it. -Here that means the compiler will be built three times in total. First -it is compiled with your system's default compiler (which will usually -be a gcc or egcs compiler). This is stage 1 compiler. Then GCC will re-compile -itself but instead of using your system's compiler it will use itself to -compile itself again. This is the stage 2 compiler. Then it will compile -itself a second time with the stage 2 compiler and compares the second -and the third build to see if they are identical. If so, the -compilation was a success. -</para> - -</sect2> - |