blob: 64700b028c601cee7e870b2d3796fdc976187ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$NetBSD: patch-me,v 1.9 2021/04/09 06:40:59 wiz Exp $
clang for SunOS(?)
--- nss/lib/freebl/Makefile.orig 2020-03-06 18:44:20.000000000 +0000
+++ nss/lib/freebl/Makefile
@@ -472,7 +472,11 @@ else
ifdef NS_USE_GCC
LD = gcc
AS = gcc
+ ifdef CC_IS_CLANG
+ ASFLAGS = -no-integrated-as
+ else
ASFLAGS = -x assembler-with-cpp
+ endif
endif
ifeq ($(USE_64),1)
# Solaris for AMD64
|