-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b01ec9
commit 8bb24da
Showing
27 changed files
with
165 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 | ||
56116 562949955104260 1691117041000000000 1b0d1c80b5d285db3599ef03d646eb46 1 libc\mingw\lib-common\ntdll.def.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0 | ||
35154 562949955104229 1691117041000000000 d5bfdda44216aa5c504c9e54af3b567b 1 libc\mingw\lib-common\kernel32.def.in |
Empty file.
Empty file.
97 changes: 97 additions & 0 deletions
97
riscv_rt/zig-cache/o/35c8925609dd628e88a604ae6f840a50/builtin.zig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
const std = @import("std"); | ||
/// Zig version. When writing code that supports multiple versions of Zig, prefer | ||
/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version checks. | ||
pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch unreachable; | ||
pub const zig_version_string = "0.11.0"; | ||
pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm; | ||
|
||
pub const output_mode = std.builtin.OutputMode.Exe; | ||
pub const link_mode = std.builtin.LinkMode.Static; | ||
pub const is_test = false; | ||
pub const single_threaded = false; | ||
pub const abi = std.Target.Abi.gnu; | ||
pub const cpu: std.Target.Cpu = .{ | ||
.arch = .x86_64, | ||
.model = &std.Target.x86.cpu.skylake, | ||
.features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{ | ||
.@"64bit", | ||
.adx, | ||
.aes, | ||
.allow_light_256_bit, | ||
.avx, | ||
.avx2, | ||
.bmi, | ||
.bmi2, | ||
.clflushopt, | ||
.cmov, | ||
.crc32, | ||
.cx16, | ||
.cx8, | ||
.ermsb, | ||
.f16c, | ||
.false_deps_popcnt, | ||
.fast_15bytenop, | ||
.fast_gather, | ||
.fast_scalar_fsqrt, | ||
.fast_shld_rotate, | ||
.fast_variable_crosslane_shuffle, | ||
.fast_variable_perlane_shuffle, | ||
.fast_vector_fsqrt, | ||
.fma, | ||
.fsgsbase, | ||
.fxsr, | ||
.idivq_to_divl, | ||
.invpcid, | ||
.lzcnt, | ||
.macrofusion, | ||
.mmx, | ||
.movbe, | ||
.nopl, | ||
.pclmul, | ||
.popcnt, | ||
.prfchw, | ||
.rdrnd, | ||
.rdseed, | ||
.rtm, | ||
.sahf, | ||
.sgx, | ||
.slow_3ops_lea, | ||
.sse, | ||
.sse2, | ||
.sse3, | ||
.sse4_1, | ||
.sse4_2, | ||
.ssse3, | ||
.vzeroupper, | ||
.x87, | ||
.xsave, | ||
.xsavec, | ||
.xsaveopt, | ||
.xsaves, | ||
}), | ||
}; | ||
pub const os = std.Target.Os{ | ||
.tag = .windows, | ||
.version_range = .{ .windows = .{ | ||
.min = .win10_fe, | ||
.max = .win10_fe, | ||
}}, | ||
}; | ||
pub const target = std.Target{ | ||
.cpu = cpu, | ||
.os = os, | ||
.abi = abi, | ||
.ofmt = object_format, | ||
}; | ||
pub const object_format = std.Target.ObjectFormat.coff; | ||
pub const mode = std.builtin.Mode.Debug; | ||
pub const link_libc = false; | ||
pub const link_libcpp = false; | ||
pub const have_error_return_tracing = true; | ||
pub const valgrind_support = true; | ||
pub const sanitize_thread = false; | ||
pub const position_independent_code = true; | ||
pub const position_independent_executable = false; | ||
pub const strip_debug_info = false; | ||
pub const code_model = std.builtin.CodeModel.default; | ||
pub const omit_frame_pointer = false; |
4 changes: 4 additions & 0 deletions
4
riscv_rt/zig-cache/o/74c27f1902f95e35c91bb05395a1a801/dependencies.zig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pub const imports = struct { | ||
}; | ||
pub const build_root = struct { | ||
}; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package moonbitlang/minimbt/bin | ||
package breakinglead/moonbite/bin | ||
|
||
// Values | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"import": [ | ||
{ | ||
"path": "moonbitlang/minimbt", | ||
"path": "breakinglead/moonbite", | ||
"alias": "types" | ||
}, | ||
"moonbitlang/minimbt/knf", | ||
"moonbitlang/minimbt/util" | ||
"breakinglead/moonbite/knf", | ||
"breakinglead/moonbite/util" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"import": [ | ||
{ | ||
"path": "moonbitlang/minimbt", | ||
"path": "breakinglead/moonbite", | ||
"alias": "types" | ||
}, | ||
"moonbitlang/minimbt/util" | ||
"breakinglead/moonbite/util" | ||
], | ||
"test-import": [ | ||
"moonbitlang/minimbt/parser", | ||
"moonbitlang/minimbt/lex", | ||
"moonbitlang/minimbt/typing" | ||
"breakinglead/moonbite/parser", | ||
"breakinglead/moonbite/lex", | ||
"breakinglead/moonbite/typing" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"import": [ | ||
"moonbitlang/minimbt/knf", | ||
"breakinglead/moonbite/knf", | ||
{ | ||
"path": "moonbitlang/minimbt", | ||
"path": "breakinglead/moonbite", | ||
"alias": "types" | ||
}, | ||
"moonbitlang/minimbt/util" | ||
"breakinglead/moonbite/util" | ||
], | ||
"test-import": [ | ||
"moonbitlang/minimbt/parser", | ||
"moonbitlang/minimbt/lex", | ||
"moonbitlang/minimbt/typing" | ||
"breakinglead/moonbite/parser", | ||
"breakinglead/moonbite/lex", | ||
"breakinglead/moonbite/typing" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package moonbitlang/minimbt/lex | ||
package breakinglead/moonbite/lex | ||
|
||
// Values | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package moonbitlang/minimbt | ||
package breakinglead/moonbite | ||
|
||
// Values | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"import": [ | ||
"moonbitlang/minimbt/util" | ||
"breakinglead/moonbite/util" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"import": [ | ||
"moonbitlang/minimbt/lex", | ||
"breakinglead/moonbite/lex", | ||
{ | ||
"path": "moonbitlang/minimbt", | ||
"path": "breakinglead/moonbite", | ||
"alias": "types" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package moonbitlang/minimbt/parser | ||
package breakinglead/moonbite/parser | ||
|
||
// Values | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"import": [ | ||
"moonbitlang/minimbt/closure", | ||
"breakinglead/moonbite/closure", | ||
{ | ||
"path": "moonbitlang/minimbt", | ||
"path": "breakinglead/moonbite", | ||
"alias": "typing" | ||
}, | ||
"moonbitlang/minimbt/util", | ||
"breakinglead/moonbite/util", | ||
"lijunchen/unstable_io/env" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"import": [ | ||
{ | ||
"path": "moonbitlang/minimbt", | ||
"path": "breakinglead/moonbite", | ||
"alias": "types" | ||
} | ||
], | ||
"test-import": [ | ||
"moonbitlang/minimbt/lex", | ||
"moonbitlang/minimbt/parser" | ||
"breakinglead/moonbite/lex", | ||
"breakinglead/moonbite/parser" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package moonbitlang/minimbt/typing | ||
package breakinglead/moonbite/typing | ||
|
||
// Values | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package moonbitlang/minimbt/util | ||
package breakinglead/moonbite/util | ||
|
||
// Values | ||
fn die[T](String) -> T | ||
|