diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-01-04 11:48:04 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-01-04 11:48:04 +0000 |
commit | b98d6b3556ed76ab3ee26a8de633ae297d8386f4 (patch) | |
tree | a53031284b94597108eb33b52970b62091741cab | |
parent | c6eecbd88076b786eca93fb300b46f25599c605a (diff) | |
download | gcc-b98d6b3556ed76ab3ee26a8de633ae297d8386f4.zip gcc-b98d6b3556ed76ab3ee26a8de633ae297d8386f4.tar.gz gcc-b98d6b3556ed76ab3ee26a8de633ae297d8386f4.tar.bz2 |
vxworks.opt (Bdynamic, [...]): New Driver options.
* config/vxworks.opt (Bdynamic, Bstatic, Xbind-lazy, Xbind-now,
non-static): New Driver options.
From-SVN: r168461
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/vxworks.opt | 17 |
2 files changed, 21 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 495ec38..2563bd1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-01-04 Joseph Myers <joseph@codesourcery.com> + + * config/vxworks.opt (Bdynamic, Bstatic, Xbind-lazy, Xbind-now, + non-static): New Driver options. + 2011-01-04 Jie Zhang <jie@codesourcery.com> PR driver/47137 diff --git a/gcc/config/vxworks.opt b/gcc/config/vxworks.opt index 9a4f3fd..ab7bab1 100644 --- a/gcc/config/vxworks.opt +++ b/gcc/config/vxworks.opt @@ -1,6 +1,6 @@ ; Processor-independent options for VxWorks. ; -; Copyright (C) 2005, 2007 Free Software Foundation, Inc. +; Copyright (C) 2005, 2007, 2010, 2011 Free Software Foundation, Inc. ; Contributed by CodeSourcery, LLC. ; ; This file is part of GCC. @@ -19,6 +19,18 @@ ; along with GCC; see the file COPYING3. If not see ; <http://www.gnu.org/licenses/>. +Bdynamic +Driver Condition(VXWORKS_KIND == VXWORKS_KIND_NORMAL) + +Bstatic +Driver Condition(VXWORKS_KIND == VXWORKS_KIND_NORMAL) + +Xbind-lazy +Driver Condition(VXWORKS_KIND == VXWORKS_KIND_NORMAL) + +Xbind-now +Driver Condition(VXWORKS_KIND == VXWORKS_KIND_NORMAL) + mrtp Target Report RejectNegative Mask(VXWORKS_RTP) Condition(VXWORKS_KIND == VXWORKS_KIND_NORMAL) Assume the VxWorks RTP environment @@ -29,3 +41,6 @@ Assume the VxWorks RTP environment mvthreads Target RejectNegative Condition(VXWORKS_KIND == VXWORKS_KIND_AE) Assume the VxWorks vThreads environment + +non-static +Driver Condition(VXWORKS_KIND == VXWORKS_KIND_NORMAL) |