aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/stack_probe.zig
AgeCommit message (Collapse)Author
2022-12-13update usages of `@call`Veikka Tuominen
2022-11-05Merge pull request #13101 from alichraghi/o4Andrew Kelley
2022-11-04all: rename i386 to x86Ali Chraghi
2022-11-03compiler_rt: fix duplicate symbol error when linking libc on arm64 WindowsJakub Konka
2022-06-17compiler_rt: compile each unit separately for improved archivingJakub Konka
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"