mirror of
https://github.com/ziglang/zig.git
synced 2026-01-18 05:15:18 +00:00
41 lines
1.4 KiB
Zig
41 lines
1.4 KiB
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const test_step = b.step("test", "Test");
|
|
test_step.dependOn(b.getInstallStep());
|
|
|
|
const lib = b.addSharedLibrary(.{
|
|
.name = "lib",
|
|
.root_source_file = .{ .path = "lib.zig" },
|
|
.target = .{ .cpu_arch = .wasm32, .os_tag = .freestanding },
|
|
.optimize = b.standardOptimizeOption(.{}),
|
|
});
|
|
lib.use_llvm = false;
|
|
lib.use_lld = false;
|
|
lib.strip = false;
|
|
// to make sure the bss segment is emitted, we must import memory
|
|
lib.import_memory = true;
|
|
lib.install();
|
|
|
|
const check_lib = lib.checkObject(.wasm);
|
|
|
|
// since we import memory, make sure it exists with the correct naming
|
|
check_lib.checkStart("Section import");
|
|
check_lib.checkNext("entries 1");
|
|
check_lib.checkNext("module env"); // default module name is "env"
|
|
check_lib.checkNext("name memory"); // as per linker specification
|
|
|
|
// since we are importing memory, ensure it's not exported
|
|
check_lib.checkNotPresent("Section export");
|
|
|
|
// validate the name of the stack pointer
|
|
check_lib.checkStart("Section custom");
|
|
check_lib.checkNext("type data_segment");
|
|
check_lib.checkNext("names 2");
|
|
check_lib.checkNext("index 0");
|
|
check_lib.checkNext("name .rodata");
|
|
check_lib.checkNext("index 1"); // bss section always last
|
|
check_lib.checkNext("name .bss");
|
|
test_step.dependOn(&check_lib.step);
|
|
}
|