authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-10-06 00:06:36-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-10-06 00:06:36-04:00
logb7dda772a865c9c610aa4ed6ece831a8ea7bb8d5
tree64f1725f2731db2a96524b2b824bc7ac8af05336
parent4640853d1b49ec17e1e997901c58c2294aca30d6
signature Commit is signed but in an unrecognized format.

disable C ABI tests on macos due to LLD deficiency

See #1535 we'll have a better macos linker someday

1 files changed, 1 insertions(+), 0 deletions(-)

test/build_examples.zig+1
......@@ -31,6 +31,7 @@ pub fn addCases(cases: *tests.BuildExamplesContext) void {
3131
3232 if (!is_windows // TODO support compiling C files on windows with zig build system
3333 and builtin.arch == builtin.Arch.x86_64 // TODO add C ABI support for other architectures
34 and builtin.os != builtin.Os.macosx // TODO macosx C ABI test failures
3435 ) {
3536 cases.addBuildFile("test/stage1/c_abi/build.zig");
3637 }