summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2015-03-05 23:38:00 +0200
committerMartin Storsjö <martin@martin.st>2015-03-07 18:12:58 +0200
commitb77e335e441040a40fc6156b8e4a134745d10233 (patch)
tree38daaac17191eeed9cb4e92bb8e25f3ae6471b1b /configure
parentdcae2e32f7d8a1ca5fb8c1e4aa81313be854dd73 (diff)
configure: Move the .object_arch check to the right place
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index 59438b833e..0042246fae 100755
--- a/configure
+++ b/configure
@@ -3870,11 +3870,6 @@ if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
.func test
.endfunc
EOF
-
- # llvm's integrated assembler supports .object_arch from llvm 3.5
- enabled arm && test "$objformat" = elf && check_as <<EOF && enable as_object_arch
-.object_arch armv4
-EOF
fi
check_inline_asm inline_asm_labels '"1:\n"'
@@ -3927,6 +3922,11 @@ ra .dn d0.i16
.unreq ra
EOF
+ # llvm's integrated assembler supports .object_arch from llvm 3.5
+ [ "$objformat" = elf ] && check_as <<EOF && enable as_object_arch
+.object_arch armv4
+EOF
+
[ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
elif enabled mips; then