diff options
author | David Edelsohn <dje@gcc.gnu.org> | 2002-08-19 12:59:04 -0400 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2002-08-19 12:59:04 -0400 |
commit | 35fb4cf6116fa7b35673deccfde8b3eb099ea261 (patch) | |
tree | 2ddc4c2e711c3eda74980dc3689c83bc200b20dc | |
parent | af8cb5c5e8b60bb02d1726688bc050a0f5c285c9 (diff) | |
download | gcc-35fb4cf6116fa7b35673deccfde8b3eb099ea261.zip gcc-35fb4cf6116fa7b35673deccfde8b3eb099ea261.tar.gz gcc-35fb4cf6116fa7b35673deccfde8b3eb099ea261.tar.bz2 |
- Fix typo in argument ordering.
From-SVN: r56440
-rw-r--r-- | gcc/doc/install.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index f99d26d..d8c92a4 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -2349,7 +2349,7 @@ multilib @file{libstdc++.a} installed: Extract the shared object from each the GCC 3.1 @file{libstdc++.a} archive: @example - % ar -x libstdc++.so.4 libstdc++.a + % ar -x libstdc++.a libstdc++.so.4 @end example Enable the @samp{F_LOADONLY} flag so that the shared object will be @@ -2361,7 +2361,7 @@ available for runtime dynamic loading, but not linking: Archive the runtime-only shared object in the GCC 3.2 @file{libstdc++.a} archive: @example - % ar -q libstdc++.so.4 libstdc++.a + % ar -q libstdc++.a libstdc++.so.4 @end example Linking executables and shared libraries may produce warnings of |