diff options
author | David O'Brien <obrien@FreeBSD.org> | 2004-03-02 16:50:05 +0000 |
---|---|---|
committer | David O'Brien <obrien@gcc.gnu.org> | 2004-03-02 16:50:05 +0000 |
commit | 2de2f846a2684f9452a1aeacf9fcab57b13a2c40 (patch) | |
tree | cff0e7e23ec58d6730a3436048e9c241b295b454 /gcc/config/ia64 | |
parent | 21a32e081980b7465099f50eb0266183d9941377 (diff) | |
download | gcc-2de2f846a2684f9452a1aeacf9fcab57b13a2c40.zip gcc-2de2f846a2684f9452a1aeacf9fcab57b13a2c40.tar.gz gcc-2de2f846a2684f9452a1aeacf9fcab57b13a2c40.tar.bz2 |
freebsd-spec.h (FBSD_DYNAMIC_LINKER): Add.
2004-03-02 David O'Brien <obrien@FreeBSD.org>
* config/freebsd-spec.h (FBSD_DYNAMIC_LINKER): Add.
* config/alpha/freebsd.h (SUBTARGET_EXTRA_SPECS): Define
%(fbsd_dynamic_linker),
(LINK_SPEC): Use %(fbsd_dynamic_linker), and sync style with
config/i386/freebsd.h
* config/arm/freebsd.h: Ditto.
* config/i386/freebsd.h: Ditto.
* config/i386/freebsd64.h: Ditto.
* config/ia64/freebsd.h: Ditto.
* config/rs6000/sysv4.h: Ditto.
* config/sparc/freebsd.h: Ditto.
From-SVN: r78766
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r-- | gcc/config/ia64/freebsd.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config/ia64/freebsd.h b/gcc/config/ia64/freebsd.h index d337d57..c375ae9 100644 --- a/gcc/config/ia64/freebsd.h +++ b/gcc/config/ia64/freebsd.h @@ -18,9 +18,11 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#define SUBTARGET_EXTRA_SPECS \ + { "fbsd_dynamic_linker", FBSD_DYNAMIC_LINKER } #define LINK_SPEC " \ - %{p:%nconsider using `-pg' instead of `-p' with gprof(1)} \ + %{p:%nconsider using `-pg' instead of `-p' with gprof(1)} \ %{Wl,*:%*} \ %{assert*} %{R*} %{rpath*} %{defsym*} \ %{shared:-Bshareable %{h*} %{soname*}} \ @@ -28,7 +30,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{!shared: \ %{!static: \ %{rdynamic:-export-dynamic} \ - %{!dynamic-linker:-dynamic-linker /usr/libexec/ld-elf.so.1}} \ + %{!dynamic-linker:-dynamic-linker %(fbsd_dynamic_linker) }} \ %{static:-Bstatic}}" |