> g++ -g -Wall -std=c++20 -stdlib=libc++ -o nes src/main.cpp
src/main.cpp:3:10: fatal error: 'format' file not found
#include <format>
^~~~~~~~
1 error generated.
> clang++ --version ~/Documents/GitHub/nes
Apple clang version 13.0.0 (clang-1300.0.27.3)
Target: arm64-apple-darwin21.1.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
I tried to update xcode developer tools
How to fix that ?
Where is the std::format header in macos ?