1
0
forked from 0ad/0ad

Fix x86 Unix versions of 0 A.D. not being able to open the public.zip file.

Patch by: @nwtour
Differential Revision: https://code.wildfiregames.com/D4413
This was SVN commit r26378.
This commit is contained in:
Stan 2022-02-14 11:01:02 +00:00
parent 930cc9b850
commit 3694a12152

View File

@ -305,7 +305,9 @@ function project_set_build_flags()
-- while tuning for generic to have good performance on every
-- supported CPU.
-- Note that all these features are already supported on amd64.
"-march=pentium3 -mtune=generic"
"-march=pentium3 -mtune=generic",
-- This allows x86 operating systems to handle the 2GB+ public mod.
"-D_FILE_OFFSET_BITS=64"
}
end
end