zig/src-self-hosted
Andrew Kelley cbe9a51518
don't trust llvm's GetHostCPUName
comment from this commit reproduced here:

I have observed the CPU name reported by LLVM being incorrect. On
the SourceHut build services, LLVM 9.0 reports the CPU as "athlon-xp",
which is a 32-bit CPU, even though the system is 64-bit and the reported
CPU features include, among other things, +64bit.
So the strategy taken here is that we observe both reported CPU, and the
reported CPU features. The features are trusted more; but if the features
match exactly the features of the reported CPU, then we trust the reported CPU.
2020-01-21 22:02:13 -05:00
..
c_int.zig
c_tokenizer.zig Fix edge case in hex-literal translation 2020-01-04 11:06:28 +01:00
c.zig
clang.zig Fix unsafe cast in translate_c 2020-01-11 15:51:10 -05:00
codegen.zig self-hosted: manually parse args 2019-12-11 02:08:33 -05:00
compilation.zig add --eh-frame-hdr conditionally 2020-01-07 15:58:40 -05:00
decl.zig
dep_tokenizer.zig Fix remaining variadic formatted prints 2020-01-09 13:36:44 -05:00
errmsg.zig update self-hosted compiler to new format API 2019-12-08 23:17:03 -05:00
introspect.zig update self-hosted compiler to new format API 2019-12-08 23:17:03 -05:00
ir.zig Replace @typeOf with @TypeOf in all zig source 2019-12-10 11:09:41 -05:00
libc_installation.zig Replace @typeOf with @TypeOf in all zig source 2019-12-10 11:09:41 -05:00
link.zig add --eh-frame-hdr conditionally 2020-01-07 15:58:40 -05:00
llvm.zig fix stage2 build 2019-12-29 11:04:58 +02:00
main.zig fix self-hosted compiler regression 2020-01-21 01:51:21 -05:00
package.zig
print_targets.zig add cpus and cpu features to zig targets 2020-01-21 01:48:25 -05:00
scope.zig
stage1.zig don't trust llvm's GetHostCPUName 2020-01-21 22:02:13 -05:00
test.zig Fix remaining variadic formatted prints 2020-01-09 13:36:44 -05:00
translate_c.zig Merge pull request #4191 from Vexu/non-exhaustive-enums 2020-01-17 14:26:12 -05:00
type.zig Fix remaining variadic formatted prints 2020-01-09 13:36:44 -05:00
util.zig update self-hosted compiler to new format API 2019-12-08 23:17:03 -05:00
value.zig update self-hosted compiler to new format API 2019-12-08 23:17:03 -05:00
visib.zig