diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-20 00:11:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-20 00:11:11 -0400 |
| commit | 2fdf69bc4082c49a571c0ee7bb7441d910def795 (patch) | |
| tree | 85777989a8f3976826612d50204aa655a2b4d8fd /test/build_examples.zig | |
| parent | ac34841270d34fb2f47ada2960d7281328ec7b25 (diff) | |
| parent | d669db76732a5137f9e37a22d08f5cba319a122d (diff) | |
| download | zig-2fdf69bc4082c49a571c0ee7bb7441d910def795.tar.gz zig-2fdf69bc4082c49a571c0ee7bb7441d910def795.zip | |
Merge pull request #2079 from Sahnvour/issue-2050
Fixes c_ABI tests on windows
Diffstat (limited to 'test/build_examples.zig')
| -rw-r--r-- | test/build_examples.zig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/build_examples.zig b/test/build_examples.zig index 33a288a108..c75c38b138 100644 --- a/test/build_examples.zig +++ b/test/build_examples.zig @@ -25,9 +25,7 @@ pub fn addCases(cases: *tests.BuildExamplesContext) void { cases.addBuildFile("test/standalone/load_dynamic_library/build.zig"); } - if (!is_windows // TODO support compiling C files on windows with zig build system - and builtin.arch == builtin.Arch.x86_64 // TODO add C ABI support for other architectures - ) { + if (builtin.arch == builtin.Arch.x86_64) { // TODO add C ABI support for other architectures cases.addBuildFile("test/stage1/c_abi/build.zig"); } } |
