@@ -15,7 +15,7 @@ namespace objcopy {
15
15
16
16
Expected<const COFFConfig &> ConfigManager::getCOFFConfig () const {
17
17
if (!Common.SplitDWO .empty () || !Common.SymbolsPrefix .empty () ||
18
- !Common.SymbolsPrefixRemove .empty () ||
18
+ !Common.SymbolsPrefixRemove .empty () || !Common. SymbolsToSkip . empty () ||
19
19
!Common.AllocSectionsPrefix .empty () || !Common.KeepSection .empty () ||
20
20
!Common.SymbolsToGlobalize .empty () || !Common.SymbolsToKeep .empty () ||
21
21
!Common.SymbolsToLocalize .empty () || !Common.SymbolsToWeaken .empty () ||
@@ -34,7 +34,7 @@ Expected<const COFFConfig &> ConfigManager::getCOFFConfig() const {
34
34
35
35
Expected<const MachOConfig &> ConfigManager::getMachOConfig () const {
36
36
if (!Common.SplitDWO .empty () || !Common.SymbolsPrefix .empty () ||
37
- !Common.SymbolsPrefixRemove .empty () ||
37
+ !Common.SymbolsPrefixRemove .empty () || !Common. SymbolsToSkip . empty () ||
38
38
!Common.AllocSectionsPrefix .empty () || !Common.KeepSection .empty () ||
39
39
!Common.SymbolsToGlobalize .empty () || !Common.SymbolsToKeep .empty () ||
40
40
!Common.SymbolsToLocalize .empty () ||
@@ -56,7 +56,7 @@ Expected<const MachOConfig &> ConfigManager::getMachOConfig() const {
56
56
Expected<const WasmConfig &> ConfigManager::getWasmConfig () const {
57
57
if (!Common.AddGnuDebugLink .empty () || Common.ExtractPartition ||
58
58
!Common.SplitDWO .empty () || !Common.SymbolsPrefix .empty () ||
59
- !Common.SymbolsPrefixRemove .empty () ||
59
+ !Common.SymbolsPrefixRemove .empty () || !Common. SymbolsToSkip . empty () ||
60
60
!Common.AllocSectionsPrefix .empty () ||
61
61
Common.DiscardMode != DiscardType::None || !Common.SymbolsToAdd .empty () ||
62
62
!Common.SymbolsToGlobalize .empty () || !Common.SymbolsToLocalize .empty () ||
@@ -77,7 +77,7 @@ Expected<const WasmConfig &> ConfigManager::getWasmConfig() const {
77
77
Expected<const XCOFFConfig &> ConfigManager::getXCOFFConfig () const {
78
78
if (!Common.AddGnuDebugLink .empty () || Common.ExtractPartition ||
79
79
!Common.SplitDWO .empty () || !Common.SymbolsPrefix .empty () ||
80
- !Common.SymbolsPrefixRemove .empty () ||
80
+ !Common.SymbolsPrefixRemove .empty () || !Common. SymbolsToSkip . empty () ||
81
81
!Common.AllocSectionsPrefix .empty () ||
82
82
Common.DiscardMode != DiscardType::None || !Common.AddSection .empty () ||
83
83
!Common.DumpSection .empty () || !Common.SymbolsToAdd .empty () ||
0 commit comments