在Android.mk文件的

LOCAL_SRC_FILES后面加入包含该类或函数的文件,用\隔开,\后换行继续添加

例如

LOCAL_SRC_FILES := NDKTest.cpp\
bncore.c\
bn_error.c\
bn_fast_mp_invmod.c\
bn_fast_mp_montgomery_reduce.c\
bn_fast_s_mp_mul_digs.c\
bn_fast_s_mp_mul_high_digs.c\
bn_fast_s_mp_sqr.c\
bn_mp_2expt.c\
bn_mp_abs.c\
bn_mp_add.c\
bn_mp_addmod.c\
bn_mp_add_d.c\
bn_mp_and.c\
bn_mp_clamp.c\
bn_mp_clear.c\
bn_mp_clear_multi.c\
bn_mp_cmp.c\
bn_mp_cmp_d.c\
bn_mp_cmp_mag.c\
bn_mp_cnt_lsb.c\
bn_mp_copy.c\
bn_mp_count_bits.c\
bn_mp_div.c\
bn_mp_div_2.c\
bn_mp_div_2d.c\
bn_mp_div_3.c\
bn_mp_div_d.c\
bn_mp_dr_is_modulus.c\
bn_mp_dr_reduce.c\
bn_mp_dr_setup.c\
bn_mp_exch.c\
bn_mp_exptmod.c\
bn_mp_exptmod_fast.c\
bn_mp_expt_d.c\
bn_mp_exteuclid.c\
bn_mp_fread.c\
bn_mp_fwrite.c\
bn_mp_gcd.c\
bn_mp_get_int.c\
bn_mp_grow.c\
bn_mp_init.c\
bn_mp_init_copy.c\
bn_mp_init_multi.c\
bn_mp_init_set.c\
bn_mp_init_set_int.c\
bn_mp_init_size.c\
bn_mp_invmod.c\
bn_mp_invmod_slow.c\
bn_mp_is_square.c\
bn_mp_jacobi.c\
bn_mp_karatsuba_mul.c\
bn_mp_karatsuba_sqr.c\
bn_mp_lcm.c\
bn_mp_lshd.c\
bn_mp_mod.c\
bn_mp_mod_2d.c\
bn_mp_mod_d.c\
bn_mp_montgomery_calc_normalization.c\
bn_mp_montgomery_reduce.c\
bn_mp_montgomery_setup.c\
bn_mp_mul.c\
bn_mp_mulmod.c\
bn_mp_mul_2.c\
bn_mp_mul_2d.c\
bn_mp_mul_d.c\
bn_mp_neg.c\
bn_mp_n_root.c\
bn_mp_or.c\
bn_mp_prime_fermat.c\
bn_mp_prime_is_divisible.c\
bn_mp_prime_is_prime.c\
bn_mp_prime_miller_rabin.c\
bn_mp_prime_next_prime.c\
bn_mp_prime_rabin_miller_trials.c\
bn_mp_prime_random_ex.c\
bn_mp_radix_size.c\
bn_mp_radix_smap.c\
bn_mp_rand.c\
bn_mp_read_radix.c\
bn_mp_read_signed_bin.c\
bn_mp_read_unsigned_bin.c\
bn_mp_reduce.c\
bn_mp_reduce_2k.c\
bn_mp_reduce_2k_l.c\
bn_mp_reduce_2k_setup.c\
bn_mp_reduce_2k_setup_l.c\
bn_mp_reduce_is_2k.c\
bn_mp_reduce_is_2k_l.c\
bn_mp_reduce_setup.c\
bn_mp_rshd.c\
bn_mp_set.c\
bn_mp_set_int.c\
bn_mp_shrink.c\
bn_mp_signed_bin_size.c\
bn_mp_sqr.c\
bn_mp_sqrmod.c\
bn_mp_sqrt.c\
bn_mp_sub.c\
bn_mp_submod.c\
bn_mp_sub_d.c\
bn_mp_toom_mul.c\
bn_mp_toom_sqr.c\
bn_mp_toradix.c\
bn_mp_toradix_n.c\
bn_mp_to_signed_bin.c\
bn_mp_to_signed_bin_n.c\
bn_mp_to_unsigned_bin.c\
bn_mp_to_unsigned_bin_n.c\
bn_mp_unsigned_bin_size.c\
bn_mp_xor.c\
bn_mp_zero.c\
bn_prime_tab.c\
bn_reverse.c\
bn_s_mp_add.c\
bn_s_mp_exptmod.c\
bn_s_mp_mul_digs.c\
bn_s_mp_mul_high_digs.c\
bn_s_mp_sqr.c\
bn_s_mp_sub.c

