diff --git a/ice40/main.cc b/ice40/main.cc index 3b5ffd53..e87862be 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -20,6 +20,7 @@ #ifndef PYTHON_MODULE #include +#include #include #include #include @@ -102,7 +103,7 @@ int main(int argc, char *argv[]) if (vm.count("help") || argc == 1) { help: - std::cout << basename(argv[0]) + std::cout << boost::filesystem::basename(argv[0]) << " -- Next Generation Place and Route (git " "sha1 " GIT_COMMIT_HASH_STR ")\n"; std::cout << "\n"; @@ -111,7 +112,7 @@ int main(int argc, char *argv[]) } if (vm.count("version")) { - std::cout << basename(argv[0]) + std::cout << boost::filesystem::basename(argv[0]) << " -- Next Generation Place and Route (git " "sha1 " GIT_COMMIT_HASH_STR ")\n"; return 1;