hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 0b20c079aa6881ec63340235e82248d72f2c48b5
parent d94f355481a320fb2aec13ef62cb3bfe2416f5e4
Author: Lorenz (xha) <me@xha.li>
Date:   Sat, 25 Nov 2023 15:17:56 +0100

cmd::hare arch add comment about values beeing overwritten

Signed-off-by: Lorenz (xha) <me@xha.li>

Diffstat:
Mcmd/hare/arch.ha | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/cmd/hare/arch.ha b/cmd/hare/arch.ha @@ -5,6 +5,8 @@ use hare::module; use os; use strings; +// When building the bootstrap toolchain, these values will get overwritten to +// equal the values in config.mk def AARCH64_AS = "as"; def AARCH64_CC = "cc"; def AARCH64_LD = "ld";