Skip to content

Commit

Permalink
[GR-17457] Update macOS 10.12 to 10.13.
Browse files Browse the repository at this point in the history
PullRequest: graal/10061
  • Loading branch information
bjfish committed Oct 13, 2021
2 parents d5d2039 + f2b57ae commit 80d0603
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions espresso/ci_common/common.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];

darwin: self.common + {
environment+: {
// for compatibility with macOS Sierra
MACOSX_DEPLOYMENT_TARGET: '10.12',
// for compatibility with macOS High Sierra
MACOSX_DEPLOYMENT_TARGET: '10.13',
},
capabilities: ['darwin', 'amd64'],
},
Expand Down
6 changes: 3 additions & 3 deletions sulong/mx.sulong/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@
"SULONG_BOOTSTRAP_TOOLCHAIN_NO_HOME",
],
"cmakeConfig" : {
"CMAKE_OSX_DEPLOYMENT_TARGET" : "10.12",
"CMAKE_OSX_DEPLOYMENT_TARGET" : "10.13",
"CMAKE_C_COMPILER" : "<path:SULONG_BOOTSTRAP_TOOLCHAIN_NO_HOME>/bin/<cmd:clang>",
"CMAKE_CXX_COMPILER" : "<path:SULONG_BOOTSTRAP_TOOLCHAIN_NO_HOME>/bin/<cmd:clang++>",
"GRAALVM_LLVM_INCLUDE_DIR" : "<path:com.oracle.truffle.llvm.libraries.graalvm.llvm>/include",
Expand Down Expand Up @@ -704,7 +704,7 @@
"com.oracle.truffle.llvm.libraries.graalvm.llvm",
],
"cmakeConfig" : {
"CMAKE_OSX_DEPLOYMENT_TARGET" : "10.12",
"CMAKE_OSX_DEPLOYMENT_TARGET" : "10.13",
"CMAKE_C_COMPILER" : "<path:SULONG_BOOTSTRAP_TOOLCHAIN_NO_HOME>/bin/<cmd:clang>",
"GRAALVM_LLVM_INCLUDE_DIR" : "<path:com.oracle.truffle.llvm.libraries.graalvm.llvm>/include",
"LLVM_LINK" : "<path:LLVM_TOOLCHAIN>/bin/<exe:llvm-link>",
Expand All @@ -729,7 +729,7 @@
"sdk:LLVM_TOOLCHAIN",
],
"cmakeConfig" : {
"CMAKE_OSX_DEPLOYMENT_TARGET" : "10.12",
"CMAKE_OSX_DEPLOYMENT_TARGET" : "10.13",
"CMAKE_C_COMPILER" : "<path:LLVM_TOOLCHAIN>/bin/<exe:clang>",
"TRUFFLE_NFI_NATIVE_INCLUDE" : "<path:truffle:TRUFFLE_NFI_NATIVE>/include",
"CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS" : "YES",
Expand Down
2 changes: 1 addition & 1 deletion vm/ci_common/common.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ common_vm_darwin: ${common_vm} ${darwin} {
environment: {
LANG: en_US.UTF-8
# for compatibility with macOS Sierra
MACOSX_DEPLOYMENT_TARGET: "10.12"
MACOSX_DEPLOYMENT_TARGET: "10.13"
}
setup: ${common_vm.setup}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ TruffleRuby is actively tested on these systems:

* Ubuntu 16.04 LTS
* Fedora 26
* macOS 10.12
* macOS 10.13

You need to [install LLVM](doc/user/installing-llvm.md) to build and run C
extensions and [`libssl`](doc/user/installing-libssl.md) to use `openssl`. You
Expand Down

0 comments on commit 80d0603

Please sign in to comment.