aboutsummaryrefslogtreecommitdiff
path: root/helix-loader/src/grammar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-loader/src/grammar.rs')
-rw-r--r--helix-loader/src/grammar.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-loader/src/grammar.rs b/helix-loader/src/grammar.rs
index 99791f26..d2769d81 100644
--- a/helix-loader/src/grammar.rs
+++ b/helix-loader/src/grammar.rs
@@ -350,7 +350,10 @@ fn build_tree_sitter_library(src_path: &Path, grammar: GrammarConfiguration) ->
}
}
command.arg("-xc").arg(parser_path);
- if cfg!(all(unix, not(target_os = "macos"))) {
+ if cfg!(all(
+ unix,
+ not(any(target_os = "macos", target_os = "illumos"))
+ )) {
command.arg("-Wl,-z,relro,-z,now");
}
}