Home
last modified time | relevance | path

Searched +full:- +full:- +full:enable +full:- +full:gcov (Results 1 – 12 of 12) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-devtools/gcc/
H A Dgcc-target.inc1 GCCMULTILIB = "--enable-multilib"
2 require gcc-configure-common.inc
5 --with-gxx-libcxx-include-dir=${target_includedir}/c++/v1 \
6 --with-build-sysroot=${STAGING_DIR_TARGET} \
9 EXTRA_OECONF:append:linuxstdbase = " --enable-clocale=gnu"
12 # be compatible with that of gcc-runtime (which is cross compiled to be target
14 # affect the ABI in the gcc-runtime libs. Since we can't rely on gcc on the
15 # target to always be passed -march etc, its built-in default needs to be safe.
19 EXTRA_OECONF:append:armv6:class-target = " --with-arch=armv6${ARMFPARCHEXT}"
20 EXTRA_OECONF:append:armv7a:class-target = " --with-arch=armv7-a${ARMFPARCHEXT}"
[all …]
/openbmc/qemu/scripts/coverage/
H A Dcompare_gcov_json.py5 # - create two build dirs with --enable-gcov
6 # - run set of tests in each
7 # - run make coverage-html in each
8 # - run gcovr --json --exclude-unreachable-branches \
9 # --print-summary -o coverage.json --root ../../ . *.p
13 # SPDX-License-Identifier: GPL-2.0-or-later
26 parser.add_argument('-a', type=Path, default=None,
29 parser.add_argument('-b', type=Path, default=None,
32 parser.add_argument('--verbose', action='store_true', default=False,
38 # See https://gcovr.com/en/stable/output/json.html#json-format-reference
[all …]
/openbmc/qemu/.gitlab-ci.d/
H A Dbuildtest.yml2 - local: '/.gitlab-ci.d/buildtest-template.yml'
4 build-system-alpine:
6 - .native_build_job_template
7 - .native_build_artifact_template
9 - job: amd64-alpine-container
12 TARGETS: avr-softmmu loongarch64-softmmu mips64-softmmu mipsel-softmmu
13 MAKE_CHECK_ARGS: check-build
14 CONFIGURE_ARGS: --enable-docs --enable-trace-backends=log,simple,syslog
16 check-system-alpine:
19 - job: build-system-alpine
[all …]
/openbmc/openbmc-build-scripts/scripts/
H A Dbuild-unit-test-docker7 # default is openbmc/ubuntu-unit-test
9 # FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker
35 # typing.Dict is used for type-hints.
61 def __init_subclass__(cls, **kwargs: Any) -> None:
75 # url [optional]: lambda function to create URL: (package, rev) -> url.
105 …g, rev: f"https://github.com/boostorg/{pkg}/releases/download/{pkg}-{rev}/{pkg}-{rev}-cmake.tar.gz"
111 … f" --prefix={prefix} --with-libraries=atomic,context,coroutine,filesystem,process,url"
114 f"./b2 install --prefix={prefix} valgrind=on",
120 build_steps=[f"cp -a include/cereal/ {prefix}/include/"],
143 f"-DARCH={arch_mapping.get(__import__('platform').machine(), 'x64')}",
[all …]
/openbmc/qemu/tests/functional/qemu_test/
H A Dtuxruntest.py10 # SPDX-License-Identifier: GPL-2.0-or-later
22 # Tests are ~10-40s, allow for --debug/--enable-gcov overhead
32 # Pre-init TuxRun specific settings: Most machines work with
55 failure_message='Kernel panic - not syncing',
76 + f"file.filename={disk},node-name=hd0"
82 self.vm.add_args('-kernel', kernel,
83 '-append', self.kcmd_line,
84 '-blockdev', blockdev)
88 self.vm.add_args('-device', self.extradev)
90 self.vm.add_args('-device',
[all …]
/openbmc/qemu/scripts/
H A Dmeson-buildoptions.py28 # Options with nonstandard names (e.g. --with/--without) or OS-dependent
38 "b_coverage": "gcov",
40 "coroutine_backend": "with-coroutine",
41 "debug": "debug-info",
42 "malloc": "enable-malloc",
43 "pkgversion": "with-pkgversion",
45 "qemu_suffix": "with-suffix",
46 "trace_backends": "enable-trace-backends",
47 "trace_file": "with-trace-file",
58 # via -D, because it's a mix of CFLAGS and --extra-cflags); for specific
[all …]
H A Dmeson-buildoptions.sh1 # This file is generated by meson-buildoptions.py, do not edit!
3 printf "%s\n" ' --audio-drv-list=CHOICES Set audio driver list [default] (choices: alsa/co'
6 printf "%s\n" ' --bindir=VALUE Executable directory [bin]'
7 printf "%s\n" ' --block-drv-ro-whitelist=VALUE'
8 printf "%s\n" ' set block driver read-only whitelist (by default'
9 printf "%s\n" ' affects only QEMU, not tools like qemu-img)'
10 printf "%s\n" ' --block-drv-rw-whitelist=VALUE'
11 printf "%s\n" ' set block driver read-write whitelist (by default'
12 printf "%s\n" ' affects only QEMU, not tools like qemu-img)'
13 printf "%s\n" ' --datadir=VALUE Data file directory [share]'
[all …]
/openbmc/qemu/docs/devel/testing/
H A Dmain.rst7 everything from unit testing and exercising specific sub-systems all
9 tests you can run ``make check-help`` from either the source or build
16 [./pyvenv/bin/]meson test --suite qemu:softfloat
38 -------------------------
49 Different sub-types of "make check" tests will be explained below.
55 .. _unit-tests:
68 In QEMU, unit tests can be invoked with ``make check-unit``. They are
76 1. Create a new source file. For example, ``tests/unit/foo-test.c``.
86 is in ``tests/unit/foo-test.c``, it is enough to add an entry like::
90 'foo-test': [],
[all …]
/openbmc/u-boot/scripts/
H A DMakefile.lib1 # SPDX-License-Identifier: GPL-2.0
3 asflags-y += $(EXTRA_AFLAGS)
4 ccflags-y += $(EXTRA_CFLAGS)
5 cppflags-y += $(EXTRA_CPPFLAGS)
6 ldflags-y += $(EXTRA_LDFLAGS)
10 export KBUILD_SUBDIR_ASFLAGS := $(KBUILD_SUBDIR_ASFLAGS) $(subdir-asflags-y)
11 export KBUILD_SUBDIR_CCFLAGS := $(KBUILD_SUBDIR_CCFLAGS) $(subdir-ccflags-y)
16 # When an object is listed to be built compiled-in and modular,
17 # only build the compiled-in version
19 obj-m := $(filter-out $(obj-y),$(obj-m))
[all …]
/openbmc/qemu/
H A Dmeson.build15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py'))
28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
35 tmpdir = meson.current_build_dir() / 'meson-private/temp'
66 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"')
128 '--rustc-version', rustc.version(),
129 '--workspace', meson.project_source_root() / 'rust']
[all …]
/openbmc/
Dopengrok1.0.log1 2025-12-10 03:01:05.333-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-12-10 03:01:05.409-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]
Dopengrok2.0.log1 2025-12-09 03:01:08.224-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-12-09 03:01:08.298-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]