summaryrefslogtreecommitdiff
path: root/Source/bindexplib.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/bindexplib.h')
-rw-r--r--Source/bindexplib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/bindexplib.h b/Source/bindexplib.h
index 3e22ac78ec..6c066c5be6 100644
--- a/Source/bindexplib.h
+++ b/Source/bindexplib.h
@@ -12,13 +12,16 @@
class bindexplib
{
public:
- bindexplib() {}
+ bindexplib() { NmPath = "nm"; }
bool AddDefinitionFile(const char* filename);
bool AddObjectFile(const char* filename);
void WriteFile(FILE* file);
+ void SetNmPath(std::string const& nm);
+
private:
std::set<std::string> Symbols;
std::set<std::string> DataSymbols;
+ std::string NmPath;
};
#endif