Skip to content
Snippets Groups Projects
Commit ce5eea24 authored by Philippe Canal's avatar Philippe Canal
Browse files

add -Z1 needed when build with G__ROOT (implied otherwise)

git-svn-id: http://root.cern.ch/svn/root/trunk@22877 27541ba8-7e3a-0410-8455-c3a389f83636
parent 911bb554
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,15 @@ bool debugMode = true;
const char *shellSeparator = "&&";
#ifdef G__ROOT
// ROOT disable the autoloading of the standard header from the compiled
// dictionary (see G__autoload_stdheader) however the cint test requires it
std::string mkcintoption = " -Z1 ";
std::string cintoption = " -Z1";
#else
std::string mkcintoption = "";
std::string cintoption = "";
#endif // G__ROOT
std::string compileroption = "";
std::string prefixcmd = "";
......
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