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.
1 parent 733b4fd commit e99cbb1Copy full SHA for e99cbb1
.vsts.pipelines/steps/setup-macos-native.yml
@@ -24,10 +24,7 @@ steps:
24
brew upgrade openssl || true
25
brew upgrade pkgconfig || true
26
brew upgrade cmake || true
27
-
28
- brew link --force icu4c
29
- brew_openssl_paths=$(brew info openssl | cut -d ' ' -f 1 | grep '^/.*/openssl/')
30
- # Use 'for' to get last/latest openssl install dir.
31
- for openssl_path in $brew_openssl_paths; do :; done
32
- setvariable OPENSSL_ROOT_DIR "$openssl_path"
+ ln -s /usr/local/opt/openssl/lib/pkgconfig/libcrypto.pc /usr/local/lib/pkgconfig/
+ ln -s /usr/local/opt/openssl/lib/pkgconfig/libssl.pc /usr/local/lib/pkgconfig/
+ ln -s /usr/local/opt/openssl/lib/pkgconfig/openssl.pc /usr/local/lib/pkgconfig/
33
displayName: Install native dependencies
0 commit comments