尝试在带有Cygwin的Windows上使用NDK为Android构建PocketSphinx时出现的问题

尝试在带有Cygwin的Windows上使用NDK为Android构建PocketSphinx时出现的问题,android,android-ndk,android-ndk-r5,Android,Android Ndk,Android Ndk R5,我目前正在尝试使用Windows上的NDK和Cygwin为Android构建PocketSphinx库。我有PocketSphinxAndroidDemo项目代码。我还将pocketsphinx和shpinxbase项目作为E:/Development/CMUSphinx文件夹的子文件夹 我正在尝试使用项目文件夹中的ndk build进行构建。项目的/jni/文件夹中的Android.mk文件如下所示- # Build the native component of the PocketSphi

我目前正在尝试使用Windows上的NDK和Cygwin为Android构建PocketSphinx库。我有PocketSphinxAndroidDemo项目代码。我还将pocketsphinx和shpinxbase项目作为E:/Development/CMUSphinx文件夹的子文件夹

我正在尝试使用项目文件夹中的ndk build进行构建。项目的/jni/文件夹中的Android.mk文件如下所示-

# Build the native component of the PocketSphinx library for Android.

# You MUST change this to the absolute path of the directory containing
# sphinxbase and pocketsphinx source code.
SPHINX_PATH := E:/Development/CMUSphinx

# Copy this Android.mk along with pocketsphinx_wrap.c and the contents of the 'edu' folder
# built by swig to the jni/ directory of your Android project.
BASE_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(SPHINX_PATH)/sphinxbase/include/android $(SPHINX_PATH)/sphinxbase/include
LOCAL_CFLAGS += -DHAVE_CONFIG_H
LOCAL_CFLAGS += -DANDROID_NDK

LOCAL_PATH := $(SPHINX_PATH)/sphinxbase/src/libsphinxbase/util
LOCAL_MODULE := sphinxutil

LOCAL_SRC_FILES := \
 bio.c \
 bitvec.c \
 case.c \
 ckd_alloc.c \
 cmd_ln.c \
 dtoa.c \
 err.c \
 errno.c \
 f2c_lite.c \
 filename.c \
 genrand.c \
 glist.c \
 hash_table.c \
 heap.c \
 huff_code.c \
 info.c \
 listelem_alloc.c \
 logmath.c.arm \
 matrix.c \
 mmio.c \
 pio.c \
 profile.c \
 sbthread.c \
 strfuncs.c \
 utf8.c

include $(BUILD_STATIC_LIBRARY)

include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(SPHINX_PATH)/sphinxbase/include/android $(SPHINX_PATH)/sphinxbase/include
LOCAL_CFLAGS += -DHAVE_CONFIG_H
LOCAL_CFLAGS += -DANDROID_NDK

LOCAL_PATH := $(SPHINX_PATH)/sphinxbase/src/libsphinxbase/fe
LOCAL_MODULE := sphinxfe
LOCAL_ARM_MODE := arm

LOCAL_SRC_FILES := \
 fe_interface.c \
 fe_sigproc.c \
 fe_warp_affine.c \
 fe_warp.c \
 fe_warp_inverse_linear.c \
 fe_warp_piecewise_linear.c \
 fixlog.c

include $(BUILD_STATIC_LIBRARY)

include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(SPHINX_PATH)/sphinxbase/include/android $(SPHINX_PATH)/sphinxbase/include
LOCAL_CFLAGS += -DHAVE_CONFIG_H
LOCAL_CFLAGS += -DANDROID_NDK

LOCAL_PATH := $(SPHINX_PATH)/sphinxbase/src/libsphinxbase/feat
LOCAL_MODULE := sphinxfeat

LOCAL_SRC_FILES := \
 agc.c \
 cmn.c \
 cmn_prior.c \
 feat.c \
 lda.c

include $(BUILD_STATIC_LIBRARY)

include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(SPHINX_PATH)/sphinxbase/include/android $(SPHINX_PATH)/sphinxbase/include
LOCAL_CFLAGS += -DHAVE_CONFIG_H
LOCAL_CFLAGS += -DANDROID_NDK

LOCAL_PATH := $(SPHINX_PATH)/sphinxbase/src/libsphinxbase/lm
LOCAL_MODULE := sphinxlm

LOCAL_SRC_FILES := \
 fsg_model.c \
 jsgf.c \
 jsgf_parser.c \
 jsgf_scanner.c \
 lm3g_model.c \
 ngram_model_arpa.c \
 ngram_model_dmp.c \
 ngram_model_set.c \
 ngram_model.c

