ocamlPackages.ctypes-foreign: fix build with gcc-14

This commit is contained in:
Franz Pletz
2024-12-27 19:30:11 +01:00
parent cd36676209
commit 5c6e2c0a90
@@ -24,6 +24,9 @@ buildDunePackage rec {
lwt
];
# Fix build with gcc 14
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
meta = ctypes.meta // {
description = "Dynamic access to foreign C libraries using Ctypes";
};