Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 447 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 447 Bytes

Demonstration programs for Fatal

Demonstration programs can be found under this directory.

Requirements for demos

A compliant C++14 compiler.

There are no other external dependencies.

Building demos

$ clang++ -Wall -Werror -O2 -std=c++1y -I path/to/fatal \
  -o path/to/output/binary demo/demo_filename.cpp

or

$ g++ -Wall -Werror -O2 -std=c++1y -I path/to/fatal \
  -o path/to/output/binary demo/demo_filename.cpp