aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinath Parvathaneni <srinath.parvathaneni@arm.com>2023-02-08 18:39:06 +0000
committerAndrea Corallo <andrea.corallo@arm.com>2023-03-09 16:11:15 +0100
commit96213951b754044a39e7fea975299184112734d1 (patch)
tree261377f1740fc69b71ab065fa23f79452f176c17
parentf2b8a0057dfc5864fb353175498eefb8c2b3977a (diff)
arm: Optimize arm-mlib.h header inclusion [pr108505].release-12.2.mpacbti-rel1
I have committed a fix [1] into gcc trunk for a build issue mentioned in pr108505 and latter received few upstream comments proposing more robust fix for this issue. In this patch I'm addressing those comments and sending this as a followup patch. gcc/ChangeLog: 2023-01-27 Srinath Parvathaneni <srinath.parvathaneni@arm.com> PR target/108505 * config.gcc (tm_mlib_file): Define new variable.
-rw-r--r--gcc/config.gcc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index c167613cd0c..a5b854d68b5 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -4462,6 +4462,7 @@ case "${target}" in
case ${arm_multilib} in
aprofile|rmprofile)
tmake_profile_file="arm/t-multilib"
+ tm_mlib_file="arm/arm-mlib.h"
;;
@*)
ml=`echo "X$arm_multilib" | sed '1s,^X@,,'`
@@ -4500,7 +4501,7 @@ case "${target}" in
# through to the multilib selector
with_float="soft"
tmake_file="${tmake_file} ${tmake_profile_file}"
- tm_file="$tm_file arm/arm-mlib.h"
+ tm_file="$tm_file $tm_mlib_file"
TM_MULTILIB_CONFIG="$with_multilib_list"
fi
fi