[PATCH] D22453: [Compiler-rt][MIPS] Fix simple test failure when using gcc
Mohit Bhakkad via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 18 02:30:53 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL275780: [Compiler-rt][MIPS] Fix simple test failure when using gcc (authored by mohit.bhakkad).
Changed prior to commit:
https://reviews.llvm.org/D22453?vs=64274&id=64287#toc
Repository:
rL LLVM
https://reviews.llvm.org/D22453
Files:
compiler-rt/trunk/cmake/base-config-ix.cmake
Index: compiler-rt/trunk/cmake/base-config-ix.cmake
===================================================================
--- compiler-rt/trunk/cmake/base-config-ix.cmake
+++ compiler-rt/trunk/cmake/base-config-ix.cmake
@@ -148,10 +148,10 @@
# since the default ABI differs between gcc and clang.
# FIXME: Ideally, we would build the N32 library too.
test_target_arch(mipsel "" "-mips32r2" "--target=mipsel-linux-gnu")
- test_target_arch(mips64el "" "-mips64r2" "--target=mips64el-linux-gnu" "-mabi=n64")
+ test_target_arch(mips64el "" "-mips64r2" "--target=mips64el-linux-gnu" "-mabi=64")
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "mips")
test_target_arch(mips "" "-mips32r2" "--target=mips-linux-gnu")
- test_target_arch(mips64 "" "-mips64r2" "--target=mips64-linux-gnu" "-mabi=n64")
+ test_target_arch(mips64 "" "-mips64r2" "--target=mips64-linux-gnu" "-mabi=64")
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "arm")
test_target_arch(arm "" "-march=armv7-a" "-mfloat-abi=soft")
test_target_arch(armhf "" "-march=armv7-a" "-mfloat-abi=hard")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22453.64287.patch
Type: text/x-patch
Size: 1130 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160718/c431a7f1/attachment.bin>
More information about the llvm-commits
mailing list