| author | |
| committer | |
| log | c5d6277ace183cf4261c13cc9b44a53ec1622199 |
| tree | ada02e0a975e9603e1b8267f822046d7b80cb61d |
| parent | 53c670f46589fbdb010a0f4e1ccc38064688be80 |
2 files changed, 2 insertions(+), 2 deletions(-)
lib/std/zig.zig+1-1| ... | ... | @@ -774,7 +774,7 @@ pub const EnvVar = enum { |
| 774 | 774 | ZIG_VERBOSE_CC, |
| 775 | 775 | ZIG_DEBUG_CMD, |
| 776 | 776 | ZIG_IS_DETECTING_LIBC_PATHS, |
| 777 | ZIG_IS_TRYING_TO_NOT_CALL_ITSELF, | |
| 777 | ZIG_IS_AVOIDING_CALLING_ITSELF, | |
| 778 | 778 | |
| 779 | 779 | // C toolchain integration |
| 780 | 780 | NIX_CFLAGS_COMPILE, |
src/main.zig+1-1| ... | ... | @@ -295,7 +295,7 @@ fn mainArgs( |
| 295 | 295 | // However it's possible Zig is installed as *that* C compiler as well, which is |
| 296 | 296 | // why we have this additional environment variable here to check. |
| 297 | 297 | |
| 298 | const inf_loop_env_key: EnvVar = .ZIG_IS_TRYING_TO_NOT_CALL_ITSELF; | |
| 298 | const inf_loop_env_key: EnvVar = .ZIG_IS_AVOIDING_CALLING_ITSELF; | |
| 299 | 299 | if (inf_loop_env_key.isSet(environ_map)) { |
| 300 | 300 | fatal("{s}", .{ |
| 301 | 301 | "The compilation links against libc, but Zig is unable to provide a libc " ++ |