Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jun 2016 23:23:16 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301706 - head/sys/boot/efi
Message-ID:  <201606082323.u58NNGsP065228@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Wed Jun  8 23:23:16 2016
New Revision: 301706
URL: https://svnweb.freebsd.org/changeset/base/301706

Log:
  Also set -fshort-wchar on arm64, this fixes parsing strings from UEFI,
  e.g. on the command line.
  
  Sponsored by:	ABT Systems Ltd

Modified:
  head/sys/boot/efi/Makefile.inc

Modified: head/sys/boot/efi/Makefile.inc
==============================================================================
--- head/sys/boot/efi/Makefile.inc	Wed Jun  8 23:22:59 2016	(r301705)
+++ head/sys/boot/efi/Makefile.inc	Wed Jun  8 23:23:16 2016	(r301706)
@@ -18,4 +18,8 @@ CFLAGS+=	-mno-red-zone
 CFLAGS+=	-mno-aes
 .endif
 
+.if ${MACHINE_CPUARCH} == "aarch64"
+CFLAGS+=	-fshort-wchar
+.endif
+
 .include "../Makefile.inc"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606082323.u58NNGsP065228>