diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-24 13:18:08 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-24 13:18:08 +0000 |
commit | 1412b9356a8ee14c38d7730f70b3f3fc8a3cb61f (patch) | |
tree | 88cbd16a5c789e76196223fc4ab26df0a0ea8af5 /gcc/gcc.c | |
parent | 6ee532bacc1dee60660b74a78cb94fb99726b2d7 (diff) | |
download | gcc-1412b9356a8ee14c38d7730f70b3f3fc8a3cb61f.tar.gz |
PR driver/47249
* common.opt (-pie, -shared, pie, shared): Change from Common to
Driver.
* gcc.c (display_help): Display help for -pie and -shared.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183474 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index 71b369c23e2..6cdd9592cd5 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -2988,6 +2988,8 @@ display_help (void) fputs (_(" -S Compile only; do not assemble or link\n"), stdout); fputs (_(" -c Compile and assemble, but do not link\n"), stdout); fputs (_(" -o <file> Place the output into <file>\n"), stdout); + fputs (_(" -pie Create a position independent executable\n"), stdout); + fputs (_(" -shared Create a shared library\n"), stdout); fputs (_("\ -x <language> Specify the language of the following input files\n\ Permissible languages include: c c++ assembler none\n\ |