openmp交叉编译

1、下载omp

git clone https://github.com/lapesd/libgomp.git
cd libgomp/src/libgomp && mkdir build && cd build

2、configure设置

其中有三个参数–build、–host、–target的区别如下

build: 执行代码编译的主机,一般指自己的主机系统

host: 编译出来的二进制程序所执行的主机,因为绝大多数是本机编译,本机执行,所以这个值就等于build。只有交叉编译的时候(也就是本机编译,其他系统机器执行)才会build和host不同。用host指定运行主机。

target:这个选项只有在建立交叉编译环境的时候用到,正常编译和交叉编译都不会用到。他用build主机上的编译器,编译一个新的编译器(binutils, gcc,gdb等),这个新的编译器将来编译出来的其他程序将运行在target指定的系统上。

3、编译

../configure –host=arm-linux CC=/gzy_mnt/gsvprov2/gcc-arm-linux-gnueabi/bin/arm-linux-gnueabihf-gcc CXX=/gzy_mnt/gsvprov2/gcc-arm-linux-gnueabi/bin/arm-linux-gnueabihf-g++ -prefix=/gzy_mnt/gomp 
make -j8
make install

 就可以在gomp有头文件和lib文件

你可能感兴趣的:(系统工具总结,服务器,网络,linux)