From: patrick Date: Wed, 28 Apr 2021 13:06:20 +0000 (+0000) Subject: Update build infrastructure for libc++ and libc++abi version 11.1.0. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=998fd4492c5c33410febb4d5fd87805d3c47059c;p=openbsd Update build infrastructure for libc++ and libc++abi version 11.1.0. --- diff --git a/gnu/lib/libcxx/Makefile b/gnu/lib/libcxx/Makefile index 2bd77ed4c1f..dd78a48d70c 100644 --- a/gnu/lib/libcxx/Makefile +++ b/gnu/lib/libcxx/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2021/01/11 15:27:21 patrick Exp $ +# $OpenBSD: Makefile,v 1.4 2021/04/28 13:06:20 patrick Exp $ .include @@ -22,6 +22,8 @@ LIB= c++ SRCS+= algorithm.cpp \ any.cpp \ + atomic.cpp \ + barrier.cpp \ bind.cpp \ charconv.cpp \ chrono.cpp \ @@ -43,6 +45,7 @@ SRCS+= algorithm.cpp \ operations.cpp \ optional.cpp \ random.cpp \ + random_shuffle.cpp \ regex.cpp \ shared_mutex.cpp \ stdexcept.cpp \ @@ -95,6 +98,7 @@ STD_HEADERS= __bit_reference \ any \ array \ atomic \ + barrier \ bit \ bitset \ cassert \ @@ -114,6 +118,7 @@ STD_HEADERS= __bit_reference \ compare \ complex \ complex.h \ + concepts \ condition_variable \ csetjmp \ csignal \ @@ -133,8 +138,8 @@ STD_HEADERS= __bit_reference \ errno.h \ exception \ execution \ - filesystem \ fenv.h \ + filesystem \ float.h \ forward_list \ fstream \ @@ -148,6 +153,7 @@ STD_HEADERS= __bit_reference \ iostream \ istream \ iterator \ + latch \ limits \ limits.h \ list \ @@ -159,6 +165,7 @@ STD_HEADERS= __bit_reference \ module.modulemap \ mutex \ new \ + numbers \ numeric \ optional \ ostream \ @@ -167,6 +174,7 @@ STD_HEADERS= __bit_reference \ ratio \ regex \ scoped_allocator \ + semaphore \ set \ setjmp.h \ shared_mutex \ diff --git a/gnu/lib/libcxx/shlib_version b/gnu/lib/libcxx/shlib_version index 5b844bbf422..d0f0988b418 100644 --- a/gnu/lib/libcxx/shlib_version +++ b/gnu/lib/libcxx/shlib_version @@ -1,2 +1,2 @@ -major=7 +major=8 minor=0 diff --git a/gnu/lib/libcxxabi/Makefile b/gnu/lib/libcxxabi/Makefile index f52ea018846..b3626afdeb7 100644 --- a/gnu/lib/libcxxabi/Makefile +++ b/gnu/lib/libcxxabi/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2021/01/11 15:27:21 patrick Exp $ +# $OpenBSD: Makefile,v 1.3 2021/04/28 13:06:20 patrick Exp $ .include @@ -30,7 +30,6 @@ SRCS+= abort_message.cpp \ cxa_handlers.cpp \ cxa_personality.cpp \ cxa_thread_atexit.cpp \ - cxa_unexpected.cpp \ cxa_vector.cpp \ cxa_virtual.cpp \ fallback_malloc.cpp \