]> TLD Linux GIT Repositories - packages/qemu.git/blob - qemu-cflags.patch
- updated to 2.11.1
[packages/qemu.git] / qemu-cflags.patch
1 diff -urp qemu-2.11.0.orig/configure qemu-2.11.0/configure
2 --- qemu-2.11.0.orig/configure  2018-01-25 00:10:09.335918465 +0000
3 +++ qemu-2.11.0/configure       2018-01-25 00:11:23.962914017 +0000
4 @@ -507,10 +507,6 @@ QEMU_CFLAGS="-Wall -Wundef -Wwrite-strin
5  QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
6  QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
7  QEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/accel/tcg -I\$(SRC_PATH)/include"
8 -if test "$debug_info" = "yes"; then
9 -    CFLAGS="-g $CFLAGS"
10 -    LDFLAGS="-g $LDFLAGS"
11 -fi
12  
13  # make source path absolute
14  source_path=$(cd "$source_path"; pwd)
15 @@ -5122,12 +5118,8 @@ fi
16  # After here, no more $cc or $ld runs
17  
18  if test "$gcov" = "yes" ; then
19 -  CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS"
20 +  CFLAGS="-fprofile-arcs -ftest-coverage $CFLAGS"
21    LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
22 -elif test "$fortify_source" = "yes" ; then
23 -  CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
24 -elif test "$debug" = "no"; then
25 -  CFLAGS="-O2 $CFLAGS"
26  fi
27  
28  ##########################################