diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config.gcc | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ef94a7bbad4..339e80644fe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-08-02 Andreas Tobler <a.tobler@schweiz.ch> + + * config.gcc: Enable posix threads by default on darwin. + 2003-08-01 Jakub Jelinek <jakub@redhat.com> * cfgcleanup.c (outgoing_edges_match): Check REG_EH_REGION notes diff --git a/gcc/config.gcc b/gcc/config.gcc index 093a1146528..b9976d2e6f2 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -520,6 +520,10 @@ case $machine in cxx_target_objs="darwin-c.o" extra_parts="crt2.o" extra_objs="darwin.o" + case x${enable_threads} in + x | xyes | xposix) thread_file='posix' + ;; + esac ;; *-*-vxworks*) tmake_file=t-vxworks |

