General Purpose library for Freestanding C++ and POSIX systems
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 řádky
410 B

  1. CXX= clang++
  2. CXXFLAGS= --std=c++20 -target x86_64-none-linux-elf -Os -ffreestanding -nostdlib -pedantic \
  3. -Wno-unknown-attributes -fno-omit-frame-pointer -MD -fno-use-cxa-atexit -fno-rtti -I../../include -I.
  4. # -fsanitize=address -fsanitize-blacklist=blacklist.txt
  5. all: tests
  6. tests: bin/tests
  7. # ./bin/tests
  8. bin/tests: main.cpp
  9. @mkdir -p $(@D)
  10. $(CXX) $(CXXFLAGS) main.cpp -o $@
  11. clean: ./bin
  12. @rm -rf $<