authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-20 12:54:21-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-20 12:58:00-04:00
log695695c852b54c5cdc3f843e5ecd31b4349f2418
tree56eb32b3d2b74a6a2d5203c40f69bedbd078bd4b
parentee200aaa8c157bad03c68858f4f07ff71928490b
signaturelock-open Commit is signed but in an unrecognized format.

update README

Also I verified that muldi3 has not changed since the previous ported reference commit.

2 files changed, 8 insertions(+), 5 deletions(-)

README.md+7-4
...@@ -32,10 +32,13 @@ Note that you can...@@ -32,10 +32,13 @@ Note that you can
3232
33##### Windows33##### Windows
3434
35 * cmake >= 2.8.535 * cmake >= 3.15.3
36 * Microsoft Visual Studio 2017 (version 15.8)36 * Microsoft Visual Studio. Supported versions:
37 * LLVM, Clang, LLD development libraries == 9.x, compiled with the same MSVC version above37 - 2015 (version 14)
38 - Use the [pre-built binaries](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#pre-built-binaries) or [build from source](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#windows).38 - 2017 (version 15.8)
39 - 2019 (version 16)
40 * LLVM, Clang, LLD development libraries == 9.x
41 - Use the [pre-built binaries](https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows) or [build from source](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#windows).
3942
40#### Instructions43#### Instructions
4144
std/special/compiler_rt/muldi3.zig+1-1
...@@ -1,7 +1,7 @@...@@ -1,7 +1,7 @@
1const builtin = @import("builtin");1const builtin = @import("builtin");
22
3// Ported from3// Ported from
4// https://github.com/llvm/llvm-project/blob/552c2c09d354a3ad9c1c9647e0a3bb5099c31088/compiler-rt/lib/builtins/muldi3.c4// https://github.com/llvm/llvm-project/blob/llvmorg-9.0.0/compiler-rt/lib/builtins/muldi3.c
55
6const dwords = extern union {6const dwords = extern union {
7 all: i64,7 all: i64,