diff options
| author | Juan Linietsky | 2014-02-26 14:25:42 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-02-26 14:25:42 -0300 |
| commit | 768fc7ec8190d34c187ee2fb642bbe0c80fe8f6c (patch) | |
| tree | a8285c21f4470def3fa5995fc82d1ef0ff675b0c | |
| parent | a919683228122dc47cb314ef6c3245ec23735568 (diff) | |
| download | godot-768fc7ec8190d34c187ee2fb642bbe0c80fe8f6c.tar.gz godot-768fc7ec8190d34c187ee2fb642bbe0c80fe8f6c.tar.zst godot-768fc7ec8190d34c187ee2fb642bbe0c80fe8f6c.zip | |
| -rw-r--r-- | platform/x11/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 38f697ef1..80d92fb17 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -131,6 +131,9 @@ def configure(env): if (env["force_32_bits"]=="yes"): env.Append(CPPFLAGS=['-m32']) env.Append(LINKFLAGS=['-m32','-L/usr/lib/i386-linux-gnu']) + env['OBJSUFFIX'] = ".32"+env['OBJSUFFIX'] + env['LIBSUFFIX'] = ".32"+env['LIBSUFFIX'] + if (env["CXX"]=="clang++"): env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND']) |
