Add borded_cpp_exec to .gitignore, include build_borded_cpp in Makefile all target, and extend bench.py with Borded CPP timing. Change borded_cpp Dockerfile base from alpine to gcc:latest with apt-based dependencies.
4 lines
73 B
Docker
4 lines
73 B
Docker
FROM gcc:latest
|
|
RUN apt update && apt install -y cmake gdb
|
|
WORKDIR /home
|