Unicode is the now default for i386

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7212 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2020-08-10 22:26:36 +00:00
parent 5be44d619b
commit d18c26eea5
2 changed files with 15 additions and 1 deletions

View file

@ -128,7 +128,7 @@ CEXEBuild::CEXEBuild(signed char pponly, bool warnaserror) :
definedlist.add(_T("NSIS_VERSION"), NSIS_VERSION);
definedlist.add(_T("NSIS_PACKEDVERSION"), NSIS_PACKEDVERSION);
m_target_type=TARGET_X86ANSI;
m_target_type=TARGET_X86UNICODE;
#ifdef _WIN32
if (sizeof(void*) > 4) m_target_type = TARGET_AMD64; // BUGBUG: scons 'TARGET_ARCH' should specify the default
#endif