summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-10-24 09:56:07 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-10-24 09:56:07 +0000
commit8766aeb2b18bf2888c513ebc500eff49dc61e46c (patch)
tree84951a0b0b5c93a65a025871ebaa16232a2dc133 /configure
parent514ea1ae1fc8a2e40c6b45966419c27e1f6aaaa2 (diff)
Use register names under Linux.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2349 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index 8a83aa6..5e61001 100755
--- a/configure
+++ b/configure
@@ -76,8 +76,7 @@ case "$target" in
system="linux"
cc="${toolprefix}gcc"
cprepro="${toolprefix}gcc -U__GNUC__ -E"
- casm="${toolprefix}gcc -c"
- casmruntime="${toolprefix}gcc -c -Wa,-mregnames"
+ casm="${toolprefix}gcc -c -Wa,-mregnames"
clinker="${toolprefix}gcc"
libmath="-lm"
cchecklink=true;;