blob: 94e45ed0aaebe97c2e204232733968728e2f31b1 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 5e10baff84038d26dc3d59b2412ba1db92cb8274 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Thu, 17 Mar 2016 00:34:01 -0400
4Subject: [PATCH 2/2] Reuse -fdebug-prefix-map to replace -ffile-prefix-map
5
6The oe-core may use external toolchain to compile,
7which may not support -ffile-prefix-map.
8
9Since we use -fdebug-prefix-map to do the same thing,
10so we could reuse it to replace -ffile-prefix-map.
11
12Upstream-Status: Inappropriate[oe-core specific]
13
14Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15---
16 gcc/opts-global.c | 4 ++++
17 1 file changed, 4 insertions(+)
18
19diff --git a/gcc/opts-global.c b/gcc/opts-global.c
20index 111884b..037f6c8 100644
21--- a/gcc/opts-global.c
22+++ b/gcc/opts-global.c
23@@ -42,6 +42,7 @@ along with GCC; see the file COPYING3. If not see
24 #include "toplev.h"
25 #include "tree-pass.h"
26 #include "context.h"
27+#include "file-map.h"
28
29 typedef const char *const_char_p; /* For DEF_VEC_P. */
30
31@@ -354,6 +355,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--
421.9.1
43