diff options
| author | Jacob G-W <jacoblevgw@gmail.com> | 2023-06-14 15:39:40 -0400 |
|---|---|---|
| committer | Jacob G-W <jacoblevgw@gmail.com> | 2023-06-16 08:34:30 -0400 |
| commit | 4dac9f54ddfcd6036b8b2b0704d0b9aa3ed9bd6d (patch) | |
| tree | 3e878f77b95a1f6ddb1b6ff368f32ac327a90549 /lib/std/start.zig | |
| parent | 153def146038efd62eaea1b8ed2fdd11f38cf6ef (diff) | |
| download | zig-4dac9f54ddfcd6036b8b2b0704d0b9aa3ed9bd6d.tar.gz zig-4dac9f54ddfcd6036b8b2b0704d0b9aa3ed9bd6d.zip | |
plan9: flesh out stdlib enough to allow not using simplified start logic
Diffstat (limited to 'lib/std/start.zig')
| -rw-r--r-- | lib/std/start.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/start.zig b/lib/std/start.zig index 4177c9ba01..f5d2688efb 100644 --- a/lib/std/start.zig +++ b/lib/std/start.zig @@ -18,7 +18,6 @@ const start_sym_name = if (native_arch.isMIPS()) "__start" else "_start"; // Until then, we have simplified logic here for self-hosted. TODO remove this once // self-hosted is capable enough to handle all of the real start.zig logic. pub const simplified_logic = - (builtin.zig_backend == .stage2_x86_64 and builtin.os.tag == .plan9) or builtin.zig_backend == .stage2_x86 or builtin.zig_backend == .stage2_aarch64 or builtin.zig_backend == .stage2_arm or |
