Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 449 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 449 Bytes

BCM Server

Compile

pull code

git clone https://github.com/bcmapp/bcm-server.git
git submodule update --init

pull docker image

docker pull bcmapp/compiler-ubuntu:16.04

run a compiler container

docker run -it -v ${path_to_code}:/code -w /code bcmapp/compiler-ubuntu:16.04 /bin/bash

build code

make dir -p build
cd build
cmake ../
make bcm-server offline-server -j $(nproc)