Bug 1480558 - part 3 - unset AS_DASH_C_FLAG for aarch64 windows; r=mshal

The assembler for this platform doesn't need the special handling
AS_DASH_C_FLAG provides.
This commit is contained in:
Nathan Froyd 2018-08-21 11:00:35 -04:00
Родитель f5fc3571db
Коммит 7661e89923
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -864,6 +864,10 @@ case "$target" in
if test "$AS_BIN"; then
AS="$(basename "$AS_BIN")"
fi
# armasm64 doesn't understand -c.
if test "$CPU_ARCH" = "aarch64"; then
AS_DASH_C_FLAG=
fi
case "$LINKER" in
*lld*)
AR='llvm-lib'