mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-02-06 19:09:12 +00:00
whisper.android : migrate from ndk-build to CMake (#1204)
This commit is contained in:
parent
7ef3f3837e
commit
20a80972f4
@ -18,6 +18,9 @@ android {
|
|||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
useSupportLibrary true
|
useSupportLibrary true
|
||||||
}
|
}
|
||||||
|
ndk {
|
||||||
|
abiFilters 'arm64-v8a', 'armeabi-v7a'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
@ -42,8 +45,8 @@ android {
|
|||||||
}
|
}
|
||||||
ndkVersion "25.1.8937393"
|
ndkVersion "25.1.8937393"
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
ndkBuild {
|
cmake {
|
||||||
path 'src/main/jni/whisper/Android.mk'
|
path = file("src/main/jni/whisper/CMakeLists.txt")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := libwhisper
|
|
||||||
include $(LOCAL_PATH)/Whisper.mk
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
|
|
||||||
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := libwhisper_vfpv4
|
|
||||||
include $(LOCAL_PATH)/Whisper.mk
|
|
||||||
# Allow building NEON FMA code.
|
|
||||||
# https://android.googlesource.com/platform/ndk/+/master/sources/android/cpufeatures/cpu-features.h
|
|
||||||
LOCAL_CFLAGS += -mfpu=neon-vfpv4
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
|
|
||||||
include $(CLEAR_VARS)
|
|
||||||
LOCAL_MODULE := libwhisper_v8fp16_va
|
|
||||||
include $(LOCAL_PATH)/Whisper.mk
|
|
||||||
# Allow building NEON FMA code.
|
|
||||||
# https://android.googlesource.com/platform/ndk/+/master/sources/android/cpufeatures/cpu-features.h
|
|
||||||
LOCAL_CFLAGS += -march=armv8.2-a+fp16
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
|
||||||
endif
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
APP_STL := c++_static
|
|
@ -0,0 +1,44 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.10)
|
||||||
|
|
||||||
|
project(whisper.cpp)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
set(WHISPER_LIB_DIR ${CMAKE_SOURCE_DIR}/../../../../../../../)
|
||||||
|
|
||||||
|
set(
|
||||||
|
SOURCE_FILES
|
||||||
|
${WHISPER_LIB_DIR}/ggml.c
|
||||||
|
${WHISPER_LIB_DIR}/whisper.cpp
|
||||||
|
${CMAKE_SOURCE_DIR}/jni.c
|
||||||
|
)
|
||||||
|
|
||||||
|
if (${ANDROID_ABI} STREQUAL "arm64-v8a")
|
||||||
|
set(WHISPER_LIBRARY_NAME whisper_v8fp16_va)
|
||||||
|
elseif (${ANDROID_ABI} STREQUAL "armeabi-v7a")
|
||||||
|
set(WHISPER_LIBRARY_NAME whisper_vfpv4)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
add_library(
|
||||||
|
${WHISPER_LIBRARY_NAME}
|
||||||
|
SHARED
|
||||||
|
${SOURCE_FILES}
|
||||||
|
)
|
||||||
|
|
||||||
|
if (${ANDROID_ABI} STREQUAL "arm64-v8a")
|
||||||
|
target_compile_options(${WHISPER_LIBRARY_NAME} PRIVATE -march=armv8.2-a+fp16)
|
||||||
|
elseif (${ANDROID_ABI} STREQUAL "armeabi-v7a")
|
||||||
|
target_compile_options(${WHISPER_LIBRARY_NAME} PRIVATE -mfpu=neon-vfpv4)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
|
||||||
|
target_link_libraries(${WHISPER_LIBRARY_NAME} log android)
|
||||||
|
include_directories(${WHISPER_LIB_DIR})
|
||||||
|
|
||||||
|
if (NOT ${CMAKE_BUILD_TYPE} STREQUAL "Debug")
|
||||||
|
target_compile_options(${WHISPER_LIBRARY_NAME} PRIVATE -O3)
|
||||||
|
target_compile_options(${WHISPER_LIBRARY_NAME} PRIVATE -fvisibility=hidden -fvisibility-inlines-hidden)
|
||||||
|
target_compile_options(${WHISPER_LIBRARY_NAME} PRIVATE -ffunction-sections -fdata-sections)
|
||||||
|
target_link_options(${WHISPER_LIBRARY_NAME} PRIVATE -Wl,--gc-sections)
|
||||||
|
target_link_options(${WHISPER_LIBRARY_NAME} PRIVATE -Wl,--exclude-libs,ALL)
|
||||||
|
target_link_options(${WHISPER_LIBRARY_NAME} PRIVATE -flto)
|
||||||
|
endif ()
|
@ -1,18 +0,0 @@
|
|||||||
WHISPER_LIB_DIR := $(LOCAL_PATH)/../../../../../../../
|
|
||||||
LOCAL_LDLIBS := -landroid -llog
|
|
||||||
|
|
||||||
# Make the final output library smaller by only keeping the symbols referenced from the app.
|
|
||||||
ifneq ($(APP_OPTIM),debug)
|
|
||||||
LOCAL_CFLAGS += -O3
|
|
||||||
LOCAL_CFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
|
|
||||||
LOCAL_CFLAGS += -ffunction-sections -fdata-sections
|
|
||||||
LOCAL_LDFLAGS += -Wl,--gc-sections
|
|
||||||
LOCAL_LDFLAGS += -Wl,--exclude-libs,ALL
|
|
||||||
LOCAL_LDFLAGS += -flto
|
|
||||||
endif
|
|
||||||
|
|
||||||
LOCAL_CFLAGS += -DSTDC_HEADERS -std=c11 -I $(WHISPER_LIB_DIR)
|
|
||||||
LOCAL_CPPFLAGS += -std=c++11
|
|
||||||
LOCAL_SRC_FILES := $(WHISPER_LIB_DIR)/ggml.c \
|
|
||||||
$(WHISPER_LIB_DIR)/whisper.cpp \
|
|
||||||
$(LOCAL_PATH)/jni.c
|
|
Loading…
x
Reference in New Issue
Block a user