From a4eee2e2b68cbe10a680d887dd8542373a00cd2f Mon Sep 17 00:00:00 2001 From: ntoskrnl Date: Wed, 1 Aug 2012 22:36:56 +0300 Subject: [PATCH] Fix description of --64bit --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index 8a87707b4..f0fad9c24 100644 --- a/SConscript +++ b/SConscript @@ -28,7 +28,7 @@ AddOption('--opengl',dest="opengl",action='store_true',default=False,help="Build AddOption('--win',dest="win",action='store_true',default=False,help="Windows platform target.") AddOption('--lin',dest="lin",action='store_true',default=False,help="Linux platform target") AddOption('--macosx',dest="macosx",action='store_true',default=False,help="Mac OS X platform target") -AddOption('--64bit',dest="_64bit",action='store_true',default=False,help="64-bit platform target (Linux only at the moment)") +AddOption('--64bit',dest="_64bit",action='store_true',default=False,help="64-bit platform target") AddOption('--static',dest="static",action="store_true",default=False,help="Static linking, reduces external library dependancies but increased file size") AddOption('--pthreadw32-static',dest="ptw32-static",action="store_true",default=False,help="Use PTW32_STATIC_LIB for pthreadw32 headers") AddOption('--release',dest="release",action='store_true',default=False,help="Enable optimisations (Will slow down compiling)")