Skip to content

Commit 10cf18c

Browse files
committed
Merge branch 'PHP-7.4'
* PHP-7.4: Manually build re2c on macos
2 parents 53ef244 + 9bbe236 commit 10cf18c

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

azure/macos/brew.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ steps:
77
- script: |
88
brew install pkg-config \
99
autoconf \
10-
bison \
11-
re2c
10+
bison
1211
displayName: 'Install Build Tools'
1312
- script: |
1413
brew install openssl@1.1 \
@@ -34,3 +33,11 @@ steps:
3433
brew upgrade libzip
3534
brew link icu4c gettext --force
3635
displayName: 'Install Build Dependencies'
36+
- script: |
37+
wget https://github.com/skvadrik/re2c/releases/download/2.0.1/re2c-2.0.1.tar.xz
38+
tar -xf re2c-2.0.1.tar.xz
39+
cd re2c-2.0.1
40+
./configure
41+
make -j$(sysctl -n hw.ncpu)
42+
make install
43+
displayName: 'Build re2c'

0 commit comments

Comments
 (0)