Archiconda / build-tools

necessary build tools for the archiconda distribution
BSD 2-Clause "Simplified" License
284 stars 50 forks source link

Lessons learned #1

Open hmaarrfk opened 5 years ago

hmaarrfk commented 5 years ago

Something .ci_support/linux_* has some things that are linux-64 specific, and not always translatable to linux-aarch64

hmaarrfk commented 5 years ago

See toolchain for example

hmaarrfk commented 5 years ago

sometimes you have to specify AR for cmake.

see this PR. https://github.com/conda-forge/zstd-feedstock/pull/20/files

The best way to do it is

     FULL_AR=`which ${AR}`
...
           -DCMAKE_AR=${FULL_AR}              \
hmaarrfk commented 5 years ago

or maybe just

-DCMAKE_AR=`which ${AR}`    \