From: Nathan Binkert Date: Sat, 25 Oct 2003 22:19:32 +0000 (-0400) Subject: Add the directory where the ini file was found into the #include X-Git-Tag: m5_1.0_beta2~355 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff7b6892bcd00c53e1aa8beb86f5da2ab90fe733;p=gem5.git Add the directory where the ini file was found into the #include search path --HG-- extra : convert_revision : 9a6bceb931613b718bf5a561b354ba9ccb847a78 --- diff --git a/base/inifile.cc b/base/inifile.cc index 6baf22850..52468f46e 100644 --- a/base/inifile.cc +++ b/base/inifile.cc @@ -85,6 +85,17 @@ IniFile::loadCPP(const string &file, vector &cppArgs) tmpf.close(); + const char *cfile = file.c_str(); + char *dir = basename(cfile); + char *dir_arg = NULL; + if (*dir != '.' && dir != cfile) { + string arg = "-I"; + arg += dir; + + dir_arg = new char[arg.size() + 1]; + strcpy(dir_arg, arg.c_str()); + } + #ifdef CPP_PIPE if (pipe(fd) == -1) return false; @@ -120,6 +131,9 @@ IniFile::loadCPP(const string &file, vector &cppArgs) for (int i = 0; i < arg_count; i++) args[nextArg++] = cppArgs[i]; + if (dir_arg) + args[nextArg++] = dir_arg; + args[nextArg++] = filename; args[nextArg++] = NULL; @@ -135,6 +149,8 @@ IniFile::loadCPP(const string &file, vector &cppArgs) int retval; waitpid(pid, &retval, 0); + delete [] dir_arg; + // check for normal completion of CPP if (!WIFEXITED(retval) || WEXITSTATUS(retval) != 0) return false;