Add 'ods/' from commit 'cbb1f78f27b88978de401a0f9d90fbbd396c001f'

git-subtree-dir: ods
git-subtree-mainline: 97402604df
git-subtree-split: cbb1f78f27
This commit is contained in:
2018-01-26 18:36:12 +01:00
35 changed files with 5318 additions and 0 deletions

25
ods/Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
# C++ build environment. Useful with the following script that should
# be run from a repo:
##!/bin/sh
#
#CONTAINER="{CONTAINER:-cc-build:latest}"
#
#docker run -i -t -v $(pwd):/workspace ${CONTAINER} bash
#
# NB: Ubuntu 17.10 seems to be the only common distro with C++17 support.
FROM ubuntu:17.10
MAINTAINER kyle
# install tools
RUN apt-get -y update && apt-get -y install clang-5.0 autoconf automake libtool cmake ninja-build texinfo curl mg
# make the env pick up the correct compilers.
ENV CXX=clang++-5.0
ENV CC=clang-5.0
# set up workspace
RUN mkdir /workspace
WORKDIR /workspace
# start compiling already
CMD "bash"