|
From: <sv...@va...> - 2008-05-10 13:24:24
|
Author: bart Date: 2008-05-10 14:24:30 +0100 (Sat, 10 May 2008) New Revision: 8035 Log: Changed compiler options for inlining to something that is supported by both gcc 3 and gcc 4. Modified: trunk/exp-drd/tests/Makefile.am Modified: trunk/exp-drd/tests/Makefile.am =================================================================== --- trunk/exp-drd/tests/Makefile.am 2008-05-10 13:17:34 UTC (rev 8034) +++ trunk/exp-drd/tests/Makefile.am 2008-05-10 13:24:30 UTC (rev 8035) @@ -216,7 +216,7 @@ drd_bitmap_test_SOURCES = drd_bitmap_test.c -drd_bitmap_test_CFLAGS = $(AM_CFLAGS) -O2 --param inline-unit-growth=100000 +drd_bitmap_test_CFLAGS = $(AM_CFLAGS) -O2 -finline-limit=100000 fp_race_SOURCES = fp_race.c fp_race_LDADD = -lpthread |