mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-25 11:52:32 +01:00
Add 32-bit options to linux makefile
This commit is contained in:
parent
7d00ec3e80
commit
94c066e445
@ -80,9 +80,7 @@ project "PSX"
|
||||
}
|
||||
|
||||
filter "system:linux"
|
||||
buildoptions {
|
||||
"-Wno-narrowing"
|
||||
}
|
||||
buildoptions { "-Wno-narrowing", "-m32" }
|
||||
|
||||
includedirs {
|
||||
"/usr/include/SDL2"
|
||||
@ -95,6 +93,8 @@ project "PSX"
|
||||
"SDL2",
|
||||
}
|
||||
|
||||
linkoptions { "-m32" }
|
||||
|
||||
filter "configurations:Release"
|
||||
optimize "Full"
|
||||
|
||||
@ -145,7 +145,7 @@ project "REDRIVER2"
|
||||
}
|
||||
|
||||
filter "system:linux"
|
||||
buildoptions { "-Wno-narrowing", "-fpermissive" }
|
||||
buildoptions { "-Wno-narrowing", "-fpermissive", "-m32" }
|
||||
cppdialect "C++11"
|
||||
|
||||
includedirs {
|
||||
@ -159,7 +159,7 @@ project "REDRIVER2"
|
||||
"SDL2",
|
||||
}
|
||||
|
||||
linkoptions { "-z muldefs" }
|
||||
linkoptions { "-z muldefs", "-m32" }
|
||||
|
||||
filter "configurations:Debug"
|
||||
defines {
|
||||
|
Loading…
Reference in New Issue
Block a user