qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Fix --extra-cflags, --extra-ldflags


From: Steve Magoun
Subject: [Qemu-devel] [PATCH] Fix --extra-cflags, --extra-ldflags
Date: Wed, 21 Dec 2005 10:51:32 -0500

This patch fixes the --extra-cflags and --extra-ldflags arguments to configure; without the patch extra flags passed through those arguments were ignored.


Steve



Index: Makefile
===================================================================
RCS file: /cvsroot/qemu/qemu/Makefile,v
retrieving revision 1.91
diff -u -r1.91 Makefile
--- Makefile    6 Dec 2005 21:42:03 -0000       1.91
+++ Makefile    21 Dec 2005 15:32:53 -0000
@@ -1,10 +1,10 @@
 -include config-host.mak

-CFLAGS=-Wall -O2 -g -fno-strict-aliasing
+CFLAGS+=-Wall -O2 -g -fno-strict-aliasing
 ifdef CONFIG_DARWIN
 CFLAGS+= -mdynamic-no-pic
 endif
-LDFLAGS=-g
+LDFLAGS+=-g
 LIBS=
 DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
 TOOLS=qemu-img$(EXESUF)
Index: Makefile.target
===================================================================
RCS file: /cvsroot/qemu/qemu/Makefile.target,v
retrieving revision 1.90
diff -u -r1.90 Makefile.target
--- Makefile.target     6 Dec 2005 21:42:17 -0000       1.90
+++ Makefile.target     21 Dec 2005 15:32:53 -0000
@@ -17,9 +17,9 @@
 VPATH+=:$(SRC_PATH)/linux-user
DEFINES+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH)
 endif
-CFLAGS=-Wall -O2 -g -fno-strict-aliasing
+CFLAGS+=-Wall -O2 -g -fno-strict-aliasing
 #CFLAGS+=-Werror
-LDFLAGS=-g
+LDFLAGS+=-g
 LIBS=
 HELPER_CFLAGS=$(CFLAGS)
 DYNGEN=../dyngen$(EXESUF)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]