ricejasonf / cppdock

Docker Based C++ Dependency and Build Management

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CppDock

Manage and build C++ dependencies within a Docker container

This project is a work in progress.

Overview

CppDock is just a tiny python script that uses a JSON config file to specify project specific values and platform specific dependencies based on GitHub.

In the simple my_app example, running cppdock build linux_x64 will create a Docker image called my_app_deps:linux_64.

Lock Library Dependencies to Specific Revisions Automatically

In a local cppdock.json file you can specify repos of libraries and cppdock automatically sets the SHA of the revision so there are no unexpected changes.

{
  "cppdock": {
    "name": "nbdl"
  },
  "platforms": {
    "develop": {
      "type": "linux_x64",
      "deps": [
        [
          {
            "name": "boostorg/callable_traits",
            "tag": "master"
          }
        ],

Run cppdock init and cppdock.json is updated in place automatically to the current revision for that branch or tag or HEAD.

{
  "cppdock": {
    "name": "nbdl"
  },
  "platforms": {
    "develop": {
      "type": "linux_x64",
      "deps": [
        [
          {
            "name": "boostorg/callable_traits",
            "revision": "684dfbd7dfbdd0438ef3670be10002ca33a71715",
            "tag": "master"
          }
        ],

To update a library simply delete the "revision" property. Then run cppdock init again.

The great thing about this is that the builds for each library are cached by Docker so it only rebuilds a library when the revision has changed.

This also creates a more disciplined approach to dependency management that doesn't rely on third parties creating release tags.

Custom Recipes

Recipes are just bash scripts that are run in a Docker container.

The default recipe assumes a typical CMake build:

#!/bin/bash

mkdir build && cd build \
&& cmake \
    -DCMAKE_TOOLCHAIN_FILE=/opt/toolchain.cmake \
    -DCMAKE_INSTALL_PREFIX=/opt/install \
    -DCMAKE_BUILD_TYPE=Release \
    .. \
&& make install

Custom recipes can be placed in your project's ./cppdock_recipes directory.

Consider the following as an example describing recipe resolution.

./cppdock_recipes/chriskohlhoff-asio-linux_x64
./cppdock_recipes/chriskohlhoff-asio
./cppdock_recipes/default
{Then resolves using builtin recipes}

As you can see a platform specific recipe is the first in the order of resolution where the platform in this case is linux_x64.

Note that every build should install to /opt/install.

Custom Compilers and SDKs

CppDock is built specifically for cross-compiling and it supports custom build environments by letting the user specify the Docker image to use for each.

Consider the following setup for a hypothetical mydroid platform:

{
  "cppdock": {
    "name": "nbdl" /* Project name */
  },
  "platforms": {
    "develop": { /* The name of the platform */
      "type": "linux_arm", /* The type of the platform (used in recipe name) */
      "base_image": "my_droid_sdk", /* optionally specify name of docker image */
      "deps": [
        [
          {
            "name": "boostorg/callable_traits",
            "revision": "684dfbd7dfbdd0438ef3670be10002ca33a71715",
            "tag": "master"
          }
        ],
      ]
    },
  }
}

The platform base image should have any build tools required such as CMake or Python as well as an /opt/toolchain.cmake if you are relying on any default CMake recipes.

About

Docker Based C++ Dependency and Build Management


Languages

Language:C 93.8%Language:Python 4.1%Language:CMake 1.1%Language:Objective-C 0.7%Language:Shell 0.2%Language:Makefile 0.1%Language:Dockerfile 0.0%