We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 224d53d commit 03b0695Copy full SHA for 03b0695
1 file changed
.github/workflows/precompile.yml
@@ -59,11 +59,14 @@ jobs:
59
done
60
61
- name: Install GNU cross-compilers
62
+ # cc_precompiler requires BOTH ${prefix}gcc and ${prefix}g++ for a
63
+ # target to be considered available, so we install the g++ packages
64
+ # alongside the gcc packages even though our NIF is pure C.
65
run: |
66
sudo apt-get update
- sudo apt-get install -y gcc make curl tar \
- gcc-aarch64-linux-gnu \
- gcc-arm-linux-gnueabihf
67
+ sudo apt-get install -y gcc g++ make curl tar \
68
+ gcc-aarch64-linux-gnu g++-aarch64-linux-gnu \
69
+ gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
70
71
- run: mix deps.get
72
0 commit comments