Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 525 Bytes

CONTRIBUTING.md

File metadata and controls

19 lines (13 loc) · 525 Bytes

Not much too it.

  • Use the .clang-format to avoid format wars.
  • Keep as many implementations in .cpp files as possible

Debugging:

  • Press F3 to open the debug overlay

Configured work for mac:

  • Install brew LLVM, don't use macClang as c20 standards are not FULLY supported Using c++17 now. Any up to date compiler should work.
  • Export LLVM compiler
  • Configured config.cpp to prevent buffer overflow on mac
export CC=/opt/homebrew/opt/llvm/bin/clang
export CXX=/opt/homebrew/opt/llvm/bin/clang++