diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-02 12:54:23 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-02 12:54:23 +0000 |
| commit | c5cd97dd8968f5f6ad4f130a68008beacda78b64 (patch) | |
| tree | c62e0b5c96d6abf116b47dceee64901b7b40d2d2 /src/build_settings.cpp | |
| parent | a4b68b93f2db127fde34c935e0764deaeb06a518 (diff) | |
Improve `wasm-import` semantics to allow procedures from different import paths
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index b758f439c..63752ce68 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -516,6 +516,8 @@ bool allow_check_foreign_filepath(void) { String const WIN32_SEPARATOR_STRING = {cast(u8 *)"\\", 1}; String const NIX_SEPARATOR_STRING = {cast(u8 *)"/", 1}; +String const WASM_MODULE_NAME_SEPARATOR = str_lit(".."); + String internal_odin_root_dir(void); String odin_root_dir(void) { if (global_module_path_set) { |