Commit Graph
7 Commits
Author SHA1 Message Date
Vova d4b94f1d98 Cleanup 2021-11-01 14:53:35 +02:00
Jakub Konka 70706ffb5b Add minimal build.zig build script (#247)
* Add minimal build.zig build script

The minimal `build.zig` script effectively can act as a (nicer?)
alternative to CMake; however, it is minimal in the sense, it currently
only includes the necessary ingredients to build `wasm3` with Zig
as the build system. As an added bonus though, you get the full
cross-compilation power of Zig for free.

Example invocation to build for the host:

```
zig build
```

To target `wasm32-wasi`:

```
zig build -Dtarget=wasm32-wasi
```

To target `aarch64-macos` from *anywhere*:

```
zig build -Dtarget=aarch64-macos
```

* Include Zig in build instructions
2021-06-09 09:26:42 +03:00
Volodymyr Shymanskyy 79870b7eeb Fix windows build instructions 2021-03-20 23:15:17 +02:00
Volodymyr Shymanskyy f6696247b7 Add docs on how to build using a compiler directly 2021-01-20 23:58:38 +02:00
inokawa 97223f8823 Fix typo in docs/Development.md (#178) 2020-11-29 02:19:46 +02:00
Volodymyr Shymanskyy 270217a968 Update docs 2020-02-18 18:03:00 +02:00
Volodymyr Shymanskyy 47f95f392d Restructure docs 2020-01-23 16:09:54 +02:00