General Purpose library for Freestanding C++ and POSIX systems
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
|
- CXX= clang++
- CXXFLAGS= --std=c++20 -target x86_64-none-linux-elf -Os -ffreestanding -nostdlib -pedantic \
- -Wno-unknown-attributes -fno-omit-frame-pointer -MD -fno-use-cxa-atexit -fno-rtti -I../../include -I.
-
- # -fsanitize=address -fsanitize-blacklist=blacklist.txt
-
- all: tests
-
- tests: bin/tests
- # ./bin/tests
-
- bin/tests: main.cpp
- @mkdir -p $(@D)
- $(CXX) $(CXXFLAGS) main.cpp -o $@
-
- clean: ./bin
- @rm -rf $<
|