so they don't work, but I suspect we don't need them:
usr/bin/chfn
usr/bin/chsh
usr/bin/findmnt
usr/bin/login
usr/bin/lsblk
usr/bin/lscpu
usr/bin/lsipc
usr/bin/lslogins
usr/bin/lsmem
usr/bin/lsns
usr/bin/script
usr/bin/setpriv
usr/sbin/clock
usr/sbin/debugfs
usr/sbin/hwclock
usr/sbin/runuser
usr/sbin/zramctl
i386_set_ldt: Invalid argument
Did you reconfigure your kernel with "options USER_LDT"?
PR: 224264
Submitted by: rozhuk.im@gmail.com
Reviewed by: arrowd
MFH: 2019Q3 (documentation to address crash)
revision 508242 updated the master port but didn't update qemu-utils. No
PORTREVISION bump because 508242 already bumped PORTVERSION.
Reported by: Niels <support@dinamite.nl>
- qemu 3.X branch in the tree seems like stable as no major complainnt has
beeen reached and there has been no commit to 2.X ranch since last 13
months. 3.1.X will be updated shortly after build completes
- USES=gl is not always needed [1]
PR: 238364 [1]
Submitted by: pizzamig [1]
- Support for Passport HTTP redirects.
- A bunch of header updates.
- Various bug fixes.
And some new stuff coming in via the optional Staging patchset.
- Broken with libc++ 6 and there's not enough time before the next bulk build.
- PORTEPOCH isn't necessary as if built it's good, and the update will return
rpcs3/util/atomic.cpp:55:51: error: no type named 'node_type' in 'std::__1::multimap<const void *, (anonymous namespace)::waiter, std::__1::less<const void *>, std::__1::allocator<std::__1::pair<const void *const, (anonymous namespace)::waiter> > >'; did you mean 'size_type'?
thread_local std::multimap<const void*, waiter>::node_type s_tls_waiter = []()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
size_type
/usr/include/c++/v1/map:1507:60: note: 'size_type' declared here
typedef typename __alloc_traits::size_type size_type;
^
rpcs3/util/atomic.cpp:59:16: error: no member named 'extract' in 'std::__1::multimap<const void *, (anonymous namespace)::waiter, std::__1::less<const void *>, std::__1::allocator<std::__1::pair<const void *const, (anonymous namespace)::waiter> > >'
return dummy.extract(dummy.emplace(nullptr, &s_tls_waiter));
~~~~~ ^
rpcs3/util/atomic.cpp:55:61: error: cannot initialize a variable of type 'std::multimap<const void *, waiter>::size_type' (aka 'unsigned long') with an rvalue of type 'void'
thread_local std::multimap<const void*, waiter>::node_type s_tls_waiter = []()
^ ~~~~
rpcs3/util/atomic.cpp:92:69: error: no type named 'node_type' in 'std::__1::multimap<const void *, (anonymous namespace)::waiter, std::__1::less<const void *>, std::__1::allocator<std::__1::pair<const void *const, (anonymous namespace)::waiter> > >'; did you mean 'size_type'?
const auto ptls = static_cast<std::multimap<const void*, waiter>::node_type*>(found->second.tls_ptr);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
size_type
/usr/include/c++/v1/map:1507:60: note: 'size_type' declared here
typedef typename __alloc_traits::size_type size_type;
^
rpcs3/util/atomic.cpp:93:21: error: no member named 'extract' in 'std::__1::multimap<const void *, (anonymous namespace)::waiter, std::__1::less<const void *>, std::__1::allocator<std::__1::pair<const void *const, (anonymous namespace)::waiter> > >'
*ptls = wmap.list.extract(found);
~~~~~~~~~ ^
rpcs3/util/atomic.cpp:94:7: error: member reference base type 'unsigned long' is not a structure or union
ptls->mapped().cond.notify_one();
~~~~^ ~~~~~~
6 errors generated.
powerpc64 requires the same Makefile fix as amd64.
Additionally, 684f7ec5d6 is necessary.
Approved by: linimon (mentor)
Differential Revision: https://reviews.freebsd.org/D21055
- fix qemu-user-static hangs with wc -l //
- add qemu-user-static redirection for riscv64, no support, yet.
Thanks to kevans, miki and others for fixing this nonsense.
Submitted by: kevans miki
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330