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:15:37 +00:00
parent bcc63a205d
commit a6470fee45

View File

@ -1,12 +1,12 @@
# Portage - env - GCC - Basic
# Copyright 2022 Inference
# License: BSD 3-Clause Clear
# Copyright 2022-2023 Inference
# SPDX-License-Identifier: BSD-3-Clause-Clear
# 0.0.1.1
# Version: 0.0.2.2
# Toolchain.
# Toolchain
AR="ar"
CC="gcc"
CPP="cpp"
@ -21,10 +21,9 @@ STRINGS="strings"
STRIP="strip"
# Flags.
## Compiler flags.
# Flags
## Compiler flags
CFLAGS="-march=znver3 -O2 -pipe -U__gnu_linux__"
CXXFLAGS="-march=znver3 -O2 -pipe"
## Linker flags.
## Linker flags
LDFLAGS="-Wl,-O2"