From 103567b8378def3b00b5522eb9713b3a9e6cf86a Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 4 Aug 2020 10:05:23 +0200 Subject: [PATCH] Build re2c manually on macos --- azure/macos/brew.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/azure/macos/brew.yml b/azure/macos/brew.yml index 02cb736d0262e..fb8b9ace2d19b 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'