Zohar Malamant
Zohar Malamant
Write this data to disk in a HDF5 file inside of storage.
Blocked by lack of database or database adjacent functionality.
Jenkins test this please
Ubuntu's GCC is just using the name of the symlink that you called it from. That is ridiculously annoying. But it doesn't seem to be doing that for Clang: ```...
1. GCC is an acronym standing for the "GNU Compiler Collection". 2. `gcc` is the GNU C compiler, and is generically referred to as `cc`. 3. `g++` is the GNU...
We could try to discover where `shutil.which("c++")` points to and accept `g++` as a valid alias GCC. This is perhaps cleaner and less edge-casey. ```py import shutil from pathlib import...
Because `c++` is a generic name for any compiler. We might not support it (eg. Intel C++ Compiler) or we might not support the version of a supported compiler. We...
Sorry for being nitpicky but: ```py if "GCC" in version_line or "g++" in version_line: ... ``` It's sort of ugly to check for gcc, then clang, then gcc again.
Is this still an issue?
Yeah I think I understand. We'll need to figure out how to prioritise this issue in a future planning.