diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-08-22 12:05:11 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-08-22 12:05:11 +0000 |
commit | c37f312d3b9950eb66602e669c548a0bfabd4b7d (patch) | |
tree | 7b31154f38fea19b5c7cdfb88d9b31e5c5358a90 /lib/libc++/Makefile | |
parent | 0ad4bfaef13a186d3c58844b12cde9440a1e8b08 (diff) | |
download | src-c37f312d3b9950eb66602e669c548a0bfabd4b7d.tar.gz src-c37f312d3b9950eb66602e669c548a0bfabd4b7d.zip |
Add a few new source files to libc++, in particular the implementation
part of std::random_shuffle. These were split off at some point by
upstream, but I forgot to add them to our Makefile.
This should allow some ports which use std::random_shuffle to correctly
link again.
Reported by: thierry
PR: 248795
MFC after: 6 weeks
X-MFX-With: r364284
Notes
Notes:
svn path=/head/; revision=364482
Diffstat (limited to 'lib/libc++/Makefile')
-rw-r--r-- | lib/libc++/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc++/Makefile b/lib/libc++/Makefile index 9e4ccbeb6dc7..330ffaaed9cb 100644 --- a/lib/libc++/Makefile +++ b/lib/libc++/Makefile @@ -16,6 +16,8 @@ SHLIB_LDSCRIPT= libc++.ldscript SRCS+= algorithm.cpp SRCS+= any.cpp +SRCS+= atomic.cpp +SRCS+= barrier.cpp SRCS+= bind.cpp SRCS+= charconv.cpp SRCS+= chrono.cpp @@ -38,6 +40,7 @@ SRCS+= mutex_destructor.cpp SRCS+= new.cpp SRCS+= optional.cpp SRCS+= random.cpp +SRCS+= random_shuffle.cpp SRCS+= regex.cpp SRCS+= shared_mutex.cpp SRCS+= stdexcept.cpp |