authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-02-06 11:52:36-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-02-06 11:53:09-05:00
log3abf293a84b4dc052c0d735018db520eade6274b
tree87a3007af7f6849151b3eae175f4a6cf05675af7
parent20e2d8da616aa6406572e64274fec0740cb626c6
signaturelock-open Commit is signed but in an unrecognized format.

doc/targets.md has moved to the github wiki

https://github.com/ziglang/zig/wiki/How-to-Add-Support-For-More-Targets

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

doc/targets.md deleted-15
......@@ -1,15 +0,0 @@
1# How to Add Support For More Targets
2
3Create bootstrap code in std/bootstrap.zig and add conditional compilation
4logic. This code is responsible for the real executable entry point, calling
5main() and making the exit syscall when main returns.
6
7How to pass a byvalue struct parameter in the C calling convention is
8target-specific. Add logic for how to do function prototypes and function calls
9for the target when an exported or external function has a byvalue struct.
10
11Write the target-specific code in the standard library.
12
13Update the C integer types to be the correct size for the target.
14
15Make sure that `c_longdouble` codegens the correct floating point value.