aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2016-03-21 10:25:26 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2016-03-21 10:25:26 +0100
commit009bb83e2bb92233d4285eada58273f7e1c074ec (patch)
tree0d91f571f9dd96e05d9eb0d9c3e67610150fdd97 /configure
parent20eef936dce1ef98b5b422c90cc9e072fb0d75ab (diff)
downloadcompcert-009bb83e2bb92233d4285eada58273f7e1c074ec.tar.gz
compcert-009bb83e2bb92233d4285eada58273f7e1c074ec.zip
configure: fix test for CFI directives
The test was failing as a consequence of the split casm -> casm / casm_options.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9e315065..82d7142f 100755
--- a/configure
+++ b/configure
@@ -255,7 +255,7 @@ testfun:
.cfi_adjust_cfa_offset 16
.cfi_endproc
EOF
- if $casm -o /dev/null $f 2>/dev/null
+ if $casm $casm_options -o /dev/null $f 2>/dev/null
then echo "yes"; asm_supports_cfi=true
else echo "no"; asm_supports_cfi=false
fi