Merge branch 'Ratstail91:main' into main

This commit is contained in:
Add00
2023-08-21 10:54:27 -04:00
committed by GitHub
3 changed files with 11 additions and 1 deletions

View File

@@ -35,6 +35,8 @@ Run `make install-tools` to install a number of tools, including:
* VSCode syntax highlighting * VSCode syntax highlighting
Other tools such as a disassembler are available, as well - simply run `make` in the correct directory.
## Syntax ## Syntax
``` ```
@@ -69,6 +71,14 @@ print tally(); //3
This source code is covered by the zlib license (see [LICENSE.md](LICENSE.md)). This source code is covered by the zlib license (see [LICENSE.md](LICENSE.md)).
# Contributions
@hiperiondev - Disassembler, porting support and feedback
@add00 - Library support
@gruelingpine185 - Unofficial MacOS support
@solar-mist - Minor bugfixes
Unnamed Individuals - Feedback
# Patrons via Patreon # Patrons via Patreon
* Seth A. Robinson * Seth A. Robinson

View File

@@ -15,7 +15,7 @@ all: $(OBJ) $(TESTS:%.c=../$(TOY_OUTDIR)/%.exe)
../$(TOY_OUTDIR)/%.exe: $(ODIR)/%.o ../$(TOY_OUTDIR)/%.exe: $(ODIR)/%.o
@$(CC) -o $@ $< $(TARGETS:../source/%.c=$(ODIR)/%.o) $(CFLAGS) $(LIBS) @$(CC) -o $@ $< $(TARGETS:../source/%.c=$(ODIR)/%.o) $(CFLAGS) $(LIBS)
ifeq ($(shell uname)$(DISABLE_VALGRIND),Linux) ifeq ($(shell uname)$(DISABLE_VALGRIND),Linux)
valgrind --leak-check=full --track-origins=yes $@ valgrind --leak-check=full --track-origins=yes --show-leak-kinds=all $@
else else
$@ $@
endif endif

Binary file not shown.