Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Commit

Permalink
openssl: Fix building on MIPS64
Browse files Browse the repository at this point in the history
Like android/ndk#286, MIPS64 requires
-fno-integrated-as, too. It's clang default in r15 beta2. Here I write
it explicitly to make things clear.
  • Loading branch information
Yen Chi Hsuan committed May 18, 2017
1 parent d7fb302 commit 17bcd37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mk/openssl/ndk-clang-targets.patch
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,6 @@ index 000000000..ce11a5ae3
+ },
+ "android64-mips64-clang" => {
+ inherit_from => [ "android64-clang", "android64-mips64-base" ],
+ cflags => add(picker(default => "-target mips64el-none-linux-android -I\$(CROSS_SYSROOT)/include/mips64el-linux-android -fintegrated-as")),
+ cflags => add(picker(default => "-target mips64el-none-linux-android -I\$(CROSS_SYSROOT)/include/mips64el-linux-android -fno-integrated-as")),
+ },
+);

0 comments on commit 17bcd37

Please sign in to comment.