mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
build script: enable 64-bit floating point math for mad target
this makes x86_64 and arm64 identical in terms of floating point math
This commit is contained in:
parent
dc3e4dc2ef
commit
597281b1a8
1 changed files with 1 additions and 0 deletions
1
build.py
1
build.py
|
@ -1004,6 +1004,7 @@ class JpegTurboTarget(CMakeStaticDependencyTarget):
|
|||
class MadTarget(ConfigureMakeStaticDependencyTarget):
|
||||
def __init__(self, name='mad'):
|
||||
super().__init__(name)
|
||||
self.options['--enable-fpm'] = '64bit'
|
||||
|
||||
def prepare_source(self, builder: 'Builder'):
|
||||
builder.download_source(
|
||||
|
|
Loading…
Reference in a new issue