time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

commit b128793fc3e8780b6324321c939332cd99d73c14
parent 00684179e11c26cb02cba9e9b15faa7b1a8f4ca6
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Sat,  3 Jun 2023 03:47:58 -0600

tweak: add static compilation option

Diffstat:
MC/makefile | 3+++
MC/out/samples | 0
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/C/makefile b/C/makefile @@ -34,6 +34,9 @@ FORMATTER=clang-format -i -style=$(STYLE_BLUEPRINT) build: $(SRC) $(CC) $(OPTIMIZED) $(DEBUG) $(SRC) $(OPENMP) $(MATH) -o $(OUTPUT) +static: + $(CC) $(OPTIMIZED) $(DEBUG) $(SRC) $(OPENMP) $(MATH) -o $(OUTPUT) + format: $(SRC) $(FORMATTER) $(SRC) diff --git a/C/out/samples b/C/out/samples Binary files differ.