You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Fixed tiny error in detect.py causing compilation for Android to fail.
(cherry picked from commit c9d7f77c6f)
This commit is contained in:
committed by
Rémi Verschelde
parent
ee6c5c5c23
commit
638a31d972
@@ -131,7 +131,7 @@ def configure(env):
|
|||||||
gcc_path=gcc_path+"/darwin-x86_64/bin"
|
gcc_path=gcc_path+"/darwin-x86_64/bin"
|
||||||
env['SHLINKFLAGS'][1] = '-shared'
|
env['SHLINKFLAGS'][1] = '-shared'
|
||||||
env['SHLIBSUFFIX'] = '.so'
|
env['SHLIBSUFFIX'] = '.so'
|
||||||
elif (os.platform.startswith('win')):
|
elif (sys.platform.startswith('win')):
|
||||||
if (platform.machine().endswith('64')):
|
if (platform.machine().endswith('64')):
|
||||||
gcc_path=gcc_path+"/windows-x86_64/bin"
|
gcc_path=gcc_path+"/windows-x86_64/bin"
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user