diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Linker.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Linker.hpp b/include/Linker.hpp index acf31e4..b2e64fe 100644 --- a/include/Linker.hpp +++ b/include/Linker.hpp @@ -2,12 +2,16 @@ #define SIBS_LINKER_HPP #include <functional> +#include <string> namespace sibs { using LinkerFlagCallbackFunc = std::function<void(const std::string&)>; using GlobalIncludeDirCallbackFunc = std::function<void(const std::string&)>; using CflagsCallbackFunc = std::function<void(const std::string&)>; + + bool is_gold_linker_installed(); + bool is_lld_linker_installed(); } #endif //SIBS_LINKER_HPP |