summaryrefslogtreecommitdiff
path: root/azure
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-08-04 10:26:27 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-08-04 10:26:27 +0200
commit10cf18ce6e5ba6f738e804898884b6eacf4c4a26 (patch)
tree178195c90cb04dac31ae9ac0d94ff20d15479488 /azure
parent53ef2449238ea47316b3334e807c44dbaca45d0c (diff)
parent9bbe236f6adead060d83c87a581674f4917db3de (diff)
downloadphp-git-10cf18ce6e5ba6f738e804898884b6eacf4c4a26.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Manually build re2c on macos
Diffstat (limited to 'azure')
-rw-r--r--azure/macos/brew.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/azure/macos/brew.yml b/azure/macos/brew.yml
index 02cb736d02..fb8b9ace2d 100644
--- a/azure/macos/brew.yml
+++ b/azure/macos/brew.yml
@@ -7,8 +7,7 @@ steps:
- script: |
brew install pkg-config \
autoconf \
- bison \
- re2c
+ bison
displayName: 'Install Build Tools'
- script: |
brew install openssl@1.1 \
@@ -34,3 +33,11 @@ steps:
brew upgrade libzip
brew link icu4c gettext --force
displayName: 'Install Build Dependencies'
+ - script: |
+ wget https://github.com/skvadrik/re2c/releases/download/2.0.1/re2c-2.0.1.tar.xz
+ tar -xf re2c-2.0.1.tar.xz
+ cd re2c-2.0.1
+ ./configure
+ make -j$(sysctl -n hw.ncpu)
+ make install
+ displayName: 'Build re2c'