mlpack

πŸ”— Setting up an mlpack cross-compilation environment

The following table contains a list of different architectures that you can compile or cross compile mlpack to. This page assumes that you have a functional operating system (e.g., Linux, MacOS, Windows) with compatible ABI on both the host and the target. In addition, your objective is to create an embedded ABI (eabi). For now, this guide does not support none-eabi or bare-metal C/C++. The following table refers only to possible values of BOARD_NAME CMake flag that needs to be specified before the compilation process starts.

If your device has a fully functional package manager such as apt (for Debian systems), and you have enough RAM on your embedded device (e.g., RAM > 4GB), then you will probably be able to compile directly on the device. However, if this is not the case, then you will need to follow these instructions for cross-compilation.

Setting up the cross compilation toolchain is generally easy, especially when using bootlin toolchains; but other toolchains work too. Once you have the toolchain set up, then you need to identify two parameters to configure mlpack with CMake:

For more detailed information on these options see this tutorial.

You can use the table below with your desired architecture to find links to appropriate Bootlin toolchains, plus the TOOLCHAIN_PREFIX and CMAKE_SYSROOT options you can use with those toolchains. If you have provided your own toolchain, you will need to adapt the options accordingly.

Once you have found the correct TOOLCHAIN_PREFIX and CMAKE_SYSROOT options, adapt the CMake command below. Don’t forget to change /path/to/bootlin/toolchain/ to the correct path on your system!

cmake \
    -DBUILD_TESTS=ON \
    -DBOARD_NAME=(Check the following table) \
    -DCMAKE_CROSSCOMPILING=ON \
    -DCMAKE_TOOLCHAIN_FILE=../CMake/crosscompile-toolchain.cmake \
    -DTOOLCHAIN_PREFIX=(Check the following table) \
    -DCMAKE_SYSROOT=(Check the following table) \
    ../
BOARD_NAME link to crosscompiler CMake command Example applications
ARM11 Bootlin toolchain link Sysroot and toolchain prefix ARM11 on Wikipedia
CORTEXA7 Bootlin toolchain link Sysroot and toolchain prefix Cortex A7 on Wikipedia
CORTEXA8 Bootlin toolchain link Sysroot and toolchain prefix Cortex A8 on Wikipedia
CORTEXA9 Bootlin toolchain link Sysroot and toolchain prefix Cortex A9 on Wikipedia
CORTEXA15 Bootlin toolchain link Sysroot and toolchain prefix Cortex A15 on Wikipedia
CORTEXA53 Bootlin toolchain link Sysroot and toolchain prefix Cortex A53 on Wikipedia
CORTEXA72 Bootlin toolchain link Sysroot and toolchain prefix Cortex A72 on Wikipedia
CORTEXA76 Bootlin toolchain link Sysroot and toolchain prefix Cortex A76 on Wikipedia
C906 Bootlin toolchain link Sysroot and toolchain prefix C906 on riscv
x280 Bootlin toolchain link Sysroot and toolchain prefix x280 on SiFive
KATAMI Bootlin toolchain link Sysroot and toolchain prefix Pentium 3 on Wikipedia
NORTHWOOD Bootlin toolchain link Sysroot and toolchain prefix Pentium 4 on Wikipedia
COPPERMINE Bootlin toolchain link Sysroot and toolchain prefix Pentium 3 on Wikipedia

If you didn’t see your architecture in the table above, use the closest architecture with a similar word size, or, adapt the parameters directly in CMake/crosscompile-arch-config.cmake and feel free to open a pull request so we can get the new architecture added to this table.

πŸ”— ARM11

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/armv6-eabihf--glibc--stable-2024.02-1/bin/arm-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/armv6-eabihf--glibc--stable-2024.02-1/arm-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA7

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/bin/arm-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/arm-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA8

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/bin/arm-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/arm-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA9

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/bin/arm-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/arm-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA15

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/bin/arm-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/armv7-eabihf--glibc--stable-2024.02-1/arm-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA53

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/aarch64--glibc--stable-2024.02-1/bin/aarch64-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/aarch64--glibc--stable-2024.02-1/aarch64-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA72

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/aarch64--glibc--stable-2024.02-1/bin/aarch64-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/aarch64--glibc--stable-2024.02-1/aarch64-buildroot-linux-gnueabihf/sysroot

πŸ”— CORTEXA76

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/aarch64--glibc--stable-2024.02-1/bin/aarch64-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/aarch64--glibc--stable-2024.02-1/aarch64-buildroot-linux-gnueabihf/sysroot

πŸ”— C906

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/riscv64-lp64d--glibc--stable-2024.02-1/bin/riscv64-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/riscv64-lp64d--glibc--stable-2024.02-1/riscv64-buildroot-linux-gnueabihf/sysroot

πŸ”— x280

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/riscv64-lp64d--glibc--stable-2024.02-1/bin/riscv64-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/riscv64-lp64d--glibc--stable-2024.02-1/riscv64-buildroot-linux-gnueabihf/sysroot

πŸ”— KATAMI

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/x86-i686--glibc--stable-2024.02-1/bin/x86-i686-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/x86-i686--glibc--stable-2024.02-1/x86-i686-buildroot-linux-gnueabihf/sysroot

πŸ”— NORTHWOOD

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/x86-64--glibc--stable-2024.02-1/bin/x86-64-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/x86-64--glibc--stable-2024.02-1/x86-64-buildroot-linux-gnueabihf/sysroot

πŸ”— COPPERMINE

-DTOOLCHAIN_PREFIX=/path/to/bootlin/toolchain/x86-i686--glibc--stable-2024.02-1/bin/x86-i686-buildroot-linux-gnueabihf-
-DCMAKE_SYSROOT=/path/to/bootlin/toolchain/x86-i686--glibc--stable-2024.02-1/x86-i686-buildroot-linux-gnueabihf/sysroot