Browse Source

install libcxxabi and libcxx headers when COMPILER_VERSION is clang

ok patrick@
OPENBSD_6_1
jsg 7 years ago
parent
commit
d791e232ad
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/include/Makefile

+ 4
- 2
src/include/Makefile View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.216 2016/11/12 03:04:27 jca Exp $
# $OpenBSD: Makefile,v 1.217 2017/01/27 13:30:39 jsg Exp $
# $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $
# @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91
@ -45,9 +45,11 @@ RDIRS= ../lib/libcurses ../lib/libedit \
.if ${COMPILER_VERSION:L} == "gcc3" .if ${COMPILER_VERSION:L} == "gcc3"
RDIRS+= ../gnu/usr.bin/gcc ../gnu/lib/libobjc RDIRS+= ../gnu/usr.bin/gcc ../gnu/lib/libobjc
PRDIRS+= ../gnu/lib/libstdc++ PRDIRS+= ../gnu/lib/libstdc++
.else
.elif ${COMPILER_VERSION:L} == "gcc4"
RDIRS+= ../gnu/usr.bin/cc/libobjc RDIRS+= ../gnu/usr.bin/cc/libobjc
PRDIRS+= ../gnu/lib/libstdc++-v3 ../gnu/usr.bin/cc/include PRDIRS+= ../gnu/lib/libstdc++-v3 ../gnu/usr.bin/cc/include
.elif ${COMPILER_VERSION:L} == "clang"
RDIRS+= ../lib/libcxxabi ../lib/libcxx
.endif .endif
# prereq implies includes # prereq implies includes


Loading…
Cancel
Save