mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
ja2-stracciatella: fix build with gcc13 (#353028)
This commit is contained in:
commit
c9b44ac6df
|
@ -49,6 +49,10 @@ stdenv.mkDerivation {
|
|||
cmakeFlagsArray+=("-DLOCAL_RAPIDJSON_LIB=OFF" "-DLOCAL_GTEST_LIB=OFF" "-DEXTRA_DATA_DIR=$out/share/ja2")
|
||||
'';
|
||||
|
||||
# error: 'uint64_t' does not name a type
|
||||
# gcc13 and above don't automatically include cstdint
|
||||
env.CXXFLAGS = "-include cstdint";
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
HOME=/tmp $out/bin/ja2 -unittests
|
||||
|
|
Loading…
Reference in a new issue