方法一COPY两个*.so文件至上一层,并且为了使得g++编译器能识别两个*.so,要加上"lib"前缀:libthostmduserapi.so libthosttraderapi.so$ export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH$ g++ testMdA ...
分类:
系统相关 时间:
2021-06-13 09:50:13
阅读次数:
0
三角形模板 const int N = 1e5 + 50; const ld PI = acos(-1.0); const ld eps=1e-8; int sgn(ld x) { if(fabs(x)<eps)return 0; return x<0?-1:1; } struct Point { ...
分类:
其他好文 时间:
2021-06-10 17:53:30
阅读次数:
0
这个问题真的困扰了我好久 人都麻了 终于解决了 我开花了 问题描述: Linux打开命令行时,激活默认的conda环境显示如下错误: ERROR: This cross-compiler package contains no program /home/kth/anaconda3/bin/x86_ ...
分类:
系统相关 时间:
2021-05-23 23:10:34
阅读次数:
0
make 时出现: /usr/bin/ld: 找不到 -lboost_serialization 0x00 存在库但是没有链接指向库导致找不到 使用 locate 定位库文件 locate libxxx.so 定位结果: /usr/local/ahuasdk/libXXX.so 利用软链接将两者链接 ...
分类:
其他好文 时间:
2021-04-21 12:34:38
阅读次数:
0
用stm32cubemx配置好串口功能之后,想要使用printf函数进行打印输出的话,还需要自己添加一个重定向函数。 1 #ifdef __GNUC__ 2 /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Smal ...
分类:
其他好文 时间:
2021-04-20 15:06:54
阅读次数:
0
%% 1. 利用MATLAB产生分解与重构滤波器组 % [Ld, Hd, Lr, Hr] = wfilters(wn); % wfname:小波名 % Ld:分解低通滤波器h0[-n]; % Hd:分解高通滤波器h1[-n]; % Lr:分解低通滤波器h0[-n]; % Hr:分解高通滤波器h1[- ...
分类:
其他好文 时间:
2021-04-10 13:01:20
阅读次数:
0
gnu http://www.gnu.org/software/binutils/ The GNU Binutils are a collection of binary tools. The main ones are: ld - the GNU linker. as - the GNU asse ...
分类:
其他好文 时间:
2021-03-11 20:36:58
阅读次数:
0
字符计数 #include<stdio.h> int main(){ long nc; nc = 0; while(getchar()!=EOF) ++nc; printf("%ld\n",nc); } 下面是for循环的代码: #include<stdio.h> int main(){ doubl ...
分类:
其他好文 时间:
2021-03-05 13:15:59
阅读次数:
0
我发现平面图转对偶图经常和最小割在一起。 1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long int ll; 4 typedef long double ld; 5 typedef pair<int,int> pi ...
分类:
其他好文 时间:
2021-03-05 13:00:48
阅读次数:
0
安全编译: NX(堆栈不可执行): -z noexecstack SP(栈保护):-fstack-protector-all 或 -fstack-protector-strong BIND_NOW(立即绑定):-Wl,z,now 或 LD_BIND_NOW=1 RELRO(只读重定位):-Wl,-z ...
分类:
其他好文 时间:
2021-02-08 11:52:19
阅读次数:
0