We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53ef244 + 9bbe236 commit 10cf18cCopy full SHA for 10cf18c
azure/macos/brew.yml
@@ -7,8 +7,7 @@ steps:
7
- script: |
8
brew install pkg-config \
9
autoconf \
10
- bison \
11
- re2c
+ bison
12
displayName: 'Install Build Tools'
13
14
brew install openssl@1.1 \
@@ -34,3 +33,11 @@ steps:
34
33
brew upgrade libzip
35
brew link icu4c gettext --force
36
displayName: 'Install Build Dependencies'
+ - 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