aboutsummaryrefslogtreecommitdiff
path: root/gold/options.cc
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@google.com>2012-02-15 00:56:16 +0000
committerCary Coutant <ccoutant@google.com>2012-02-15 00:56:16 +0000
commitf9fa4a63414294ef4eb46f6acb5b649382620f2a (patch)
tree587e535088c631fecda494d63bd3a2dd5115bd4a /gold/options.cc
parent9ad44fdb9d2da12d222c018a2d281e5fab3ed641 (diff)
downloadfsf-binutils-gdb-f9fa4a63414294ef4eb46f6acb5b649382620f2a.zip
fsf-binutils-gdb-f9fa4a63414294ef4eb46f6acb5b649382620f2a.tar.gz
fsf-binutils-gdb-f9fa4a63414294ef4eb46f6acb5b649382620f2a.tar.bz2
* options.cc (General_options::finalize): Disallow -pie and -static.
Diffstat (limited to 'gold/options.cc')
-rw-r--r--gold/options.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/options.cc b/gold/options.cc
index 64a8539..fe9a00e 100644
--- a/gold/options.cc
+++ b/gold/options.cc
@@ -1203,6 +1203,8 @@ General_options::finalize()
gold_fatal(_("-shared and -static are incompatible"));
if (this->shared() && this->pie())
gold_fatal(_("-shared and -pie are incompatible"));
+ if (this->pie() && this->is_static())
+ gold_fatal(_("-pie and -static are incompatible"));
if (this->shared() && this->relocatable())
gold_fatal(_("-shared and -r are incompatible"));