aboutsummaryrefslogtreecommitdiff
path: root/include/Linker.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Linker.hpp')
-rw-r--r--include/Linker.hpp4
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