# New Ticket Created by Andy Dougherty # Please include the string: [perl #36286] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=36286 >
My system couldn't handle an optimized compile of ops/core_ops_switch.c. Ideally, there should be some easy way to put such things in hints files, and also some way to override it on a per-file basis after running Configure, e.g. with something like make OPTIMZE="" . But for now, this will do for me. diff -r -u parrot-orig/config/gen/makefiles/CFLAGS.in parrot-andy/config/gen/makefiles/CFLAGS.in --- parrot-orig/config/gen/makefiles/CFLAGS.in Mon Jun 6 09:14:19 2005 +++ parrot-andy/config/gen/makefiles/CFLAGS.in Tue Jun 14 10:14:30 2005 @@ -8,6 +8,7 @@ src/spf_render.c -{-Wformat-nonliteral} # noisy src/tsq.c -{${optimize}} # never optimize tsq.c! ops/core_ops_cg.c -{${optimize}} # takes too long +ops/core_ops_switch.c -{${optimize}} # Overwhelms some compilers. src/py_func.c +{-Iclasses} # include pmc_default.h # io should be -Wunsed clean -- Andy Dougherty [EMAIL PROTECTED]