fix Identifiers that start with '__' or '_[A-Z]' are reserved.

fix compiling with nuc family
This commit is contained in:
hathach
2025-10-28 13:21:38 +07:00
parent 417f44acab
commit d92b810df7
120 changed files with 400 additions and 401 deletions

View File

@ -33,7 +33,7 @@ runs:
env:
TOOLCHAIN: ${{ inputs.toolchain }}
run: |
TOOLCHAIN_URL=$(jq -r '."$TOOLCHAIN"' .github/actions/setup_toolchain/toolchain.json)
TOOLCHAIN_URL=$(jq -r --arg tc "$TOOLCHAIN" '.[$tc]' .github/actions/setup_toolchain/toolchain.json)
echo "toolchain_url=$TOOLCHAIN_URL"
echo "toolchain_url=$TOOLCHAIN_URL" >> $GITHUB_OUTPUT
shell: bash