diff options
| author | 2025-04-20 06:10:25 +1000 | |
|---|---|---|
| committer | 2025-04-20 06:10:25 +1000 | |
| commit | e3f386c2a904a1b4e9f81f38c86264839084519f (patch) | |
| tree | bc4fff74e0aee87f1bf6212e276527d57088207f /scripts | |
| parent | 8ab7404eac41f92bbf5ca3700ab4043cf3021a24 (diff) | |
Made PTR64 a makefile-only thing - it isn't necessary in the code.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/genie.lua | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 9f6bcb3ce8e..c18d2c3b7cb 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -563,10 +563,6 @@ dofile ("toolchain.lua") -- Avoid error when invoking genie --help. if (_ACTION == nil) then return false end --- define PTR64 if we are a 64-bit target -configuration { "x64 or android-*64"} - defines { "PTR64=1" } - -- define MAME_DEBUG if we are a debugging build configuration { "Debug" } defines { @@ -1084,12 +1080,6 @@ end end end -if (_OPTIONS["PLATFORM"]=="alpha") then - defines { - "PTR64=1", - } -end - if (_OPTIONS["PLATFORM"]=="arm") then buildoptions { "-Wno-cast-align", @@ -1100,21 +1090,6 @@ if (_OPTIONS["PLATFORM"]=="arm64") then buildoptions { "-Wno-cast-align", } - defines { - "PTR64=1", - } -end - -if (_OPTIONS["PLATFORM"]=="riscv64") then - defines { - "PTR64=1", - } -end - -if (_OPTIONS["PLATFORM"]=="mips64") then - defines { - "PTR64=1", - } end local subdir |
