两种方法:
1、命令:快捷方式方式后加“ -dCULTURE=allida64.exe”,注意“-”前面的空格;
2、修改CFG文件夹IDA.cfg文件(记事本打开)
找到以下代码:
CURRENT_CULTURE;
// The default 'culture' to use. Using -DCULTURE="foo" is a convenient way of
// specifying the culture for just one input file.
// CULTURE="Latin_1"; // all codepoints in Latin_1.clt file
CULTURE="all" (这行注释去掉,“;”去掉)
// all letters of all Unicode blocks, plus all codepoints in .clt files
// The default 1-byte encoding to use
// ENCODING="UTF-8"
// ENCODING="windows-1252"
// the following characters are allowed in user-defined names:
NameChars =
"$?@" // asm specific character
"_0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz",
// This would enable common Chinese characters in identifiers:
Block_CJK_Unified_Ideographs,(这行注释去掉,即可保存)
CURRENT_CULTURE;