You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that you are using the first part of `llvm-config --host-target`
to determine the desired -march to run clang with. On amd64 machines
`llvm-config --host-target` will return "x86_64-pc-linux-gnu", but clang
will expect -march to be "x86-64".
This can be fixed by piping `llvm-config --host-target` through a sed
command: `sed -e s/_/-/`.
Original issue reported on code.google.com by [email protected] on 2 Mar 2010 at 9:51
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 2 Mar 2010 at 9:51The text was updated successfully, but these errors were encountered: