diff options
Diffstat (limited to 'meta/recipes-devtools/rust/rust-common.inc')
-rw-r--r-- | meta/recipes-devtools/rust/rust-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rust/rust-common.inc b/meta/recipes-devtools/rust/rust-common.inc index ef70c48d0f..db0bd8fc1b 100644 --- a/meta/recipes-devtools/rust/rust-common.inc +++ b/meta/recipes-devtools/rust/rust-common.inc | |||
@@ -109,7 +109,7 @@ def llvm_features_from_target_fpu(d): | |||
109 | # TARGET_FPU can be hard or soft. +soft-float tell llvm to use soft float | 109 | # TARGET_FPU can be hard or soft. +soft-float tell llvm to use soft float |
110 | # ABI. There is no option for hard. | 110 | # ABI. There is no option for hard. |
111 | 111 | ||
112 | fpu = d.getVar('TARGET_FPU', True) | 112 | fpu = d.getVar('TARGET_FPU') |
113 | return ["+soft-float"] if fpu == "soft" else [] | 113 | return ["+soft-float"] if fpu == "soft" else [] |
114 | 114 | ||
115 | def llvm_features(d): | 115 | def llvm_features(d): |