From 5ce8aa4615a3816d12c43752323154744517ae9f Mon Sep 17 00:00:00 2001
|
From: Khem Raj <raj.khem@gmail.com>
|
Date: Fri, 29 Mar 2013 09:33:04 +0400
|
Subject: [PATCH] Use the multilib config files from ${B} instead of using the
|
ones from ${S}
|
|
Use the multilib config files from ${B} instead of using the ones from ${S}
|
so that the source can be shared between gcc-cross-initial,
|
gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
|
|
Upstream-Status: Inappropriate [configuration]
|
---
|
gcc/configure | 22 ++++++++++++++++++----
|
gcc/configure.ac | 22 ++++++++++++++++++----
|
2 files changed, 36 insertions(+), 8 deletions(-)
|
|
diff --git a/gcc/configure b/gcc/configure
|
index 5160917d73e..e663052cad2 100755
|
--- a/gcc/configure
|
+++ b/gcc/configure
|
@@ -13070,10 +13070,20 @@ done
|
tmake_file_=
|
for f in ${tmake_file}
|
do
|
- if test -f ${srcdir}/config/$f
|
- then
|
- tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
|
- fi
|
+ case $f in
|
+ */t-linux64 )
|
+ if test -f ./config/$f
|
+ then
|
+ tmake_file_="${tmake_file_} ./config/$f"
|
+ fi
|
+ ;;
|
+ * )
|
+ if test -f ${srcdir}/config/$f
|
+ then
|
+ tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
|
+ fi
|
+ ;;
|
+ esac
|
done
|
tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
|
|
@@ -13084,6 +13094,10 @@ tm_file_list="options.h"
|
tm_include_list="options.h insn-constants.h"
|
for f in $tm_file; do
|
case $f in
|
+ */linux64.h )
|
+ tm_file_list="${tm_file_list} ./config/$f"
|
+ tm_include_list="${tm_include_list} ./config/$f"
|
+ ;;
|
./* )
|
f=`echo $f | sed 's/^..//'`
|
tm_file_list="${tm_file_list} $f"
|
diff --git a/gcc/configure.ac b/gcc/configure.ac
|
index 50f78308e8a..2b84875b028 100644
|
--- a/gcc/configure.ac
|
+++ b/gcc/configure.ac
|
@@ -2243,10 +2243,20 @@ done
|
tmake_file_=
|
for f in ${tmake_file}
|
do
|
- if test -f ${srcdir}/config/$f
|
- then
|
- tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
|
- fi
|
+ case $f in
|
+ */t-linux64 )
|
+ if test -f ./config/$f
|
+ then
|
+ tmake_file_="${tmake_file_} ./config/$f"
|
+ fi
|
+ ;;
|
+ * )
|
+ if test -f ${srcdir}/config/$f
|
+ then
|
+ tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
|
+ fi
|
+ ;;
|
+ esac
|
done
|
tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
|
|
@@ -2257,6 +2267,10 @@ tm_file_list="options.h"
|
tm_include_list="options.h insn-constants.h"
|
for f in $tm_file; do
|
case $f in
|
+ */linux64.h )
|
+ tm_file_list="${tm_file_list} ./config/$f"
|
+ tm_include_list="${tm_include_list} ./config/$f"
|
+ ;;
|
./* )
|
f=`echo $f | sed 's/^..//'`
|
tm_file_list="${tm_file_list} $f"
|