diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-12-21 12:08:31 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-09 13:39:12 +0000 |
commit | de1a1cf76e22246bc772f584142e0de357f196eb (patch) | |
tree | 634fbd2c4d41c19756540b9faa85c10be9eaebaa /meta/recipes-devtools/gcc/gcc-6.3/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch | |
parent | cfa8b1ed6fb20d7a4a80b9b938e1810ac450da51 (diff) | |
download | poky-de1a1cf76e22246bc772f584142e0de357f196eb.tar.gz |
gcc6: Upgrade to 6.3.0
6.3.0 is a bugfix release in gcc 6 series
(From OE-Core rev: 36ffcd1d7d2ab9dcc91e9c09623a6613a248bc69)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-6.3/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-6.3/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-6.3/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch b/meta/recipes-devtools/gcc/gcc-6.3/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch new file mode 100644 index 0000000000..0077f80e46 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-6.3/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch | |||
@@ -0,0 +1,43 @@ | |||
1 | From 25c87c6cc40ec5cc6965f8bfb215bec01abd6d82 Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Wed, 16 Mar 2016 05:39:59 -0400 | ||
4 | Subject: [PATCH 43/46] Reuse -fdebug-prefix-map to replace -ffile-prefix-map | ||
5 | |||
6 | The oe-core may use external toolchain to compile, | ||
7 | which may not support -ffile-prefix-map. | ||
8 | |||
9 | Since we use -fdebug-prefix-map to do the same thing, | ||
10 | so we could reuse it to replace -ffile-prefix-map. | ||
11 | |||
12 | Upstream-Status: Inappropriate[oe-core specific] | ||
13 | |||
14 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
15 | --- | ||
16 | gcc/opts-global.c | 4 ++++ | ||
17 | 1 file changed, 4 insertions(+) | ||
18 | |||
19 | diff --git a/gcc/opts-global.c b/gcc/opts-global.c | ||
20 | index b7e5232..121d7b9 100644 | ||
21 | --- a/gcc/opts-global.c | ||
22 | +++ b/gcc/opts-global.c | ||
23 | @@ -31,6 +31,7 @@ along with GCC; see the file COPYING3. If not see | ||
24 | #include "langhooks.h" | ||
25 | #include "dbgcnt.h" | ||
26 | #include "debug.h" | ||
27 | +#include "file-map.h" | ||
28 | #include "output.h" | ||
29 | #include "plugin.h" | ||
30 | #include "toplev.h" | ||
31 | @@ -357,6 +358,9 @@ handle_common_deferred_options (void) | ||
32 | |||
33 | case OPT_fdebug_prefix_map_: | ||
34 | add_debug_prefix_map (opt->arg); | ||
35 | + | ||
36 | + /* Reuse -fdebug-prefix-map to replace -ffile-prefix-map */ | ||
37 | + add_file_prefix_map (opt->arg); | ||
38 | break; | ||
39 | |||
40 | case OPT_fdump_: | ||
41 | -- | ||
42 | 2.8.2 | ||
43 | |||