NDK 提示"undefined reference to xxx“的解决办法的更多相关文章

  1. 编译QT时出现lib/libQtGui.so: undefined reference to `ts_read_raw'的解决办法

    lib/libQtGui.so: undefined reference to `ts_read_raw' /lib/libQtGui.so: undefined reference to `ts_o ...

  2. Linux+CLion+树莓派远程编译时,Cmake编译出现undefined reference to 'dlopen'的解决办法

    在Clion中链接讯飞的语音库并传至树莓派上编译时,出现如下错误. undefined reference to `dlopen' undefined reference to `dlclose' u ...

  3. Linux+CLion+树莓派远程编译时,Cmake编译出现undefined reference to 'pthread_create'的解决办法

    在CLion中开发讯飞的linux语音库时编译出现以下问题: undefined reference to 'pthread_create' CLion的cmake配置:修改CMakeLists.tx ...

  4. linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)

    问题原因: pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a. 所以在使用pthread_create()创建线程时,需要链接该库. 1. 终端:问题解 ...

  5. cmake 出现undefined reference to xxx 解决办法

    cmake没怎么用,主要觉得Clion很好用,但是默认clion使用的是cmake.再说一句clion是linux平台上很好用,个人强推. 当你使用clion的时候,如果使用了thread cstl等 ...

  6. undefined reference to XXX 问题原因

    原文地址:http://blog.csdn.net/cserchen/article/details/5503556 Linux下编译程序时,经常会遇到“undefined reference to ...

  7. C++ template error: undefined reference to XXX

    一般来说,写C++程序时推荐“类的声明和实现分离”,也就是说一个类的声明放在example.h文件中,而这个类的实现放在example.cpp文件中,这样方便管理,条理清晰. 但是如果类的声明用到了模 ...

  8. Linux下编译程序时,经常会遇到“undefined reference to XXX” 报错,

    Linux下编译程序时,经常会遇到“undefined reference to XXX” 报错, 这里总结一些可能的原因和解决方案,给需要的朋友: 说道undefined reference err ...

  9. 问题:eclipse中线程编程编译报错,undefined reference to 'pthread_create'的解决方法(已解决)

    问题描述: 在Ubuntu系统中,使用eclipse CDT集成开发环境编写pthread程序,编译时,pthread_create不通过,报错信息是: undefined reference to ...

随机推荐

  1. postgreSQL数据库(索引、视图)

    索引的含义与特点 索引是一个单独的.存储在磁盘上的数据库结构,它们包含对数据所有记录的引用指针,postgresql列类型都可以被索引,对相关列索引是提高查询操作效率的最佳途径.例如,查询select ...

  2. 【正则】精通JS正则表达式,没消化 信息量太大,好文

    http://www.jb51.net/article/25313.htm 正则表达式可以: •测试字符串的某个模式.例如,可以对一个输入字符串进行测试,看在该字符串是否存在一个电话号码模式或一个信用 ...

  3. 键盘样式风格有关设置-iOS开发

    一.键盘风格 UIKit框架支持8种风格键盘. typedef  enum  { UIKeyboardTypeDefault,                 // 默认键盘:支持所有字符 UIKey ...

  4. xcode 编译错误的 之 头文件 包含成.m了

    duplicate symbol _OBJC_CLASS_$_AutoTableViewViewController in: /Users/apple/Library/Developer/Xcode/ ...

  5. JDBC增删改查

    /* db.properties的配置 driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/day14 username=root ...

  6. C#加密NodeJS解密

    C#代码: class Program { static void Main(string[] args) { Console.WriteLine(", "abcdefghijkl ...

  7. SOLID architecture principles using simple C# examples

    转:http://www.codeproject.com/Articles/703634/SOLID-architecture-principles-using-simple-Csharp?msg=4 ...

  8. Spring实现AOP的4种方式(转)

    转自:http://blog.csdn.net/udbnny/article/details/5870076 Spring实现AOP的4种方式 先了解AOP的相关术语:1.通知(Advice):通知定 ...

  9. windows 64位整数

    #include <iostream> #include <ctime> using namespace std; int main() { cout << cou ...

  10. matlab fscanf用法

    matlab fscanf用法 matlab中的fscanf的用法如下: A=fscanf(fid,format)[A, count]=fscanf(fid,format,size) [A, coun ...