aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-6.4/0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch
blob: 0077f80e46c425d240f95eb7f6e900344a6d26fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From 25c87c6cc40ec5cc6965f8bfb215bec01abd6d82 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <hongxu.jia@windriver.com>
Date: Wed, 16 Mar 2016 05:39:59 -0400
Subject: [PATCH 43/46] Reuse -fdebug-prefix-map to replace -ffile-prefix-map

The oe-core may use external toolchain to compile,
which may not support -ffile-prefix-map.

Since we use -fdebug-prefix-map to do the same thing,
so we could reuse it to replace -ffile-prefix-map.

Upstream-Status: Inappropriate[oe-core specific]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 gcc/opts-global.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gcc/opts-global.c b/gcc/opts-global.c
index b7e5232..121d7b9 100644
--- a/gcc/opts-global.c
+++ b/gcc/opts-global.c
@@ -31,6 +31,7 @@ along with GCC; see the file COPYING3.  If not see
 #include "langhooks.h"
 #include "dbgcnt.h"
 #include "debug.h"
+#include "file-map.h"
 #include "output.h"
 #include "plugin.h"
 #include "toplev.h"
@@ -357,6 +358,9 @@ handle_common_deferred_options (void)
 
 	case OPT_fdebug_prefix_map_:
 	  add_debug_prefix_map (opt->arg);
+
+	  /* Reuse -fdebug-prefix-map to replace -ffile-prefix-map */
+	  add_file_prefix_map (opt->arg);
 	  break;
 
 	case OPT_fdump_:
-- 
2.8.2