diff options
author | Steve Ellcey <sje@cup.hp.com> | 2007-01-25 18:08:16 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2007-01-25 18:08:16 +0000 |
commit | 79e8b6c016683a0b94057294a18b393965464620 (patch) | |
tree | ab313fb5e42c9a839a28422df21c158f93ac8b13 | |
parent | ff393407cf034d6560955f35f1804a634668a199 (diff) | |
download | gcc-79e8b6c016683a0b94057294a18b393965464620.zip gcc-79e8b6c016683a0b94057294a18b393965464620.tar.gz gcc-79e8b6c016683a0b94057294a18b393965464620.tar.bz2 |
* config.gcc (ia64*-*-hpux*): Make posix threads the default.
From-SVN: r121180
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.gcc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca84d3d..f9af580 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2007-01-25 Steve Ellcey <sje@cup.hp.com> + * config.gcc (ia64*-*-hpux*): Make posix threads the default. + +2007-01-25 Steve Ellcey <sje@cup.hp.com> + PR other/30182 * config/pa/pa.c (pa_init_builtins): Set asm names for finite routines. * config/ia64/ia64.c (ia64_init_builtins): Ditto. diff --git a/gcc/config.gcc b/gcc/config.gcc index b55f3b5..86496c3 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1410,7 +1410,7 @@ ia64*-*-hpux*) tmake_file="ia64/t-ia64 ia64/t-hpux" target_cpu_default="MASK_GNU_AS" case x$enable_threads in - xyes | xposix ) + x | xyes | xposix ) thread_file=posix ;; esac |