diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2015-04-24 21:36:54 +0300 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2015-04-24 21:36:54 +0300 |
commit | a6154660ed6ba99e456e4345a10e08454cd32731 (patch) | |
tree | 33bac09135a9feae44833e89084edf81e15aa754 /sys-devel/base-gcc | |
parent | a5e85166f16a9967d13375847153adac3b61c096 (diff) | |
parent | 9836a336a4ec6b64c3a237acc94a3d03687cdef1 (diff) |
Merge branch 'master' of github.com:Rogentos/kogaion-desktop
Diffstat (limited to 'sys-devel/base-gcc')
-rw-r--r-- | sys-devel/base-gcc/base-gcc-4.8.4.ebuild | 3 | ||||
-rw-r--r-- | sys-devel/base-gcc/files/base-gcc-4.8.4-no_instrument_function.patch | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/sys-devel/base-gcc/base-gcc-4.8.4.ebuild b/sys-devel/base-gcc/base-gcc-4.8.4.ebuild index 70944b4b..66d66257 100644 --- a/sys-devel/base-gcc/base-gcc-4.8.4.ebuild +++ b/sys-devel/base-gcc/base-gcc-4.8.4.ebuild @@ -83,6 +83,9 @@ src_prepare() { #Use -r1 for newer piepatchet that use DRIVER_SELF_SPECS for the hardened specs. [[ ${CHOST} == ${CTARGET} ]] && epatch "${FILESDIR}"/gcc-spec-env-r1.patch + + #virtualbox-guest-additions fix patch + epatch "${FILESDIR}/${P}-no_instrument_function.patch" } ## Just install libgcc stuff diff --git a/sys-devel/base-gcc/files/base-gcc-4.8.4-no_instrument_function.patch b/sys-devel/base-gcc/files/base-gcc-4.8.4-no_instrument_function.patch new file mode 100644 index 00000000..c363b961 --- /dev/null +++ b/sys-devel/base-gcc/files/base-gcc-4.8.4-no_instrument_function.patch @@ -0,0 +1,15 @@ +--- trunk/gcc/c-family/c-common.c 2014/01/02 22:23:26 206289 ++++ trunk/gcc/c-family/c-common.c 2014/01/15 19:37:35 206643 +@@ -7985,12 +7985,6 @@ + "%qE attribute applies only to functions", name); + *no_add_attrs = true; + } +- else if (DECL_INITIAL (decl)) +- { +- error_at (DECL_SOURCE_LOCATION (decl), +- "can%'t set %qE attribute after definition", name); +- *no_add_attrs = true; +- } + else + DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1; + |