NetBSD/lib/librumpuser
rin a8c74629f6 Support aarch64eb in */config.guess.
Cherry-picked from upstream:
https://git.savannah.gnu.org/gitweb/?p=config.git;a=commit;h=1c4398015583eb77bc043234f5734be055e64bea

Everything except external/apache2/llvm/dist/llvm/cmake/config.guess
is patched, which is under vendor tag and cannot be modified. I expect
that this file is not actually used as we use hand-crafted version of
configure script instead of cmake for building LLVM.

Note that external/apache2/llvm/autoconf/autoconf/config.guess has
already been committed on Oct. 20, but commit message disappeared as
cvs aborted due to "permission denied" when trying to modify the file
mentioned above. Sorry for confusing you.

Also note that GMP uses its own config.guess Patch for
external/lgpl3/gmp/dist/config.guess is provided by ryo@. Thanks!
2020-11-17 10:35:10 +00:00
..
build-aux Support aarch64eb in */config.guess. 2020-11-17 10:35:10 +00:00
Makefile
README.compileopts
configure
configure.ac
rumpfiber.c
rumpfiber.h
rumpfiber_bio.c
rumpfiber_sp.c
rumpuser.c
rumpuser_bio.c
rumpuser_component.c
rumpuser_component.h
rumpuser_config.h.in
rumpuser_daemonize.c
rumpuser_dl.c Teach rump to process __link_set_evcnts entries. (Second part of 2020-03-22 13:30:10 +00:00
rumpuser_errtrans.c
rumpuser_file.c
rumpuser_int.h
rumpuser_mem.c
rumpuser_port.h
rumpuser_pth.c
rumpuser_pth_dummy.c
rumpuser_random.c
rumpuser_sigtrans.c
rumpuser_sp.c Allocate one more byte so that we are always NUL-terminated, and remove 2020-05-06 12:44:36 +00:00
shlib_version
sp_common.c Fix incompatible function pointer casts 2020-06-13 16:51:59 +00:00

README.compileopts

        $NetBSD: README.compileopts,v 1.1 2016/01/25 00:24:23 pooka Exp $

This file describes compile-time options (make variables) for
the rumpuser POSIX implementation.

Note: after changing an option, do a clean build.

Global options:

    RUMPUSER_THREADS

values: pthread/none/fiber or <undefined>
defval: <undefined>
effect: Define the way threading is implemented in the rumpuser hypercall
	implmentation.
	<undefined> - use default implementation (currently "pthread")
	pthread     - use pthreads to implement threading
	none        - do not support kernel threads at all
	fiber       - user a fiber interface, cooperatively scheduled contexts