diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-20 19:05:24 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-20 19:05:24 +0000 |
commit | a2a5e014edf4b391aea3313909a457ce3f1755d9 (patch) | |
tree | e62364dbe54bb67bb6fcaaf7e8c385b263c96bbb /gcc/config/alpha/freebsd.h | |
parent | e7cb6415e55d4d8a69449a687a09584b3a7b6488 (diff) | |
download | gcc-a2a5e014edf4b391aea3313909a457ce3f1755d9.tar.gz |
* config/alpha/alpha.h (CPP_SPEC, CPP_SUBTARGET_SPEC): Remove.
(EXTRA_SPECS, SUBTARGET_EXTRA_SPECS): Remove.
* config/alpha/linux.h (CPP_SPEC): Undef before redefine.
* config/alpha/linux-elf.h (EXTRA_SPECS): Rename SUBTARGET_EXTRA_SPECS.
* config/alpha/freebsd.h (EXTRA_SPECS): Rename SUBTARGET_EXTRA_SPECS.
(CPP_SPEC): Don't include %(cpp_subtarget).
* config/alpha/netbsd.h (CPP_SPEC): Rename CPP_SUBTARGET_SPEC.
(EXTRA_SPECS): Rename SUBTARGET_EXTRA_SPECS.
* config/alpha/osf.h (CPP_SPEC, EXTRA_SPECS): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123999 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/alpha/freebsd.h')
-rw-r--r-- | gcc/config/alpha/freebsd.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/config/alpha/freebsd.h b/gcc/config/alpha/freebsd.h index ca49a8bb0cd..e8f8bfa8bdd 100644 --- a/gcc/config/alpha/freebsd.h +++ b/gcc/config/alpha/freebsd.h @@ -20,16 +20,15 @@ the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#undef SUBTARGET_EXTRA_SPECS -#define SUBTARGET_EXTRA_SPECS \ +#undef EXTRA_SPECS +#define EXTRA_SPECS \ { "fbsd_dynamic_linker", FBSD_DYNAMIC_LINKER } -/* Provide a CPP_SPEC appropriate for FreeBSD/alpha. Besides the - dealing with the GCC option `-posix', we must deal with the Alpha's - FP issues. */ +/* Provide a CPP_SPEC appropriate for FreeBSD/alpha -- dealing with + the GCC option `-posix'. */ #undef CPP_SPEC -#define CPP_SPEC "%(cpp_subtarget) %{posix:-D_POSIX_SOURCE}" +#define CPP_SPEC "%{posix:-D_POSIX_SOURCE}" #define LINK_SPEC "%{G*} %{relax:-relax} \ %{p:%nconsider using `-pg' instead of `-p' with gprof(1)} \ |