diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gcc-ar.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cb07985..be5a91a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-10-29 Andi Kleen <ak@linux.intel.com> + + * gcc-ar.c (target_machine): Add. + 2011-10-29 Anatoly Sokolov <aesok@post.ru> * config/cris/cris.c (reg_ok_for_base_p, reg_ok_for_index_p, diff --git a/gcc/gcc-ar.c b/gcc/gcc-ar.c index fc7e4a2..1e86d20 100644 --- a/gcc/gcc-ar.c +++ b/gcc/gcc-ar.c @@ -29,6 +29,7 @@ along with GCC; see the file COPYING3. If not see static const char standard_libexec_prefix[] = STANDARD_LIBEXEC_PREFIX; static const char standard_bin_prefix[] = STANDARD_BINDIR_PREFIX; +static const char *const target_machine = TARGET_MACHINE; static const char dir_separator[] = { DIR_SEPARATOR, 0 }; |