diff options
author | tnn <tnn@pkgsrc.org> | 2015-04-07 22:05:36 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2015-04-07 22:05:36 +0000 |
commit | 206fe747602410b45f853f274adbcd5d29095e3f (patch) | |
tree | 28a77f9d2cb9825a2d444dbd2422f726f3681db9 /lang/clang/Makefile | |
parent | bc36ecc72c2405784bd5e844dd0da4c644faee71 (diff) | |
download | pkgsrc-206fe747602410b45f853f274adbcd5d29095e3f.tar.gz |
Unbreak C++ on NetBSD, by popular demand.
Background:
LLVM 3.6 upstream added support for being a native toolchain on NetBSD.
This changed the default C++ runtime library from libstdc++ to libc++.
Patch this in pkgsrc's clang so we continue to use libstdc++ (for now)
Proper support for libc++ should be added later (perhaps w/ PKG_OPTIONs).
Thanks to Joerg for explaining the problem.
Diffstat (limited to 'lang/clang/Makefile')
-rw-r--r-- | lang/clang/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/clang/Makefile b/lang/clang/Makefile index 28f17679590..47c9979882d 100644 --- a/lang/clang/Makefile +++ b/lang/clang/Makefile @@ -1,4 +1,6 @@ -# $NetBSD: Makefile,v 1.38 2015/03/04 13:57:42 tnn Exp $ +# $NetBSD: Makefile,v 1.39 2015/04/07 22:05:36 tnn Exp $ + +PKGREVISION= 1 MAKE_DIRS= etc/llvm INSTALLATION_DIRS= bin lib libexec |