Skip to content

Commit

Permalink
try adding gcc suffix support 6
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Oct 10, 2023
1 parent eb4c23f commit 3f994a0
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 @@ -23,7 +23,7 @@ if [[ "${CW_CONFIG:-}" = *'win'* ]]; then
extra="${extra} nasm"
fi
elif [[ "${CW_CONFIG:-}" = *'linux'* ]]; then
[ -n "${CW_GCCSUFFIX:-}" ] || export CW_GCCSUFFIX='-13'
[ -n "${CW_GCCSUFFIX:-}" ] || CW_GCCSUFFIX='-13'
extra="${extra} checksec"
if [[ "${CW_CONFIG:-}" = *'musl'* ]]; then
extra="${extra} musl musl-dev musl-tools"
Expand All @@ -50,7 +50,7 @@ elif [[ "${CW_CONFIG:-}" = *'linux'* ]]; then
fi
if [[ "${CW_CONFIG:-}" = *'gcc'* ]]; then
extra="${extra} gcc${CW_GCCSUFFIX} g++${CW_GCCSUFFIX}"
CW_CCSUFFIX="${CW_GCCSUFFIX}"
export CW_CCSUFFIX="${CW_GCCSUFFIX}"
fi
fi

Expand Down

0 comments on commit 3f994a0

Please sign in to comment.