Add gcc -m32 to path in Azure

This commit is contained in:
Mamy André-Ratsimbazafy 2020-09-01 10:29:02 +02:00
parent 42e05af698
commit 9976ac70bf
No known key found for this signature in database
GPG Key ID: 7B88AD1FE79492E1
1 changed files with 3 additions and 0 deletions

View File

@ -139,6 +139,9 @@ steps:
EOF EOF
chmod 755 bin/gcc chmod 755 bin/gcc
chmod 755 bin/g++ chmod 755 bin/g++
# Add to path
echo '##vso[task.prependpath]$(System.DefaultWorkingDirectory)/bin'
displayName: 'Install dependencies (i386 Linux)' displayName: 'Install dependencies (i386 Linux)'
condition: and(eq(variables['Agent.OS'], 'Linux'), eq(variables['CPU'], 'i686')) condition: and(eq(variables['Agent.OS'], 'Linux'), eq(variables['CPU'], 'i686'))