docker_build_fpga.sh 165 字节
Newer Older
1 2
#!/usr/bin/env bash

3 4 5 6
apt-get update
apt-get install -y gcc g++ cmake

cd /workspace && mkdir build
7
cd build && cmake .. -DCPU=OFF -DGPU_CL=OFF -DFPGA=ON && make -j4