diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-07 11:33:42 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-07 13:13:26 +0100 |
commit | 2bc0a2253ae69d407427142e3013f71207259537 (patch) | |
tree | 4e7d978e70b3a886fc120f9d935366d3ae900813 /azure | |
parent | cf8dc1c1a2d44f649b35280408d71a67da8f0288 (diff) | |
download | php-git-2bc0a2253ae69d407427142e3013f71207259537.tar.gz |
Enable -msse2 on m32 builder
This helps to catch stack alignment issues in JIT.
Diffstat (limited to 'azure')
-rw-r--r-- | azure/i386/job.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure/i386/job.yml b/azure/i386/job.yml index 37857282ed..abd476a024 100644 --- a/azure/i386/job.yml +++ b/azure/i386/job.yml @@ -10,8 +10,8 @@ jobs: - template: apt.yml - script: | ./buildconf --force - export CFLAGS=-m32 - export CXXFLAGS=-m32 + export CFLAGS="-m32 -msse2" + export CXXFLAGS="-m32 -msse2" export LDFLAGS=-L/usr/lib/i386-linux-gnu export PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config ./configure ${{ parameters.configurationParameters }} \ |