Try clang++

This commit is contained in:
Taro L. Saito 2023-09-23 23:39:03 -07:00
parent 35621b29fe
commit a508100b9f
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ SNAPPY_SRC_DIR:=$(TARGET)/snappy-$(SNAPPY_VERSION)
SNAPPY_SRC:=$(addprefix $(SNAPPY_SRC_DIR)/,$(SNAPPY_CC))
SNAPPY_GIT_REPO_URL:=https://github.com/google/snappy
# Change this variable to use a specific git commit
SNAPPY_GIT_REV:=00aa9ac61d37194cffb0913d9b7d71611eb05a4b # $(SNAPPY_VERSION)
SNAPPY_GIT_REV:=$(SNAPPY_VERSION)
SNAPPY_UNPACKED:=$(TARGET)/snappy-extracted.log
SNAPPY_GIT_UNPACKED:=$(TARGET)/snappy-git-extracted.log
SNAPPY_CMAKE_CACHE=$(SNAPPY_OUT)/CMakeCache.txt

View File

@ -295,14 +295,14 @@ Windows-x86_64_LINKFLAGS := -Wl,--kill-at -shared -static
Windows-x86_64_LIBNAME := snappyjava.dll
Windows-x86_64_SNAPPY_FLAGS :=
Windows-armv7_CXX := ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-g++
Windows-armv7_CXX := ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-clang++
Windows-armv7_STRIP := ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip
Windows-armv7_CXXFLAGS := -Ilib/inc_win -O2 -std=c++11
Windows-armv7_LINKFLAGS := -Wl,--kill-at -shared -static
Windows-armv7_LIBNAME := snappyjava.dll
Windows-armv7_SNAPPY_FLAGS :=
Windows-aarch64_CXX := ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-g++
Windows-aarch64_CXX := ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-clang++
Windows-aarch64_STRIP := ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip
Windows-aarch64_CXXFLAGS := -Ilib/inc_win -O2 -std=c++11
Windows-aarch64_LINKFLAGS := -Wl,--kill-at -shared -static