mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-16 16:41:42 +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):
|
class MadTarget(ConfigureMakeStaticDependencyTarget):
|
||||||
def __init__(self, name='mad'):
|
def __init__(self, name='mad'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
self.options['--enable-fpm'] = '64bit'
|
||||||
|
|
||||||
def prepare_source(self, builder: 'Builder'):
|
def prepare_source(self, builder: 'Builder'):
|
||||||
builder.download_source(
|
builder.download_source(
|
||||||
|
|
Loading…
Reference in a new issue