Skip to content

Commit

Permalink
Revert "[GR-51231] Backport to 21.3: Build GraalVM on Big sur."
Browse files Browse the repository at this point in the history
This reverts commit c48bb3d, reversing
changes made to 5cc4b5c.
  • Loading branch information
marwan-hallaoui committed Apr 8, 2024
1 parent c48bb3d commit 063ebda
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion common.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ linux-amd64 : ${linux} {
}

darwin-amd64 : ${darwin} {
capabilities : [darwin, amd64, "!darwin_sierra", "!darwin_mojave", "!darwin_catalina"]
capabilities : [darwin, amd64]
}

windows-amd64 : ${windows} {
Expand Down
3 changes: 1 addition & 2 deletions common.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@

darwin:: deps.darwin + self.common + {
os::"darwin",
# Run darwin jobs on Big Sur or later by excluding all older versions
capabilities+: [self.os, "!darwin_sierra", "!darwin_mojave", "!darwin_catalina"],
capabilities+: [self.os],
},

windows:: deps.windows + self.common + {
Expand Down
2 changes: 1 addition & 1 deletion graal-common.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"README": "This file contains definitions that are useful for the hocon and jsonnet CI files of the graal and graal-enterprise repositories.",
"ci": {
"overlay": "6ea7796de526686cea4f2c22f92a3f89d5c3828d"
"overlay": "010ceb18a29c973519013d5ee2b7498b567b6443"
},
"mx_version" : "5.310.0"
}
4 changes: 2 additions & 2 deletions sulong/tests/toolchain-launchers-tests/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2019, 2024, Oracle and/or its affiliates.
# Copyright (c) 2019, 2021, Oracle and/or its affiliates.
#
# All rights reserved.
#
Expand Down Expand Up @@ -91,7 +91,7 @@ endef
CHECK_WRAPPER_SCRIPT= | grep "GraalVM wrapper script" $(QUIETLY_REDIR)

ifeq ($(OS), darwin)
SHARED_FLAGS=-dylib -arch x86_64 -macosx_version_min 10.14.0 -undefined dynamic_lookup
SHARED_FLAGS=-dynamic -dylib -arch x86_64 -macosx_version_min 10.14.0 -lSystem
else
SHARED_FLAGS=--shared
main.out: LDFLAGS+=-Wl,--gc-sections
Expand Down
6 changes: 3 additions & 3 deletions vm/ci_common/common.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ common_vm_darwin: ${common_vm} ${darwin} {
}
environment: {
LANG: en_US.UTF-8
# for compatibility with macOS Big Sur
MACOSX_DEPLOYMENT_TARGET: "11.0"
# for compatibility with macOS Sierra
MACOSX_DEPLOYMENT_TARGET: "10.12"
}
setup: ${common_vm.setup}
}
Expand Down Expand Up @@ -177,7 +177,7 @@ vm_linux_aarch64: ${common_vm_linux} {
}

vm_darwin: ${common_vm_darwin} {
capabilities: [darwin_bigsur, amd64, ram16gb]
capabilities: [darwin_mojave, amd64, ram16gb]
}

vm_windows: ${common_vm_windows} {
Expand Down

0 comments on commit 063ebda

Please sign in to comment.