General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
CXX= clang++
|
|
CXXFLAGS= --std=c++20 -target x86_64-none-linux-elf -O2 -ffreestanding -nostdlib -pedantic \
|
|
-Wno-unknown-attributes -fno-omit-frame-pointer -MD -fno-use-cxa-atexit -fno-rtti -I. -I../../include
|
|
|
|
# -fsanitize=address -fsanitize-blacklist=blacklist.txt
|
|
|
|
all: tests
|
|
|
|
tests: bin/tests
|
|
./bin/tests potato
|
|
|
|
bin/tests: main.cpp
|
|
@mkdir -p $(@D)
|
|
$(CXX) $(CXXFLAGS) main.cpp -nostartfiles -s -static -o $@
|
|
|
|
clean: ./bin
|
|
@rm -rf $<
|