Skip to content

Commit

Permalink
Add license and README files to base GraalVM CE artifacts [GR-54230].
Browse files Browse the repository at this point in the history
  • Loading branch information
ansalond committed May 22, 2024
1 parent e028ae7 commit a64dc4e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion vm/mx.vm/ce
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DYNAMIC_IMPORTS=/sdk,/truffle,/compiler,/substratevm
COMPONENTS=cmp,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
COMPONENTS=cmp,gvm,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
NATIVE_IMAGES=lib:jvmcicompiler,lib:native-image-agent,lib:native-image-diagnostics-agent,native-image
NON_REBUILDABLE_IMAGES=lib:jvmcicompiler
DISABLE_INSTALLABLES=False
2 changes: 1 addition & 1 deletion vm/mx.vm/ce-aarch64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DYNAMIC_IMPORTS=/sdk,/truffle,/compiler,/substratevm
COMPONENTS=cmp,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
COMPONENTS=cmp,gvm,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
NATIVE_IMAGES=lib:jvmcicompiler,lib:native-image-agent,lib:native-image-diagnostics-agent,native-image
NON_REBUILDABLE_IMAGES=lib:jvmcicompiler
DISABLE_INSTALLABLES=False
2 changes: 1 addition & 1 deletion vm/mx.vm/ce-darwin
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DYNAMIC_IMPORTS=/sdk,/truffle,/compiler,/substratevm
COMPONENTS=cmp,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
COMPONENTS=cmp,gvm,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
NATIVE_IMAGES=lib:jvmcicompiler,lib:native-image-agent,lib:native-image-diagnostics-agent,native-image
NON_REBUILDABLE_IMAGES=lib:jvmcicompiler
DISABLE_INSTALLABLES=False
2 changes: 1 addition & 1 deletion vm/mx.vm/ce-darwin-aarch64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DYNAMIC_IMPORTS=/sdk,/truffle,/compiler,/substratevm
COMPONENTS=cmp,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
COMPONENTS=cmp,gvm,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
NATIVE_IMAGES=lib:jvmcicompiler,lib:native-image-agent,lib:native-image-diagnostics-agent,native-image
NON_REBUILDABLE_IMAGES=lib:jvmcicompiler
DISABLE_INSTALLABLES=False
2 changes: 1 addition & 1 deletion vm/mx.vm/ce-win
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DYNAMIC_IMPORTS=/sdk,/truffle,/compiler,/substratevm
COMPONENTS=cmp,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
COMPONENTS=cmp,gvm,lg,ni,nic,nil,sdkni,svm,svmt,svmsl,tflc,tflsm
NATIVE_IMAGES=lib:jvmcicompiler,lib:native-image-agent,lib:native-image-diagnostics-agent,native-image
NON_REBUILDABLE_IMAGES=lib:jvmcicompiler
DISABLE_INSTALLABLES=False
2 changes: 1 addition & 1 deletion vm/mx.vm/mx_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def local_path_to_url(args):
llvm_components = ['bgraalvm-native-binutil', 'bgraalvm-native-clang', 'bgraalvm-native-clang-cl', 'bgraalvm-native-clang++', 'bgraalvm-native-flang', 'bgraalvm-native-ld']

# pylint: disable=line-too-long
ce_unchained_components = ['bnative-image-configure', 'cmp', 'lg', 'ni', 'nic', 'nil', 'nr_lib_jvmcicompiler', 'sdkc', 'sdkni', 'svm', 'svmsl', 'svmt', 'tflc', 'tflsm']
ce_unchained_components = ['bnative-image-configure', 'cmp', 'gvm', 'lg', 'ni', 'nic', 'nil', 'nr_lib_jvmcicompiler', 'sdkc', 'sdkni', 'svm', 'svmsl', 'svmt', 'tflc', 'tflsm']
ce_components_minimal = ['bpolyglot', 'cmp', 'cov', 'dap', 'gvm', 'ins', 'insight', 'insightheap', 'lg', 'libpoly', 'lsp', 'nfi-libffi', 'nfi', 'poly', 'polynative', 'pro', 'sdk', 'sdkni', 'sdkc', 'sdkl', 'spolyglot', 'tfl', 'tfla', 'tflc', 'tflm', 'truffle-json']
ce_components = ce_components_minimal + ['nr_lib_jvmcicompiler', 'bnative-image-configure', 'ni', 'nic', 'nil', 'svm', 'svmt', 'svmnfi', 'svmsl']
ce_python_components = ['antlr4', 'sllvmvm', 'bpolybench', 'bpolyglot', 'cmp', 'cov', 'dap', 'dis', 'gvm', 'icu4j', 'xz', 'ins', 'insight', 'insightheap', 'lg', 'libpoly', 'llp', 'llrc', 'llrl', 'llrlf', 'llrn', 'lsp', 'nfi-libffi', 'nfi', 'pbm', 'pmh', 'poly', 'polynative', 'pro', 'pyn', 'pynl', 'rgx', 'sdk', 'sdkni', 'sdkc', 'sdkl', 'spolyglot', 'tfl', 'tfla', 'tflc', 'tflm', 'truffle-json']
Expand Down

0 comments on commit a64dc4e

Please sign in to comment.