diff options
author | midipix <writeonce@midipix.org> | 2019-01-06 13:10:36 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-09 05:48:07 -0500 |
commit | b62af27a21e5b596e502d439bbd68318c511485a (patch) | |
tree | 6a7893d9d77f3ec90781e696a450d560e77000d2 | |
parent | 212c8fda0730d3daa4625ef7df1284c14b506ee0 (diff) | |
download | mdso-b62af27a21e5b596e502d439bbd68318c511485a.tar.bz2 mdso-b62af27a21e5b596e502d439bbd68318c511485a.tar.xz |
build system: ccenv: added -c to the cc driver-based definition of $(AS).
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index a8955fb..452694d 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -221,7 +221,7 @@ ccenv_set_tool_variants() # as if [ -n "$ccenv_cc" ]; then - ccenv_as='$('"$ccenv_makevar_prefix"'CC) -x assembler' + ccenv_as='$('"$ccenv_makevar_prefix"'CC) -c -x assembler' elif [ -n "$mb_agnostic" ]; then ccenv_as='$('"$ccenv_makevar_prefix"'AS_ASM)' elif [ "$mb_zealous" = 'gcc' ]; then |