cxx
cxx copied to clipboard
:electric_plug: Configuration-free utility for building, testing and packaging executables written in C++. Can auto-detect compilation flags based on includes, via the package system and pkg-config.
the `cxx` tool fails to handle CXX or CXXFLAGS environment variables correctly, even for a `hello.cpp` Examples: ``` CXX="g++ -DHELLO_FROM_CXX" cxx CXX="g++" CXXFLAGS="-DHELLO_FROM_CXXFLAGS" cxx ``` Instead of building the example,...
This PR adds a Github Actions workflow to build `cxx` from source with Cosmopolitan Libc with every release. The resulting binary should work on `x86_64` (Linux/BSDs/Windows/MacOS), and `aarch64` (Linux/MacOS) as...