diff options
author | Felix Gruber <felgru@posteo.net> | 2022-01-03 19:38:25 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-01-03 15:10:03 -0500 |
commit | dececca2fefcb47ad3878b004a1fd3a01a72e329 (patch) | |
tree | bf672711f8165ec7f88dcb5d4d0788e8ff80a257 /gnu/packages/game-development.scm | |
parent | 0aac289d614b3763666c68a51d81540a8a34d234 (diff) | |
download | guix-dececca2fefcb47ad3878b004a1fd3a01a72e329.tar.gz |
gnu: bullet: Build with double precision arithmetics.
* gnu/packages/game-development.scm (bullet)[arguments]: Add configure flag for double precision arithmetics. Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index c77c445831..baf7f70641 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -144,6 +144,11 @@ "-DBUILD_CPU_DEMOS=OFF" "-DBUILD_OPENGL3_DEMOS=OFF" "-DBUILD_BULLET2_DEMOS=OFF" + ;; openmw 0.47.0 requires bullet to be built with + ;; double precision. + ;; See <https://issues.guix.gnu.org/52953> for + ;; more information. + "-DUSE_DOUBLE_PRECISION=ON" ;; Extras/BulletRoboticsGUI needs files from ;; ThirdPartyLibs "-DBUILD_BULLET_ROBOTICS_GUI_EXTRA=OFF" |