diff options
Diffstat (limited to 'gold/configure.ac')
-rw-r--r-- | gold/configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/configure.ac b/gold/configure.ac index 90e2c22..de3b630 100644 --- a/gold/configure.ac +++ b/gold/configure.ac @@ -237,6 +237,8 @@ for targ in $target $canon_targets; do fi AM_CONDITIONAL(DEFAULT_TARGET_X86_64, test "$target_x86_64" = "yes") AM_CONDITIONAL(DEFAULT_TARGET_X32, test "$target_x32" = "yes") + AM_CONDITIONAL(DEFAULT_TARGET_X86_64_OR_X32, + test "$target_x86_64" = "yes" -o "$target_x32" = "yes") AM_CONDITIONAL(DEFAULT_TARGET_TILEGX, test "$targ_obj" = "tilegx") AM_CONDITIONAL(DEFAULT_TARGET_MIPS, test "$targ_obj" = "mips") DEFAULT_TARGET=${targ_obj} |