diff options
author | Iain Sandoe <iains@gcc.gnu.org> | 2019-06-16 16:07:52 +0000 |
---|---|---|
committer | Iain Sandoe <iains@gcc.gnu.org> | 2019-06-16 16:07:52 +0000 |
commit | 4827824f799e15bb28c12482de6c01089fea7abe (patch) | |
tree | 0bfc6adf5e0fcbef2e1840ab39552a98afffcbb8 /gcc/config/darwin.opt | |
parent | 612254eaf59874e8cea934b7400bcb7348ecdd43 (diff) | |
download | gcc-4827824f799e15bb28c12482de6c01089fea7abe.zip gcc-4827824f799e15bb28c12482de6c01089fea7abe.tar.gz gcc-4827824f799e15bb28c12482de6c01089fea7abe.tar.bz2 |
[Darwin, opts] Add RejectNegative for cases with explict inverses.
These cases specify the negative option specifically, so we should not
accept a regular -no-xxxx for them.
2019-06-16 Iain Sandoe <iain@sandoe.co.uk>
* config/darwin.opt (prebind, noprebind, seglinkedit,
noseglinkedit): Add RejectNegative.
From-SVN: r272355
Diffstat (limited to 'gcc/config/darwin.opt')
-rw-r--r-- | gcc/config/darwin.opt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/darwin.opt b/gcc/config/darwin.opt index 0b16b03..3f04375 100644 --- a/gcc/config/darwin.opt +++ b/gcc/config/darwin.opt @@ -237,11 +237,11 @@ Driver RejectNegative (Obsolete after 10.4) Set MH_NOMULTIDEFS in an umbrella framework. noprebind -Driver Negative(prebind) +Driver RejectNegative Negative(prebind) (Obsolete) LD_PREBIND is no longer supported. noseglinkedit -Driver Negative(seglinkedit) +Driver RejectNegative Negative(seglinkedit) (Obsolete) This is the default. object @@ -252,7 +252,7 @@ Driver RejectNegative Separate -pagezero_size size Allows setting the page 0 size to 4kb for certain special cases. prebind -Driver Negative(noprebind) +Driver RejectNegative Negative(noprebind) (Obsolete) LD_PREBIND is no longer supported. prebind_all_twolevel_modules @@ -317,7 +317,7 @@ Driver RejectNegative Separate Args(3) (Obsolete, ld_classic only) -sectcreate segname sectname file seglinkedit -Driver Negative(noseglinkedit) +Driver RejectNegative Negative(noseglinkedit) (Obsolete) Object files with LINKEDIT sections are no longer supported. segprot |