Update copyright year range in preparation for 2023. Switch to SPDX license formatting. Improve comments.

This commit is contained in:
inference 2022-12-29 10:30:31 +00:00
parent c6fb4ab8be
commit 79797325d5

View File

@ -1,18 +1,16 @@
# Portage - env - Clang - Malloc, Basic # Portage - env - Clang - Malloc, Basic
# Copyright 2022 Inference # Copyright 2022-2023 Inference
# License: BSD 3-Clause Clear # SPDX-License-Identifier: BSD-3-Clause-Clear
# 0.0.1.1 # Version: 0.0.2.2
# Flags. # Flags
## Hardening flags. ## Hardening flags
LD_SEC="-L/usr/local/lib -lhardened_malloc" LD_SEC="-L/usr/local/lib -lhardened_malloc"
## Compiler flags
## Compiler flags.
CFLAGS="-march=znver3 -O2 -pipe -U__gnu_linux__" CFLAGS="-march=znver3 -O2 -pipe -U__gnu_linux__"
CXXFLAGS="-march=znver3 -O2 -pipe" CXXFLAGS="-march=znver3 -O2 -pipe"
## Linker flags
## Linker flags.
LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind ${LD_SEC}" LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind ${LD_SEC}"