aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-07-12 23:03:15 +0200
committerJakub Konka <kubkon@jakubkonka.com>2022-07-22 16:58:20 +0200
commitd80fcc8a0b5594a6eb0fb409f4e5e5f949eec2fe (patch)
tree16dea5f36353ee793855006437134316969495e5 /test
parenteeb6d8f0457b42cef560c1e4efeca69c0fe276fe (diff)
downloadzig-d80fcc8a0b5594a6eb0fb409f4e5e5f949eec2fe.tar.gz
zig-d80fcc8a0b5594a6eb0fb409f4e5e5f949eec2fe.zip
macho: rework symbol handling for incremental stage2 builds
Diffstat (limited to 'test')
-rw-r--r--test/link/macho/objcpp/build.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/link/macho/objcpp/build.zig b/test/link/macho/objcpp/build.zig
index 6b9047fbf9..767578e225 100644
--- a/test/link/macho/objcpp/build.zig
+++ b/test/link/macho/objcpp/build.zig
@@ -16,7 +16,6 @@ pub fn build(b: *Builder) void {
// TODO when we figure out how to ship framework stubs for cross-compilation,
// populate paths to the sysroot here.
exe.linkFramework("Foundation");
- exe.link_gc_sections = true;
const run_cmd = exe.run();
run_cmd.expectStdOutEqual("Hello from C++ and Zig");