diff options
author | Sofiane Naci <sofiane.naci@arm.com> | 2013-08-01 09:50:52 +0000 |
---|---|---|
committer | Sofiane Naci <sofiane@gcc.gnu.org> | 2013-08-01 09:50:52 +0000 |
commit | c451f4d6c1727bc908e111346a1087ee7ccc1b2c (patch) | |
tree | 45b84f08b1698b7e7ee2faa54f446b553d94ed6e /gcc/config.gcc | |
parent | 34b512f5aa148cc6a36e8da921456895b2d20f66 (diff) | |
download | gcc-c451f4d6c1727bc908e111346a1087ee7ccc1b2c.zip gcc-c451f4d6c1727bc908e111346a1087ee7ccc1b2c.tar.gz gcc-c451f4d6c1727bc908e111346a1087ee7ccc1b2c.tar.bz2 |
config.gcc (aarch64*-*-*): Add aarch-common.o to extra_objs.
* config.gcc (aarch64*-*-*): Add aarch-common.o to extra_objs. Add
aarch-common-protos.h to extra_headers.
(aarch64*-*-*): Add arm/aarch-common-protos.h to tm_p_file.
* config/aarch64/aarch64.md: Include "../arm/cortex-a53.md"
* config/aarch64/t-aarch64 (aarch-common.o): Define.
From-SVN: r201400
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index fda3c6e..ef37e61 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -313,7 +313,7 @@ aarch64*-*-*) cpu_type=aarch64 need_64bit_hwint=yes extra_headers="arm_neon.h" - extra_objs="aarch64-builtins.o" + extra_objs="aarch64-builtins.o aarch-common.o" target_has_targetm_common=yes ;; alpha*-*-*) @@ -501,6 +501,7 @@ fi case ${target} in aarch64*-*-*) + tm_p_file="${tm_p_file} arm/aarch-common-protos.h" case ${with_abi} in "") if test "x$with_multilib_list" = xilp32; then |