zig/src
Alex Rønne Petersen da794ec7a3
compiler: Remove warning about superfluous compiler-rt libraries.
* This warning's wording is actually inaccurate when using the -fno-compiler-rt
  or -rtlib=none options.
* It's not all that helpful; it's already understood that these libraries are
  part of the compiler, so printing a warning is just noise. In practice, this
  warning would always happen when building upstream musl, for example.
* We don't warn when we satisfy -lunwind using our bundled libunwind either, or
  various libc libraries using our bundled libc, or when providing libc++, etc.
  So I really don't think we should be warning here either.
2024-12-06 14:57:22 +01:00
..
Air dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
arch dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
codegen llvm: Lower ohoseabi to ohos instead of verbatim. 2024-11-28 22:04:00 +01:00
Compilation Compilation: Re-enable LTO for RISC-V. 2024-11-19 12:04:42 +01:00
link macho: fix 32bit builds 2024-12-02 22:05:21 -05:00
Liveness dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
Package zig fetch: add missing path separator in error message 2024-11-29 18:50:21 -05:00
Sema compiler: remove anonymous struct types, unify all tuples 2024-10-31 20:42:53 +00:00
Zcu std.os.windows: Map PIPE_NOT_AVAILABLE from OpenFile() to error.NoDevice (#21938) 2024-11-27 22:33:29 +01:00
Air.zig dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
Builtin.zig Merge pull request #22067 from alexrp/pie-tests 2024-11-28 14:07:28 +01:00
clang.zig Initial port work for *-windows-itanium support. 2024-09-28 21:43:52 +02:00
clang_options.zig zig cc: honor all -m and -mno- CPU feature flags 2021-11-26 19:59:33 -07:00
clang_options_data.zig clang: Update options data to Clang 19. 2024-09-19 18:20:21 -07:00
codegen.zig compiler: remove anonymous struct types, unify all tuples 2024-10-31 20:42:53 +00:00
Compilation.zig Merge pull request #22067 from alexrp/pie-tests 2024-11-28 14:07:28 +01:00
crash_report.zig std.os.windows: Deprecate WINAPI in favor of CallingConvention.winapi. 2024-11-02 10:44:18 +01:00
DarwinPosixSpawn.zig fix compilation failures found by CI 2024-03-19 16:18:18 -07:00
dev.zig dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
fmt.zig compiler: un-jit zig fmt 2024-11-12 21:55:46 -08:00
glibc.zig std.Target: Add Os.HurdVersionRange for Os.Tag.hurd. 2024-11-24 22:11:16 +01:00
InternPool.zig ip: cleanup @constCast usages 2024-11-25 18:41:36 -05:00
introspect.zig Fix handling of empty XDG environment variables 2024-08-19 23:30:14 -07:00
libcxx.zig std.Target: Add Os.HurdVersionRange for Os.Tag.hurd. 2024-11-24 22:11:16 +01:00
libtsan.zig tsan: Handle more Apple targets when picking library name. 2024-11-05 22:41:09 +01:00
libunwind.zig libunwind: Pass -fPIC -funwind-tables via module options instead of CFLAGS. 2024-11-05 22:41:09 +01:00
link.zig diversify "unable to spawn" failure messages 2024-11-26 13:56:40 -08:00
Liveness.zig dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
main.zig compiler: Remove warning about superfluous compiler-rt libraries. 2024-12-06 14:57:22 +01:00
mingw.zig Compilation: Move no_builtin to Package.Module. 2024-11-05 14:43:02 +01:00
musl.zig musl: Define TIME32 and FAMILY_* macros for libc.S as appropriate. 2024-11-23 03:10:58 +01:00
mutable_value.zig remove formatted panics 2024-09-26 12:35:14 -07:00
Package.zig fetch: filter unpack errors 2024-04-09 15:00:21 +02:00
print_air.zig dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
print_env.zig std: update std.builtin.Type fields to follow naming conventions 2024-08-28 08:39:59 +01:00
print_targets.zig move zig libc command to be lazily built 2024-02-27 22:55:00 -07:00
print_value.zig compiler: remove anonymous struct types, unify all tuples 2024-10-31 20:42:53 +00:00
print_zir.zig dwarf: fix stepping through an inline loop containing one statement 2024-11-24 17:28:12 -05:00
RangeSet.zig sema: rework type resolution to use Zcu when possible 2024-08-25 15:16:42 -07:00
register_manager.zig Replace deprecated default initializations with decl literals 2024-09-12 16:01:23 +01:00
Sema.zig sema: add a missing errdefer 2024-12-03 14:18:26 -05:00
target.zig compiler: Classify libgcc as an alias for compiler-rt. 2024-12-06 14:57:22 +01:00
ThreadSafeQueue.zig link.flushTaskQueue: move safety lock 2024-10-23 16:27:39 -07:00
tracy.zig Add build option to set tracy-callstack-depth in build.zig (#21990) 2024-11-29 12:13:06 -08:00
translate_c.zig compiler: remove anonymous struct types, unify all tuples 2024-10-31 20:42:53 +00:00
Type.zig compiler: use @Type instead of @TypeOf to print enum literal type 2024-11-29 15:26:58 -05:00
Value.zig compiler: remove anonymous struct types, unify all tuples 2024-10-31 20:42:53 +00:00
wasi_libc.zig glibc, musl, wasi-libc: Don't explicitly pass -fno-stack-protector. 2024-11-05 22:41:09 +01:00
Zcu.zig cbe: Support some more calling conventions. 2024-11-02 10:44:18 +01:00
zig_clang.cpp zig_clang: Update to Clang 19. 2024-09-19 18:20:20 -07:00
zig_clang.h zig_clang: Update to Clang 19. 2024-09-19 18:20:20 -07:00
zig_clang_cc1_main.cpp compiler: Update LLVM/Clang driver files to LLVM/Clang 19. 2024-09-19 18:20:20 -07:00
zig_clang_cc1as_main.cpp compiler: Update LLVM/Clang driver files to LLVM/Clang 19. 2024-09-19 18:20:20 -07:00
zig_clang_driver.cpp compiler: Update LLVM/Clang driver files to LLVM/Clang 19. 2024-09-19 18:20:20 -07:00
zig_llvm-ar.cpp compiler: Update LLVM/Clang driver files to LLVM/Clang 19. 2024-09-19 18:20:20 -07:00
zig_llvm.cpp zig_llvm: Reduce our exposure to LLVM API breakage. 2024-10-31 01:27:22 +01:00
zig_llvm.h zig_llvm: Reduce our exposure to LLVM API breakage. 2024-10-31 01:27:22 +01:00