diff options
| author | Jonathan Marler <johnnymarler@gmail.com> | 2021-09-07 10:44:21 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-07 19:44:21 +0300 |
| commit | fd2c1d860503ec6cd71ab9a692ad2dbf6bd3c269 (patch) | |
| tree | 3e6b25a478390b5e1797637a019456baf8d7b2d7 /test/tests.zig | |
| parent | 16c3cd3d19624595f9a840b2147bdf57f4b9e284 (diff) | |
| download | zig-fd2c1d860503ec6cd71ab9a692ad2dbf6bd3c269.tar.gz zig-fd2c1d860503ec6cd71ab9a692ad2dbf6bd3c269.zip | |
Fix building aarch64-windows-gnu by adding missing libc files and compiler_rt functions (#9555)
* fix issue 9519
Added some missing files from mingw
* add missing compiler_rt functions
* finish PR
* add aarch64-windows-gnu to test targets
* add more compiler_rt
* add log2
* add pow
* add modti3
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig index 131c9a4129..a90531c600 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -137,6 +137,14 @@ const test_targets = blk: { }, .link_libc = true, }, + TestTarget{ + .target = .{ + .cpu_arch = .aarch64, + .os_tag = .windows, + .abi = .gnu, + }, + .link_libc = true, + }, TestTarget{ .target = CrossTarget.parse(.{ |
