avatar

目录
linux

共享文件夹there no need

现在本地建立一个文件夹,这里是F:\test然后点击设备–共享文件夹,勾选自动挂载,自动分配,
此处我选择在/mnt下创建一个“share”目录,将刚刚的“gongxiang”目录与“share”目录关联起来。
进入/mnt:

Code
1
cd/mnt

创建share目录:

Code
1
sudo makdir share

将“test”目录与“share”目录进行关联:

Code
1
sudo mount -t vboxsf test /mnt/share

报错对omp_getnum_threads未定义的引用

https://stackoverflow.com/questions/9685377/undefined-reference-to-omp-get-max-threads

https://stackoverflow.com/questions/9685377/undefined-reference-to-omp-get-max-threads

#更改分辨率
先使用xrandr命令看下分辨率的索引
然后xrandr --size 0 * 0(这是800 * 800的)

多文件编译

g++ -std=c++11 -o test2 truss.h graph.h graph_IO.h dp.h main.cpp
./test2 AstroPh.txt 50 result.txt

g++ -std=c++11 fopenmp -o test2 truss.h graph.h graph_IO.h dp.h main.cpp

安装cmake

$sudo apt-get install cmake

  • 加入c11
    add_definitions(-std=c
    11)

编译

$cmake .(注意这里有一个空格)
$make
$./Demo AstroPh.txt 50 result.txt

文章作者: Sunxin
文章链接: https://sunxin18.github.io/2020/03/12/linux/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 lalala
打赏
  • 微信
    微信
  • 支付宝
    支付宝

评论