aboutsummaryrefslogtreecommitdiff
path: root/lib/init-exe/src
AgeCommit message (Collapse)Author
2022-08-04init-exe template: add flushing to the buffered writerLoris Cro
2022-08-04init-exe template: small improvementsLoris Cro
2022-08-04new init-exe templateLoris Cro
- removed an unnecessary (and confusing) `anyerror` fronm the function signature of `main` - replaced the call to std.log with two prints: one to stderr and one to stdout - replaced the test code with a better example
2022-05-14init-exe: add note about log_level in ReleaseSmall and ReleaseFast build ↵Robin
mode (#11626) As suggested in https://github.com/ziglang/zig/issues/9945#issuecomment-950114977 by @wizzard0. Fixes #9945.
2022-05-06flatten lib/std/special and improve "pkg inside another" logicAndrew Kelley
stage2: change logic for detecting whether the main package is inside the std package. Previously it relied on realpath() which is not portable. This uses resolve() which is how imports already work. * stage2: fix cleanup bug when creating Module * flatten lib/std/special/* to lib/* - this was motivated by making main_pkg_is_inside_std false for compiler_rt & friends. * rename "mini libc" to "universal libc"