We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99efc51 commit df751d8Copy full SHA for df751d8
compiler/rustc_target/src/spec/aarch64_unknown_freebsd.rs
@@ -1,11 +1,17 @@
1
-use crate::spec::{Target, TargetOptions};
+use crate::spec::{SanitizerSet, Target, TargetOptions};
2
3
pub fn target() -> Target {
4
Target {
5
llvm_target: "aarch64-unknown-freebsd".to_string(),
6
pointer_width: 64,
7
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
8
arch: "aarch64".to_string(),
9
- options: TargetOptions { max_atomic_width: Some(128), ..super::freebsd_base::opts() },
+ options: TargetOptions {
10
+ max_atomic_width: Some(128),
11
+ supported_sanitizers: SanitizerSet::ADDRESS
12
+ | SanitizerSet::MEMORY
13
+ | SanitizerSet::THREAD,
14
+ ..super::freebsd_base::opts()
15
+ },
16
}
17
0 commit comments