From 768fc7ec8190d34c187ee2fb642bbe0c80fe8f6c Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Wed, 26 Feb 2014 14:25:42 -0300 Subject: [PATCH] fixie --- platform/x11/detect.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 38f697ef107..80d92fb17ca 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'])