aboutsummaryrefslogtreecommitdiff
path: root/include/Linker.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Linker.hpp')
-rw-r--r--include/Linker.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Linker.hpp b/include/Linker.hpp
index acf31e4..59e39b3 100644
--- a/include/Linker.hpp
+++ b/include/Linker.hpp
@@ -2,12 +2,17 @@
#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();
+ bool is_mold_linker_installed();
}
#endif //SIBS_LINKER_HPP