|
From: <sv...@va...> - 2012-04-22 19:27:51
|
florian 2012-04-22 20:27:44 +0100 (Sun, 22 Apr 2012)
New Revision: 12538
Log:
Fix makefile to allow compilation with gcc -g3.
Fixes bugzilla #297993 (together with VEX r2310).
Patch by Daniel Richard G. (sk...@is...).
Modified files:
trunk/Makefile.vex.am
trunk/NEWS
Modified: trunk/Makefile.vex.am (+1 -1)
===================================================================
--- trunk/Makefile.vex.am 2012-04-22 18:39:37 +01:00 (rev 12537)
+++ trunk/Makefile.vex.am 2012-04-22 20:27:44 +01:00 (rev 12538)
@@ -71,7 +71,7 @@
$(AM_CFLAGS_@VGCONF_PLATFORM_PRI_CAPS@) \
-O -S -o auxprogs/genoffsets.s \
auxprogs/genoffsets.c
- grep xyzzy auxprogs/genoffsets.s | grep define \
+ grep xyzzy auxprogs/genoffsets.s | grep "^#define" \
| sed "s/xyzzy\\$$//g" \
| sed "s/xyzzy#//g" \
| sed "s/xyzzy//g" \
Modified: trunk/NEWS (+1 -0)
===================================================================
--- trunk/NEWS 2012-04-22 18:39:37 +01:00 (rev 12537)
+++ trunk/NEWS 2012-04-22 20:27:44 +01:00 (rev 12538)
@@ -82,6 +82,7 @@
and non reset of "C-ontinued" signal
297991 Valgrind interferes with mmap()+ftell()
297992 Support systems missing WIFCONTINUED (e.g. pre-2.6.10 Linux)
+297993 Fix compilation of valgrind with gcc -g3.
298394 s390x: Don't bail out on an unknown machine model. Assume it's a new model.
Release 3.7.0 (5 November 2011)
|