]> xenbits.xensource.com Git - libvirt.git/commitdiff
build: remove ssp-buffer-size
authorJán Tomko <jtomko@redhat.com>
Wed, 11 Jun 2014 08:44:26 +0000 (10:44 +0200)
committerJán Tomko <jtomko@redhat.com>
Thu, 12 Jun 2014 06:16:03 +0000 (08:16 +0200)
This option only makes sense for -fstack-protector.
With -fstack-protector-all or -fstack-protector-strong,
functions are protected regardless of buffer size.

https://bugzilla.redhat.com/show_bug.cgi?id=1105456

m4/virt-compile-warnings.m4

index fb82238cf9d2a9927a6b4c7b6a0bf1893aa53780..196afa728f2f168999725e91e6453c6ff62587f1 100644 (file)
@@ -166,16 +166,11 @@ AC_DEFUN([LIBVIRT_COMPILE_WARNINGS],[
        *-*-linux*)
        dnl Fedora only uses -fstack-protector, but doesn't seem to
        dnl be great overhead in adding -fstack-protector-all instead
-       dnl wantwarn="$wantwarn -fstack-protector"
+       dnl
+       dnl We also don't need ssp-buffer-size with -all,
+       dnl since functions are protected regardless of buffer size.
+       dnl wantwarn="$wantwarn --param=ssp-buffer-size=4"
        wantwarn="$wantwarn -fstack-protector-all"
-       wantwarn="$wantwarn --param=ssp-buffer-size=4"
-       dnl Even though it supports it, clang complains about
-       dnl use of --param=ssp-buffer-size=4 unless used with
-       dnl the -c arg. It doesn't like it when used with args
-       dnl that just link together .o files. Unfortunately
-       dnl we can't avoid that with automake, so we must turn
-       dnl off the following clang specific warning
-       wantwarn="$wantwarn -Wno-unused-command-line-argument"
        ;;
        *-*-freebsd*)
        dnl FreeBSD ships old gcc 4.2.1 which doesn't handle