mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-03-03 07:51:45 +00:00
WinXP CI build: use x87 FPU (#1083)
This commit is contained in:
parent
88e039efeb
commit
a9d555ff50
1 changed files with 7 additions and 3 deletions
|
@ -24,11 +24,15 @@ jobs:
|
||||||
gtk-bundle: $(gtk-bundle-x86)
|
gtk-bundle: $(gtk-bundle-x86)
|
||||||
libsndfile-url: $(libsndfile-url-x86)
|
libsndfile-url: $(libsndfile-url-x86)
|
||||||
artifact-prefix: "fluidsynth"
|
artifact-prefix: "fluidsynth"
|
||||||
|
CFLAGS: "/arch:IA32"
|
||||||
|
CXXFLAGS: "/arch:IA32"
|
||||||
x64:
|
x64:
|
||||||
platform: x64
|
platform: x64
|
||||||
gtk-bundle: $(gtk-bundle-x64)
|
gtk-bundle: $(gtk-bundle-x64)
|
||||||
libsndfile-url: $(libsndfile-url-x64)
|
libsndfile-url: $(libsndfile-url-x64)
|
||||||
artifact-prefix: "fluidsynth"
|
artifact-prefix: "fluidsynth"
|
||||||
|
CFLAGS: ""
|
||||||
|
CXXFLAGS: ""
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'windows-2019'
|
vmImage: 'windows-2019'
|
||||||
steps:
|
steps:
|
||||||
|
@ -38,7 +42,7 @@ jobs:
|
||||||
# https://dev.azure.com/tommbrt/_apis/projects?api-version=5.0
|
# https://dev.azure.com/tommbrt/_apis/projects?api-version=5.0
|
||||||
project: 'd3638885-de4a-4ce7-afe7-f237ae461c07'
|
project: 'd3638885-de4a-4ce7-afe7-f237ae461c07'
|
||||||
pipeline: 1
|
pipeline: 1
|
||||||
artifactName: libinstpatch-$(platform)
|
artifactName: libinstpatch-XP-$(platform)
|
||||||
downloadPath: '$(Build.ArtifactStagingDirectory)'
|
downloadPath: '$(Build.ArtifactStagingDirectory)'
|
||||||
displayName: 'Get libinstpatch'
|
displayName: 'Get libinstpatch'
|
||||||
- script: |
|
- script: |
|
||||||
|
@ -52,11 +56,11 @@ jobs:
|
||||||
REM need to fix the naming of libsndfile otherwise the linker won't find it
|
REM need to fix the naming of libsndfile otherwise the linker won't find it
|
||||||
mv lib\libsndfile-1.lib lib\sndfile.lib || exit -1
|
mv lib\libsndfile-1.lib lib\sndfile.lib || exit -1
|
||||||
mv lib\libsndfile-1.def lib\sndfile.def || exit -1
|
mv lib\libsndfile-1.def lib\sndfile.def || exit -1
|
||||||
cd $(Build.ArtifactStagingDirectory)\libinstpatch-$(platform)
|
cd $(Build.ArtifactStagingDirectory)\libinstpatch-XP-$(platform)
|
||||||
cp -rf * d:\deps\
|
cp -rf * d:\deps\
|
||||||
mv -f * ..
|
mv -f * ..
|
||||||
cd ..
|
cd ..
|
||||||
rmdir $(Build.ArtifactStagingDirectory)\libinstpatch-$(platform)\
|
rmdir $(Build.ArtifactStagingDirectory)\libinstpatch-XP-$(platform)\
|
||||||
DEL /F C:\Strawberry\perl\bin\pkg-config.bat
|
DEL /F C:\Strawberry\perl\bin\pkg-config.bat
|
||||||
displayName: 'Prerequisites'
|
displayName: 'Prerequisites'
|
||||||
- script: |
|
- script: |
|
||||||
|
|
Loading…
Reference in a new issue