Skip to content

Commit

Permalink
try adding gcc suffix support 3
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Oct 10, 2023
1 parent 341a961 commit a508f32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _ci-linux-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ elif [[ "${CW_CONFIG:-}" = *'linux'* ]]; then
else
if [ "$(uname -m)" = 'aarch64' ]; then
if [[ "${CW_CONFIG:-}" = *'gcc'* ]]; then
extra="${extra} gcc${GCCSUFF}-x86-64-linux-gnu"
extra="${extra} gcc${GCCSUFF}-x86-64-linux-gnu g++${GCCSUFF}-x86-64-linux-gnu"
else
extra="${extra} libgcc${GCCSUFF}-dev-amd64-cross libstdc++${GCCSUFF}-dev-amd64-cross"
fi
else
if [[ "${CW_CONFIG:-}" = *'gcc'* ]]; then
extra="${extra} gcc${GCCSUFF}-aarch64-linux-gnu"
extra="${extra} gcc${GCCSUFF}-aarch64-linux-gnu g++${GCCSUFF}-aarch64-linux-gnu"
else
extra="${extra} libgcc${GCCSUFF}-dev-arm64-cross libstdc++${GCCSUFF}-dev-arm64-cross"
fi
Expand Down

0 comments on commit a508f32

Please sign in to comment.