This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH]: fix misc darwin9 hard-codings


Jack Howarth wrote:
Andreas,
    Sorry to bother you, but we seem to have a problem with
the check-in's...

[snip]


becomes 'x86_64-*-darwin912*' in both cases. Do we need to
add double brackets in configure.ac to avoid the removal of the brackets in
the generated configure scripts or do we need to break these out
into an explicit...

-  powerpc-*-darwin* | x86_64-*-darwin9*)
+  powerpc-*-darwin* | x86_64-*-darwin9* | x86_64-*-darwin1* | | x86_64-*-darwin2* )


Hm,


I did not install my darwin10 stuff yet. So I couldn't actually test.

So, if we need the x86_64-*-darwin[912]*) in the configure then we have to do it the way below.

Right? Autoconfed with 2.59

If Paolo agrees I'll commit later this evening.

Andreas


Index: configure.ac =================================================================== --- configure.ac (revision 142370) +++ configure.ac (working copy) @@ -446,7 +446,7 @@ *-*-chorusos) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; - powerpc-*-darwin* | x86_64-*-darwin[912]*) + powerpc-*-darwin* | x86_64-*-darwin[[912]]*) noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; [wolfram:gcc/head-clean/gcc] andreast% svn diff configure Index: configure =================================================================== --- configure (revision 142370) +++ configure (working copy) @@ -2210,7 +2210,7 @@ *-*-chorusos) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; - powerpc-*-darwin* | x86_64-*-darwin912*) + powerpc-*-darwin* | x86_64-*-darwin[912]*) noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]