include $(BUILD_STATIC_LIBRARY)

include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(SPHINX_PATH)/sphinxbase/include/android $(SPHINX_PATH)/sphinxbase/include \
     $(SPHINX_PATH)/pocketsphinx/include
LOCAL_CFLAGS += -DHAVE_CONFIG_H
LOCAL_CFLAGS += -DANDROID_NDK

LOCAL_PATH := $(SPHINX_PATH)/pocketsphinx/src/libpocketsphinx
LOCAL_MODULE := pocketsphinx

LOCAL_SRC_FILES := \
 acmod.c     \
 bin_mdef.c    \
 blkarray_list.c   \
 dict.c     \
 dict2pid.c    \
 fsg_history.c   \
 fsg_lextree.c   \
 fsg_search.c   \
 hmm.c.arm     \
 mdef.c     \
 ms_gauden.c.arm    \
 ms_mgau.c.arm    \
 ms_senone.c.arm    \
 ngram_search.c   \
 ngram_search_fwdtree.c \
 ngram_search_fwdflat.c \
 phone_loop_search.c  \
 pocketsphinx.c \
 ps_lattice.c   \
 ps_mllr.c    \
 ptm_mgau.c.arm    \
 s2_semi_mgau.c.arm   \
 tmat.c     \
 vector.c

include $(BUILD_STATIC_LIBRARY)

# Create the dynamic library wrapper
include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(SPHINX_PATH)/sphinxbase/include/android $(SPHINX_PATH)/sphinxbase/include \
     $(SPHINX_PATH)/pocketsphinx/include
LOCAL_CFLAGS += -DHAVE_CONFIG_H
LOCAL_CFLAGS += -DANDROID_NDK

LOCAL_PATH := $(BASE_PATH)
LOCAL_MODULE := pocketsphinx_jni

LOCAL_SRC_FILES := pocketsphinx_wrap.c

PRIVATE_WHOLE_STATIC_LIBRARIES := \
 $(call static-library-path,sphinxutil) \
 $(call static-library-path,sphinxfe) \
 $(call static-library-path,sphinxfeat) \
 $(call static-library-path,sphinxlm) \
 $(call static-library-path,pocketsphinx)
LOCAL_STATIC_LIBRARIES := sphinxutil sphinxfe sphinxfeat sphinxlm pocketsphinx

include $(BUILD_SHARED_LIBRARY)
运行ndk build命令时,出现以下错误:

build-binary.mk:197: *** target pattern contains no '%'. Stop.

我可以建立所有的ndk样本刚刚好。有什么线索导致这个错误吗?非常感谢

你知道这个项目以前是否成功地使用cygwin构建?Cygwin有许多奇怪之处,从windows驱动器号与unix路径的笨拙组合,到异常地解释汇编路径中无意中出现的双斜杠,等等。您可以尝试使用/cygdrive/e/类型的路径而不是驱动器号,但谁知道这是否有用。

Jason, 您必须将sphinx路径更改为cygwin格式,即不带“:”
改变


这将修复错误

Jason,编辑jni/Android.mk文件

换行162:

LOCAL_STATIC_LIBRARIES := sphinxutil sphinxfe sphinxfeat sphinxlm pocketsphinx
致:


这将解决您的问题。

我使用以下链接在Windows上的Android上构建Pocketsphinx
但它遗漏了@Hitesh提到的在jni/Android.mk文件中替换本地静态库的一步,我能够构建到最新的0.8版本。。谢谢@Hitesh

@Chris-你能把这个作为回答吗?你提到了驱动器号和路径,这让我得到了正确的答案。我希望能够将您的答案标记为正确答案:)我在SPHINX_路径声明下添加了SPHINX_路径:=$(shell cygpath-u$(SPHINX_路径)),现在一切都很好!谢谢这个答案把我带到了正确的地方。我在SPHINX_路径声明下添加了SPHINX_路径:=$(shell cygpath-u$(SPHINX_路径)),现在一切都很好!谢谢
SPHINX_PATH := /cygdrive/e/Development/CMUSphinx
LOCAL_STATIC_LIBRARIES := sphinxutil sphinxfe sphinxfeat sphinxlm pocketsphinx
LOCAL_STATIC_LIBRARIES := pocketsphinx sphinxlm sphinxfeat sphinxfe sphinxutil