Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion array/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"targets": {
"array_js.mbt": ["js"],
"array_nonjs.mbt": ["not", "js"],
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion bench/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"targets": {
"monotonic_clock_js.mbt": ["js"],
"monotonic_clock_wasm.mbt": ["wasm", "wasm-gc"],
"monotonic_clock_native.mbt": ["native"]
"monotonic_clock_native.mbt": ["native", "llvm"]
},
"import": [
"moonbitlang/core/builtin",
Expand Down
6 changes: 3 additions & 3 deletions builtin/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"bigint_nonjs_wbtest.mbt": ["not", "js"],
"arraycore_js.mbt": ["js"],
"arraycore_nonjs.mbt": ["not", "js"],
"panic_test.mbt": ["not", "native"],
"panic_wbtest.mbt": ["not", "native"],
"panic_test.mbt": ["not", "native", "llvm"],
"panic_wbtest.mbt": ["not", "native", "llvm"],
"panic_nonjs_test.mbt": ["wasm", "wasm-gc"],
"array_nonjs_test.mbt": ["not", "js"],
"stringbuilder_buffer.mbt": ["not", "js"],
"stringbuilder_concat.mbt": ["js"],
"double_to_int64_js.mbt": ["js"],
"double_to_int64_native.mbt": ["native"],
"double_to_int64_native.mbt": ["native", "llvm"],
"double_to_int64_wasm.mbt": ["wasm", "wasm-gc"],
"double_to_int.mbt": ["not", "wasm", "wasm-gc"],
"double_to_int_wasm.mbt": ["wasm", "wasm-gc"]
Expand Down
2 changes: 1 addition & 1 deletion deque/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"moonbitlang/core/json"
],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
},
"test-import": [
"moonbitlang/core/array"
Expand Down
2 changes: 1 addition & 1 deletion env/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"targets": {
"env_wasm.mbt": ["wasm", "wasm-gc"],
"env_js.mbt": ["js"],
"env_native.mbt": ["native"]
"env_native.mbt": ["native", "llvm"]
}
}
6 changes: 4 additions & 2 deletions immut/array/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
"targets": {
"panic_test.mbt": [
"not",
"native"
"native",
"llvm"
],
"panic_wbtest.mbt": [
"not",
"native"
"native",
"llvm"
]
}
}
5 changes: 1 addition & 4 deletions immut/list/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"moonbitlang/core/double"
],
"targets": {
"panic_test.mbt": [
"not",
"native"
]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion immut/priority_queue/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
],
"test-import": ["moonbitlang/core/random"],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion immut/sorted_map/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"moonbitlang/core/json"
],
"targets": {
"panic_wbtest.mbt": ["not", "native"]
"panic_wbtest.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion immut/sorted_set/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"moonbitlang/core/json"
],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion option/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"moonbitlang/core/quickcheck/splitmix"
],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion priority_queue/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
],
"test-import": ["moonbitlang/core/random"],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion queue/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"import": ["moonbitlang/core/builtin", "moonbitlang/core/quickcheck"],
"test-import": ["moonbitlang/core/array"],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion result/moon.pkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"import": ["moonbitlang/core/builtin", "moonbitlang/core/quickcheck"],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}
2 changes: 1 addition & 1 deletion string/moon.pkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"import": ["moonbitlang/core/builtin", "moonbitlang/core/char"],
"test-import": ["moonbitlang/core/list", "moonbitlang/core/json"],
"targets": {
"panic_test.mbt": ["not", "native"]
"panic_test.mbt": ["not", "native", "llvm"]
}
}