Skip to content
Snippets Groups Projects
Commit 06aaa060 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

fix for win32gcc.

git-svn-id: http://root.cern.ch/svn/root/trunk@7752 27541ba8-7e3a-0410-8455-c3a389f83636
parent 46f85997
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,9 @@ const char kDefined = 'T';
#elif defined(_AIX)
const char *kNM = "nm -C";
const char kDefined = 'T';
#elif defined (__CYGWIN__) && defined(__GNUC__)
const char *kNM = "nm --demangle=gnu-v3";
const char kDefined = 'T';
#elif defined(_WIN32)
const char *kNM = "nm -C";
const char kDefined = 'T';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment