Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 517 Bytes

File metadata and controls

28 lines (20 loc) · 517 Bytes

STDC++-2

It is my own C++ stdlib

Building

make compile
# creates build/libstdc++2.so and build/libstdc++2.a

Run tests

This is one of the rare occasions when I wrote tests

make test-all # run all test
# For solo test:
make test TEST=(test-name)
# as I will assume tested file is in tests/ folder with .c extension

Compiling your files

make run your-file.c # run for linked with shared library
make run-static your-file.c # run-static for linked with static library