mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python3Packages.pybullet: fix build with GCC 14 (#407872)
This commit is contained in:
commit
d1a10e9182
1 changed files with 4 additions and 0 deletions
|
@ -29,6 +29,10 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
# Fix GCC 14 build.
|
||||
# from incompatible pointer type [-Wincompatible-pointer-types
|
||||
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
|
||||
|
||||
patches = [
|
||||
# make sure X11 and OpenGL can be found at runtime
|
||||
./static-libs.patch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue