diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-10-21 17:13:21 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2009-10-21 17:13:21 +0200 |
commit | de55f03a3ce822802b0844519ea02eac551de6bd (patch) | |
tree | 92ff1c5e9ed57a57986d344cf1f88ad61a3fdfb6 /gcc | |
parent | 47f447b17d43726d2eef73592f80a25bcafa94e9 (diff) | |
download | gcc-de55f03a3ce822802b0844519ea02eac551de6bd.zip gcc-de55f03a3ce822802b0844519ea02eac551de6bd.tar.gz gcc-de55f03a3ce822802b0844519ea02eac551de6bd.tar.bz2 |
re PR driver/25507 (-print-multi-os-directory undocumented)
PR other/25507
* doc/invoke.texi: Document -print-multi-os-directory.
From-SVN: r153058
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 12 |
2 files changed, 16 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4b54c31..dc8d593 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-10-21 Jakub Jelinek <jakub@redhat.com> + + PR other/25507 + * doc/invoke.texi: Document -print-multi-os-directory. + 2009-10-21 Jack Howarth <howarth@bromo.med.uc.edu> PR c++/41313 diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ec91be0..0a7d979 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -321,7 +321,7 @@ Objective-C and Objective-C++ Dialects}. -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol -p -pg -print-file-name=@var{library} -print-libgcc-file-name @gol --print-multi-directory -print-multi-lib @gol +-print-multi-directory -print-multi-lib -print-multi-os-directory @gol -print-prog-name=@var{program} -print-search-dirs -Q @gol -print-sysroot -print-sysroot-headers-suffix @gol -save-temps -save-temps=cwd -save-temps=obj -time@r{[}=@var{file}@r{]}} @@ -5531,6 +5531,16 @@ that enable them. The directory name is separated from the switches by @samp{-}, without spaces between multiple switches. This is supposed to ease shell-processing. +@item -print-multi-os-directory +@opindex print-multi-os-directory +Print the path to OS libraries for the selected +multilib, relative to some @file{lib} subdirectory. If OS libraries are +present in the @file{lib} subdirectory and no multilibs are used, this is +usually just @file{.}, if OS libraries are present in @file{lib@var{suffix}} +sibling directories this prints e.g.@: @file{../lib64}, @file{../lib} or +@file{../lib32}, or if OS libraries are present in @file{lib/@var{subdir}} +subdirectories it prints e.g.@: @file{amd64}, @file{sparcv9} or @file{ev6}. + @item -print-prog-name=@var{program} @opindex print-prog-name Like @option{-print-file-name}, but searches for a program such as @samp{cpp}. |