1 # $FreeBSD$
   2 
   3 SSP_CFLAGS=
   4 
   5 .if ${MACHINE_CPUARCH} == "arm"
   6 # Do not generate movt/movw, because the relocation fixup for them does not
   7 # translate to the -Bsymbolic -pie format required by self_reloc() in loader(8).
   8 # Also, the fpu is not available in a standalone environment.
   9 CFLAGS.clang+=  -mllvm -arm-use-movt=0
  10 CFLAGS.clang+=  -mfpu=none
  11 .endif