Nathan Skrzypczak | 66f2a88 | 2019-07-31 17:57:58 +0200 | [diff] [blame] | 1 | .. _cross_compile_macos : |
| 2 | |
| 3 | Cross compilation on MacOS |
| 4 | ========================== |
| 5 | |
| 6 | This is a first attempt to support Cross compilation of VPP on MacOS for development (linting, completion, compile_commands.json) |
| 7 | |
| 8 | |
| 9 | **Prerequisites** |
| 10 | |
| 11 | * You'll need to install the following packages |
| 12 | |
| 13 | .. code-block:: bash |
| 14 | |
| 15 | pip3 install ply |
| 16 | brew install diffutils gnu-sed pkg-config ninja crosstool-ng |
| 17 | |
| 18 | * You'll also need to install ``gnu-ident 2.2.11`` to be able to ``make checkstyle``. You can get it from `GNU <https://www.gnu.org/prep/ftp.html>`_ |
| 19 | * You should link the binaries to make them available in your path with their original names e.g. : |
| 20 | |
| 21 | .. code-block:: bash |
| 22 | |
| 23 | ln -s $(which gsed) /usr/local/bin/sed |
| 24 | ln -s $(which gindent) /usr/local/bin/indent |
| 25 | ln -s /usr/local/Cellar/diffutils/3.7/bin/diff /usr/local/bin/diff |
| 26 | |
| 27 | |
| 28 | **Setup** |
| 29 | |
| 30 | * Create a `cross compile toolchain <https://crosstool-ng.github.io/>`_ |
| 31 | * Create a case sensitive volume and mount the toolchain in it e.g. in ``/Volumes/xchain`` |
| 32 | * Create a xchain.toolchain file with ``$VPP_DIR/extras/scripts/cross_compile_macos.sh conf /Volumes/xchan`` |
| 33 | |
| 34 | For now we don't support e-build so dpdk, rdma, quicly won't be compiled as part of ``make build`` |
| 35 | |
| 36 | To build with the toolchain do: |
| 37 | |
| 38 | .. code-block:: bash |
| 39 | |
| 40 | $VPP_DIR/extras/scripts/cross_compile_macos.sh build |
| 41 | |
| 42 | |
| 43 | To get the compile_commands.json do |
| 44 | |
| 45 | .. code-block:: bash |
| 46 | |
| 47 | $VPP_DIR/extras/scripts/cross_compile_macos.sh cc |
| 48 | # >> ./build-root/build-vpp[_debug]-native/vpp/compile_commands.json |
| 49 | |
| 50 | |
| 51 | |
| 52 | This should build vpp on MacOS |
| 53 | |
| 54 | |
| 55 | Good luck :) |
| 56 | |
| 57 | |