http://llvm.org/bugs/show_bug.cgi?id=8911
Bob Wilson <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |WORKSFORME --- Comment #10 from Bob Wilson <[email protected]> 2011-01-05 14:59:51 CST --- Clang doesn't know what to do with the "armv7-none-eabi" triple that you have specified. It's warning about that: clang: warning: unknown platform, assuming -mfloat-abi=soft The "soft" ABI means that hardware floating-point instructions cannot be used. Apparently no one has implemented that for vector operations. If you specify -mfloat-abi=softfp, you'll get what you want. If you want that triple to be recognized, you'll need to update the Clang::AddARMTargetArgs() function in lib/Driver/Tools.cpp. I'm going to close this again, since I don't think we need to keep a bug report open to track that. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
