Skip to content

Commit

Permalink
Fix compiler for Android cross compilation.
Browse files Browse the repository at this point in the history
Bench: 5209085
  • Loading branch information
Matthies committed Jan 12, 2024
1 parent 7239e10 commit 3b469d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ ifeq ($(COMP),ndk)
AR=llvm-ar
EXEEXT=
ifeq ($(ARCH),armv7)
CXX=armv7a-linux-androideabi19-clang++
MYCC=armv7a-linux-androideabi19-clang
CXX=armv7a-linux-androideabi21-clang++
MYCC=armv7a-linux-androideabi21-clang
CXXFLAGS += -mthumb -march=armv7-a -mfloat-abi=softfp -mfpu=neon
endif
ifneq (,$(findstring armv8,$(ARCH)))
Expand Down

0 comments on commit 3b469d3

Please sign in to comment.