We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed2c9b commit 2dbcd43Copy full SHA for 2dbcd43
DefFileGenerator/bindexplib.cpp
@@ -311,8 +311,9 @@ class DumpSymbols
311
symbol.find("$iexit_thunk") == std::string::npos &&
312
symbol.find("$exit_thunk") == std::string::npos)) {
313
if (!pSymbolTable->Type && (SectChar & IMAGE_SCN_MEM_WRITE)) {
314
+ // WPILib. Don't export any data symbols. We don't want to have to worry about dllimport
315
// Read only (i.e. constants) must be excluded
- this->DataSymbols.insert(symbol);
316
+ //this->DataSymbols.insert(symbol);
317
} else {
318
if (pSymbolTable->Type || !(SectChar & IMAGE_SCN_MEM_READ) ||
319
(SectChar & IMAGE_SCN_MEM_EXECUTE) ||
src/main/resources/arm64/DefFileGenerator.exe
-512 Bytes
src/main/resources/x64/DefFileGenerator.exe
0 Bytes
0 commit comments