Searched +full:build +full:- +full:some +full:- +full:softmmu +full:- +full:plugins (Results 1 – 3 of 3) sorted by relevance
1 # -*- Mode: makefile -*-5 # These are complicated by the fact we want to build them for guest7 # ones we have cross-compilers for or docker images with8 # cross-compilers.11 # cross-compilers don't always have a large amount of libraries14 # We only include the host build system for SRC_PATH and we don't17 # CC - the C compiler command18 # EXTRA_CFLAGS - any extra CFLAGS19 # BUILD_STATIC - are we building static binaries21 # By default all tests are statically compiled but some host systems[all …]
6 # Unset some variables known to interfere with behavior of common tools,14 source_path=$(cd "$(dirname -- "$0")"; pwd)16 if test "$PWD" -ef "$source_path"18 echo "Using './build' as the directory for build output"20 MARKER=build/auto-created-by-configure22 if test -e build24 if test -f $MARKER26 rm -rf build28 echo "ERROR: ./build dir already exists and was not previously created by configure"33 if ! mkdir build || ! touch $MARKER[all …]
15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py'))28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')31 # configure runs. Since it is in the build directory35 tmpdir = meson.current_build_dir() / 'meson-private/temp'61 # type of binaries to build66 have_linux_user = have_linux_user or target.endswith('linux-user')67 have_bsd_user = have_bsd_user or target.endswith('bsd-user')68 have_system = have_system or target.endswith('-softmmu')113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"')120 message('To use Rust you can install a new version with "cargo install bindgen-cli"')[all …]