From 31899d0a48108515d13508b660fb3bb82b869430 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 30 Oct 2018 13:35:36 +0100 Subject: Add support for emscripten, fix compdb for tests --- include/Exec.hpp | 1 + include/env.hpp | 5 +++++ 2 files changed, 6 insertions(+) (limited to 'include') diff --git a/include/Exec.hpp b/include/Exec.hpp index 9996073..93ce307 100644 --- a/include/Exec.hpp +++ b/include/Exec.hpp @@ -14,6 +14,7 @@ namespace sibs }; Result exec(const _tinydir_char_t *cmd, bool print = false); + Result exec(const FileString &cmd, bool print = false); } #endif //SIBS_EXEC_HPP diff --git a/include/env.hpp b/include/env.hpp index 72b7828..b25cb69 100644 --- a/include/env.hpp +++ b/include/env.hpp @@ -59,6 +59,11 @@ #define OS_TYPE OS_TYPE_LINUX #endif +#ifdef __EMSCRIPTEN__ + #define OS_FAMILY OS_FAMILY_POSIX + #define OS_TYPE OS_TYPE_LINUX +#endif + #if defined(__GNUC__) #if defined(__x86_64__) || defined(__pc64__) #define SIBS_ENV_64BIT -- cgit v1.2.3