msp430 linker does not accept -znoexecstack. Set linker_is_gnu to false as workaround for now.
This commit is contained in:
parent
da865095cf
commit
cd11cdb88c
1 changed files with 1 additions and 0 deletions
|
@ -17,6 +17,7 @@ pub fn target() -> Target {
|
|||
// dependency on this specific gcc.
|
||||
asm_args: vec!["-mcpu=msp430".to_string()],
|
||||
linker: Some("msp430-elf-gcc".to_string()),
|
||||
linker_is_gnu: false,
|
||||
|
||||
// There are no atomic CAS instructions available in the MSP430
|
||||
// instruction set, and the LLVM backend doesn't currently support
|
||||
|
|
Loading…
Add table
Reference in a new issue