//https://blog.csdn.net/ternence_hsu/article/details/54380607 1、源码下载 ffmpeg 源码: https://ffmpeg.org/download.html#releases gas-preprocessor 工具 (编译脚本会自己 ...
分类:
移动开发 时间:
2021-03-09 12:56:06
阅读次数:
0
{ //http://www.360doc.com/content/14/0413/16/15099545_368549362.shtml } GCC/Clang生成和链接静态库/动态库 { 1 2 3 4 5 //add.cpp int add(int a, int b) { return a + ...
分类:
编程语言 时间:
2021-03-01 14:16:36
阅读次数:
0
问题:真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file 分析:Xcode12之前:编译模拟器静态库支持i386 x86_64两架构;编译真机静态库支持armv7 arm ...
分类:
其他好文 时间:
2021-02-26 13:05:06
阅读次数:
0
创建一个win32控制台项目, 1.1 创建头文件funSub.h #pragma once void sub(int a, int b); 1.2 创建funSub.cpp #include <iostream> void sub(int a, int b) { std::cout << (a - ...
分类:
其他好文 时间:
2021-02-18 12:58:22
阅读次数:
0
1.获取LwIP的源码 http://savannah.nongnu.org/ lwip-2.1.2.zip 2.获取移植和应用LwIP的一些demo源码 http://savannah.nongnu.org/ contrib-2.1.0.zip 3.Linux环境下编译LwIP成静态库的方法 3. ...
分类:
其他好文 时间:
2020-12-29 11:41:15
阅读次数:
0
静态库的创建和使用 1>.命名规则 lib+库的名字+.a 例子:libmytest.a 2>.制作步骤 a.生成对应的.o文件【.c --> .o】 b.将生成的.a文件打包 ar rcs + 静态库的名字【libmytest.a】 + 生成的所有的.o 3>.发布和使用静态库 a.发布静态库 b ...
分类:
其他好文 时间:
2020-12-09 11:57:59
阅读次数:
5
创建JNI的hello程序 image.png 在cpp下创建include/calcul.h image.png calcul.h // // Created by Administrator on 2020/11/12. // #ifndef JNITEST_CALCUL_H #define J ...
分类:
移动开发 时间:
2020-11-18 12:26:02
阅读次数:
29
##静态库的制作和使用 命名规则:libtest**.a**(加粗的地方是格式不可以更改) lib xxx -库的名字(自己取) .a 制作步骤 源代码:.c/.cpp 将.c文件生成.o gcc a.c b.c -c 将.o打包 ar rcs 静态库名字 原材料 ar rcs libtest.a ...
分类:
其他好文 时间:
2020-11-01 21:59:26
阅读次数:
14
20181324 谭杰 Myod完成 1.任务内容 1 复习c文件处理内容 2 编写myod.c 用myod XXX实现Linux下od -tx -tc XXX的功能 3. main与其他分开,制作静态库和动态库 4. 编写Makefile 5 提交测试代码和运行结果截图, 提交调试过程截图,要全屏 ...
分类:
移动开发 时间:
2020-10-12 20:00:42
阅读次数:
29
windows中静态库lib和动态dll的区别及使用方法 1. 静态库lib和动态dll的区别 ~1. 静态库 编译链接的流程: 1) 预处理 2) 编译, cpp -> obj文件 3) 链接, obj -> exe文件 静态库, 多个obj文件的集合, 多个obj文件合成一个lib 使用静态库: ...
分类:
其他好文 时间:
2020-09-17 12:58:11
阅读次数:
26