Skip to content

Commit

Permalink
configure: Disable Clang's integrated assembler
Browse files Browse the repository at this point in the history
We have too much code that doesn't work with it yet and it makes more
sense to get the other parts working with Clang first.
  • Loading branch information
Midar committed Nov 8, 2015
1 parent 8719963 commit c6fb0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -787,7 +787,7 @@ else
if [ $useClang = 1 ]; then
target=${crossToolsPrefix##*/}
target=${target%-}
gcc="clang -target ${target}"
gcc="clang -target ${target} -no-integrated-as"
else
gcc="${crossToolsPrefix}gcc"
fi
Expand Down

0 comments on commit c6fb0e2

Please sign in to comment.