Release to create downloadable artifacts
Null-Safe Clang Binary Release
This release contains the Null-Safe Clang compiler and clangd language server for Linux and macOS.
What's included:
clang- The Null-Safe C compilerclangd- Language server for IDE integration (VSCode, vim, etc.)
Installation:
Linux / macOS:
tar -xzf clang-nullsafe-<platform>.tar.gz
export PATH=$PWD/bin:$PATH
clang --versionUsage:
# Compile with null-safety warnings (default)
clang mycode.c
# Promote warnings to errors
clang -Werror=nullability mycode.c
# Disable null-safety checking
clang -fno-strict-nullability mycode.cSee the README for full documentation.