diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2002-04-10 02:51:54 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2002-04-10 02:51:54 +0000 |
commit | ef98ad7b6c7497649c066ec2be0a44f340038dda (patch) | |
tree | 9e44de8af9b0c73ae8f06882c58ef86f5ad198de | |
parent | d8a50944dcea523e77c50326ef46dad2e17deeee (diff) | |
download | gcc-ef98ad7b6c7497649c066ec2be0a44f340038dda.zip gcc-ef98ad7b6c7497649c066ec2be0a44f340038dda.tar.gz gcc-ef98ad7b6c7497649c066ec2be0a44f340038dda.tar.bz2 |
* configure.in: Add *-*-freebsd* configurations.
From-SVN: r52107
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 9 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2002-04-09 Loren J. Rittle <ljrittle@acm.org> + + * configure.in: Add *-*-freebsd* configurations. + 2002-04-08 Tom Tromey <tromey@redhat.com> * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET. diff --git a/configure.in b/configure.in index 27a141b..abc2b47 100644 --- a/configure.in +++ b/configure.in @@ -617,6 +617,9 @@ case "${target}" in *-*-chorusos) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; + *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*) + noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" + ;; *-*-netbsd*) # Skip some stuff on all NetBSD configurations. skipdirs="$skipdirs target-newlib target-libiberty target-libgloss" @@ -653,6 +656,9 @@ case "${target}" in # linux has rx in libc skipdirs="$skipdirs target-librx" ;; + alpha*-*-freebsd*) + noconfigdirs="$noconfigdirs target-newlib target-libgloss" + ;; alpha*-*-*) # newlib is not 64 bit ready noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" @@ -797,6 +803,9 @@ case "${target}" in target_configdirs="${target_configdirs} target-libstub target-cygmon" fi ;; + i[34567]86-*-freebsd*) + noconfigdirs="$noconfigdirs target-newlib target-libgloss" + ;; *-*-linux*) noconfigdirs="$noconfigdirs target-newlib target-libgloss" # linux has rx in libc |