qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix --extra-cflags, --extra-ldflags
@ 2005-12-21 15:51 Steve Magoun
  0 siblings, 0 replies; only message in thread
From: Steve Magoun @ 2005-12-21 15:51 UTC (permalink / raw)
  To: qemu-devel

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)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-12-21 15:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-21 15:51 [Qemu-devel] [PATCH] Fix --extra-cflags, --extra-ldflags Steve Magoun

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).