On Sat, May 31, 2008 at 8:30 PM, Joe Neeman <[EMAIL PROTECTED]> wrote:
> On Sat, 2008-05-31 at 20:20 -0700, Patrick McCarty wrote:
>>
>> Hi Joe,
>>
>> I am still experiencing this infinite loop after your fix.  However,
>> if I remove the #ifdef structure and keep the function and function
>> call, the latest git build runs successfully.
>
> Does it work if you change __x86__ to x86 in the #ifdef?

No, it doesn't.  Attached is the patch I just tried to use against the
latest git, just in case I missed something.

Thanks,
Patrick
diff -ru lily/lily/main.cc lily-build/lily/main.cc
--- lily/lily/main.cc   2008-05-31 16:05:13.000000000 -0700
+++ lily-build/lily/main.cc     2008-05-31 20:32:06.000000000 -0700
@@ -172,7 +172,7 @@
    unpredictable places. To get around this, we tell the x87 FPU to use only
    double precision. Note that this is not needed for x86_64 because that uses
    the SSE unit by default instead of the x87 FPU. */
-#ifdef __x86__
+#ifdef x86
 
 #include <fpu_control.h>
 static void configure_fpu() {
@@ -185,7 +185,7 @@
 static void configure_fpu() {
 }
 
-#endif /* __x86__ */
+#endif /* x86 */
 
 
 static void
_______________________________________________
lilypond-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to