编译源代码时出现ndk-build错误

时间:2013-07-30 12:43:54

标签: android-ndk

我正在遵循以下教程 http://taylorpeer.com/hello-world-cpp-android-ndk/

当我在终端中运行ndk-build时。我得到以下错误

Compile++ thumb  : hello-jni <= hello-jni.cpp
jni/hello-jni.cpp:4:5: error: stray '\342' in program
jni/hello-jni.cpp:4:5: error: stray '\200' in program
jni/hello-jni.cpp:4:5: error: stray '\234' in program
jni/hello-jni.cpp:4:5: error: stray '\342' in program
jni/hello-jni.cpp:4:5: error: stray '\200' in program
jni/hello-jni.cpp:4:5: error: stray '\235' in program
jni/hello-jni.cpp:9:17: error: stray '\342' in program
jni/hello-jni.cpp:9:17: error: stray '\200' in program
jni/hello-jni.cpp:9:17: error: stray '\234' in program
jni/hello-jni.cpp:9:17: error: stray '\342' in program
jni/hello-jni.cpp:9:17: error: stray '\200' in program
jni/hello-jni.cpp:9:17: error: stray '\235' in program
jni/hello-jni.cpp:4:15: error: 'C' does not name a type
make: *** [obj/local/armeabi/objs/hello-jni/hello-jni.o] Error 1

以下是我的文件列表

在src文件夹中找到的java文件

package com.example;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

    public class Hellojnicpp extends Activity {
          /** Called when the activity is first created. */
          @Override
          public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                /** Create a TextView and set it to display
                * text loaded from a native method.
                */
                TextView tv = new TextView(this);
                tv.setText(stringFromJNI());
                setContentView(tv);
          }
          /** A native method that is implemented by the
          * ‘hello-jni’ native library, which is packaged
          * with this application.
          */
          public native String stringFromJNI();
          /** Load the native library where the native method
          * is stored.
          */
          static {
                System.loadLibrary("hello-jni");
          }
    }

Android.mk文件

LOCAL_PATH := $(call my-dir)


include $(CLEAR_VARS)
LOCAL_LDLIBS    := -llog

LOCAL_MODULE := hello-jni
LOCAL_SRC_FILES := hello-jni.cpp

include $(BUILD_SHARED_LIBRARY)

.cpp文件

#include <string.h>
 #include <jni.h>

    extern “C” {
          JNIEXPORT jstring JNICALL
          Java_com_example_Hellojnicpp_stringFromJNI
          (JNIEnv *env, jobject obj)
          {
                return env->NewStringUTF(“Hello from C++ over JNI!”);
          }
    }

请帮助我修复已经过去72小时搜索网络的错误 感谢您的进步

“C”更改为“C”

后,现在出现以下错误
Compile++ thumb  : hello-jni <= hello-jni.cpp
jni/hello-jni.cpp:9:17: error: stray '\342' in program
jni/hello-jni.cpp:9:17: error: stray '\200' in program
jni/hello-jni.cpp:9:17: error: stray '\234' in program
jni/hello-jni.cpp:9:17: error: stray '\342' in program
jni/hello-jni.cpp:9:17: error: stray '\200' in program
jni/hello-jni.cpp:9:17: error: stray '\235' in program
jni/hello-jni.cpp: In function '_jstring* Java_com_example_Hellojnicpp_stringFromJNI(JNIEnv*, jobject)':
jni/hello-jni.cpp:9:45: error: 'Hello' was not declared in this scope
make: *** [obj/local/armeabi/objs/hello-jni/hello-jni.o] Error 1

2 个答案:

答案 0 :(得分:2)

检查你的“”:

#include <string.h>
 #include <jni.h>

    extern "C" {
          JNIEXPORT jstring JNICALL
          Java_com_example_Hellojnicpp_stringFromJNI
          (JNIEnv *env, jobject obj)
          {
                return env->NewStringUTF("Hello from C++ over JNI!");
          }
    }

答案 1 :(得分:1)

extern “C”

应该是

extern "C"

即没有“卷曲”的引号。确保您的文本编辑器不会“美化”您的直引号。

相关问题