summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-10-24 11:28:47 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-10-24 11:28:47 +0000
commitf0ad15b54c26e8c62405e213575024ce5e317886 (patch)
tree316890c56bb24e2493253629c590a7efab6684f7 /configure
parent8766aeb2b18bf2888c513ebc500eff49dc61e46c (diff)
Revert commit r2349 because it triggers a bug in GNU as.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2350 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 5e61001..8a83aa6 100755
--- a/configure
+++ b/configure
@@ -76,7 +76,8 @@ case "$target" in
system="linux"
cc="${toolprefix}gcc"
cprepro="${toolprefix}gcc -U__GNUC__ -E"
- casm="${toolprefix}gcc -c -Wa,-mregnames"
+ casm="${toolprefix}gcc -c"
+ casmruntime="${toolprefix}gcc -c -Wa,-mregnames"
clinker="${toolprefix}gcc"
libmath="-lm"
cchecklink=true;;