-
Notifications
You must be signed in to change notification settings - Fork 191
Open
Description
12的版本的时候可以指定混淆的模式,include 和exclude,但是这个版本里面我没有找到对应的代码,是不是放弃这个功能了呀?
这个是12版本的:
cl::opt<FilterModeEnum> FilterMode(
"filter-mode", cl::init(FilterModeEnum::NONE),
cl::values(
clEnumValN(FilterModeEnum::NONE, "none", "Do not filter any functions"),
clEnumValN(FilterModeEnum::INCLUDE, "include",
"Only obfuscate functions with TAG_INCLUDE annotation"),
clEnumValN(FilterModeEnum::EXCLUDE, "exclude",
"Only obfuscate functions without TAG_EXCLUDE annotation")),
cl::desc("PlutoObfuscator - HelloWorld Pass"));如果没有放弃的话,当前版本需要怎么使用呢?
Metadata
Metadata
Assignees
Labels
No labels