python3.12-black-25.1.0
re.IGNORECASE if isinstance(gitignore, WindowsPath) else 0,
)
E assert None
E + where None = <function search at 0x7ffff4545e60>('Could not parse /build/black-25.1.0/tests/data/invalid_nested_gitignore_tests/a/.gitignore', "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n", 0)E + where <function search at 0x7ffff4545e60> = re.search
E + and 'Could not parse /build/black-25.1.0/tests/data/invalid_nested_gitignore_tests/a/.gitignore' = <built-in method replace of str object at 0x7fffa30b0410>('\\', '\\\\')E + where <built-in method replace of str object at 0x7fffa30b0410> = 'Could not parse /build/black-25.1.0/tests/data/invalid_nested_gitignore_tests/a/.gitignore'.replace
E + and "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <built-in method decode of bytes object at 0x7fffa118ee70>()
E + where <built-in method decode of bytes object at 0x7fffa118ee70> = b"Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n".decode
E + where b"Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <Result SystemExit(1)>.stderr_bytes
tests/test_black.py:2541: AssertionError
_________________________ test_ipynb_diff_with_change __________________________
def test_ipynb_diff_with_change() -> None:
result = runner.invoke(
main,
[
str(get_case_path("jupyter", "notebook_trailing_newline.ipynb")),"--diff",
f"--config={EMPTY_CONFIG}",],
)
expected = "@@ -1,3 +1,3 @@\n %%time\n \n-print('foo')\n+print(\"foo\")\n"> assert expected in result.output
E assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n"E + where "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <Result SystemExit(1)>.output
tests/test_ipynb.py:451: AssertionError
________________________ test_ipynb_diff_with_no_change ________________________
def test_ipynb_diff_with_no_change() -> None:
result = runner.invoke(
main,
[
str(get_case_path("jupyter", "notebook_without_changes.ipynb")),"--diff",
f"--config={EMPTY_CONFIG}",],
)
expected = "1 file would be left unchanged."
> assert expected in result.output
E assert '1 file would be left unchanged.' in "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n"
E + where "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <Result SystemExit(1)>.output
tests/test_ipynb.py:464: AssertionError
______________ test_cache_isnt_written_if_no_jupyter_deps_single _______________
monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7fffa3490ab0>
tmp_path = PosixPath('/build/pytest-of-nixbld/pytest-0/test_cache_isnt_written_if_no_0')def test_cache_isnt_written_if_no_jupyter_deps_single(
monkeypatch: MonkeyPatch, tmp_path: pathlib.Path
) -> None:
# Check that the cache isn't written to if Jupyter dependencies aren't installed.
jupyter_dependencies_are_installed.cache_clear()
nb = get_case_path("jupyter", "notebook_trailing_newline.ipynb")tmp_nb = tmp_path / "notebook.ipynb"
tmp_nb.write_bytes(nb.read_bytes())
monkeypatch.setattr("black.jupyter_dependencies_are_installed", lambda warn: False)result = runner.invoke(
main, [str(tmp_path / "notebook.ipynb"), f"--config={EMPTY_CONFIG}"])
> assert "No Python files are present to be formatted. Nothing to do" in result.output
E assert 'No Python files are present to be formatted. Nothing to do' in "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n"
E + where "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <Result SystemExit(1)>.output
tests/test_ipynb.py:479: AssertionError
________________ test_cache_isnt_written_if_no_jupyter_deps_dir ________________
monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7fffa6389070>
tmp_path = PosixPath('/build/pytest-of-nixbld/pytest-0/test_cache_isnt_written_if_no_1')def test_cache_isnt_written_if_no_jupyter_deps_dir(
monkeypatch: MonkeyPatch, tmp_path: pathlib.Path
) -> None:
# Check that the cache isn't written to if Jupyter dependencies aren't installed.
jupyter_dependencies_are_installed.cache_clear()
nb = get_case_path("jupyter", "notebook_trailing_newline.ipynb")tmp_nb = tmp_path / "notebook.ipynb"
tmp_nb.write_bytes(nb.read_bytes())
monkeypatch.setattr(
"black.files.jupyter_dependencies_are_installed", lambda warn: False
)
result = runner.invoke(main, [str(tmp_path), f"--config={EMPTY_CONFIG}"])> assert "No Python files are present to be formatted. Nothing to do" in result.output
E assert 'No Python files are present to be formatted. Nothing to do' in "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n"
E + where "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <Result SystemExit(1)>.output
tests/test_ipynb.py:500: AssertionError
_______________________________ test_ipynb_flag ________________________________
tmp_path = PosixPath('/build/pytest-of-nixbld/pytest-0/test_ipynb_flag0')def test_ipynb_flag(tmp_path: pathlib.Path) -> None:
nb = get_case_path("jupyter", "notebook_trailing_newline.ipynb")tmp_nb = tmp_path / "notebook.a_file_extension_which_is_definitely_not_ipynb"
tmp_nb.write_bytes(nb.read_bytes())
result = runner.invoke(
main,
[
str(tmp_nb),
"--diff",
"--ipynb",
f"--config={EMPTY_CONFIG}",],
)
expected = "@@ -1,3 +1,3 @@\n %%time\n \n-print('foo')\n+print(\"foo\")\n"> assert expected in result.output
E assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n"E + where "Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4\n" = <Result SystemExit(1)>.output
tests/test_ipynb.py:523: AssertionError
___________________________ test_ipynb_and_pyi_flags ___________________________
def test_ipynb_and_pyi_flags() -> None:
nb = get_case_path("jupyter", "notebook_trailing_newline.ipynb")result = runner.invoke(
main,
[
str(nb),
"--pyi",
"--ipynb",
"--diff",
f"--config={EMPTY_CONFIG}",],
)
assert isinstance(result.exception, SystemExit)
expected = "Cannot pass both `pyi` and `ipynb` flags!\n"
> assert result.output == expected
E AssertionError: assert 'Python 3.12....thon 3.12.4\n' == 'Cannot pass ...ynb` flags!\n'
E
E - Cannot pass both `pyi` and `ipynb` flags!
E + Python 3.12.5 has a memory safety issue that can cause Black's AST safety checks to fail. Please upgrade to Python 3.12.6 or downgrade to Python 3.12.4
tests/test_ipynb.py:540: AssertionError
=========================== short test summary info ============================
FAILED tests/test_black.py::BlackTestCase::test_async_as_identifier - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_bpo_2142_workaround - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_broken_symlink - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_check_diff_use_together - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_cli_unstable - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_code_option - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_changed - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_check - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_check_changed - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_color_diff - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_diff - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_fast - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_code_option_safe - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_expression_diff - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_expression_diff_with_color - AssertionError: '\x1b[1m' not found in ''
FAILED tests/test_black.py::BlackTestCase::test_line_ranges_with_code_option - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_line_ranges_with_ipynb - assert 'Cannot use --line-ranges with ipynb files' in "Python 3.12.5 has a ...
FAILED tests/test_black.py::BlackTestCase::test_line_ranges_with_multiple_sources - assert 'Cannot use --line-ranges to format multiple files' in "Python 3.12....
FAILED tests/test_black.py::BlackTestCase::test_line_ranges_with_source - assert not 1
FAILED tests/test_black.py::BlackTestCase::test_line_ranges_with_stdin - AssertionError: The output did not match the expected value.
FAILED tests/test_black.py::BlackTestCase::test_multi_file_force_py36 - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_multi_file_force_pyi - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_pipe_force_py36 - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_pipe_force_pyi - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_piping - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_piping_diff - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_piping_diff_with_color - AssertionError: '\x1b[1m' not found in ''
FAILED tests/test_black.py::BlackTestCase::test_preserves_line_endings_via_stdin - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_python37 - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_required_version_does_not_match_version - AssertionError: 'required version' not found in "Python 3.12.5 has a memory...
FAILED tests/test_black.py::BlackTestCase::test_required_version_matches_partial_version - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_required_version_matches_version - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_single_file_force_py36 - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_single_file_force_pyi - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_skip_magic_trailing_comma - AssertionError: 1 != 0
FAILED tests/test_black.py::BlackTestCase::test_skip_source_first_line - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::BlackTestCase::test_works_in_mono_process_only_environment - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_cache_broken_file - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_cache_single_file_already_cached - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_cache_multiple_files - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_no_cache_when_writeback_diff[no-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_no_cache_when_writeback_diff[with-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_output_locking_when_writeback_diff[no-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_output_locking_when_writeback_diff[with-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestCaching::test_no_cache_when_stdin - assert not 1
FAILED tests/test_black.py::TestCaching::test_failed_formatting_does_not_get_cached - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
FAILED tests/test_black.py::TestFileCollection::test_invalid_gitignore - assert None
FAILED tests/test_black.py::TestFileCollection::test_invalid_nested_gitignore - assert None
FAILED tests/test_ipynb.py::test_ipynb_diff_with_change - assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "...FAILED tests/test_ipynb.py::test_ipynb_diff_with_no_change - assert '1 file would be left unchanged.' in "Python 3.12.5 has a memory saf...
FAILED tests/test_ipynb.py::test_cache_isnt_written_if_no_jupyter_deps_single - assert 'No Python files are present to be formatted. Nothing to do' in "Pyt...
FAILED tests/test_ipynb.py::test_cache_isnt_written_if_no_jupyter_deps_dir - assert 'No Python files are present to be formatted. Nothing to do' in "Pyt...
FAILED tests/test_ipynb.py::test_ipynb_flag - assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "...FAILED tests/test_ipynb.py::test_ipynb_and_pyi_flags - AssertionError: assert 'Python 3.12....thon 3.12.4\n' == 'Cannot pass ...yn...
===== 54 failed, 395 passed, 2 skipped, 1 deselected in 194.57s (0:03:14) ======
brillo-1.4.13
Build started
python3.12-black-25.1.0
error: Cannot build '/nix/store/zbxmq5g53dpsx60x6bz7s33073cijxz8-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0.drv'.
Reason: builder failed with exit code 1.
Output paths:
/nix/store/fbshb5sn8c1d23x9hmfbw1m8f8bvvg1y-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0-dist
/nix/store/r2jycy6jq7mfvf27nxqs99ykl5cc83j3-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0
Last 25 log lines:
> FAILED tests/test_black.py::BlackTestCase::test_required_version_matches_partial_version - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_required_version_matches_version - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_single_file_force_py36 - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_single_file_force_pyi - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_skip_magic_trailing_comma - AssertionError: 1 != 0
> FAILED tests/test_black.py::BlackTestCase::test_skip_source_first_line - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_works_in_mono_process_only_environment - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_cache_broken_file - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_cache_single_file_already_cached - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_cache_multiple_files - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_no_cache_when_writeback_diff[no-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_no_cache_when_writeback_diff[with-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_output_locking_when_writeback_diff[no-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_output_locking_when_writeback_diff[with-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_no_cache_when_stdin - assert not 1
> FAILED tests/test_black.py::TestCaching::test_failed_formatting_does_not_get_cached - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestFileCollection::test_invalid_gitignore - assert None
> FAILED tests/test_black.py::TestFileCollection::test_invalid_nested_gitignore - assert None
> FAILED tests/test_ipynb.py::test_ipynb_diff_with_change - assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "...
> FAILED tests/test_ipynb.py::test_ipynb_diff_with_no_change - assert '1 file would be left unchanged.' in "Python 3.12.5 has a memory saf...
> FAILED tests/test_ipynb.py::test_cache_isnt_written_if_no_jupyter_deps_single - assert 'No Python files are present to be formatted. Nothing to do' in "Pyt...
> FAILED tests/test_ipynb.py::test_cache_isnt_written_if_no_jupyter_deps_dir - assert 'No Python files are present to be formatted. Nothing to do' in "Pyt...
> FAILED tests/test_ipynb.py::test_ipynb_flag - assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "...
> FAILED tests/test_ipynb.py::test_ipynb_and_pyi_flags - AssertionError: assert 'Python 3.12....thon 3.12.4\n' == 'Cannot pass ...yn...
> ===== 54 failed, 395 passed, 2 skipped, 1 deselected in 194.57s (0:03:14) ======
For full logs, run:
nix log /nix/store/zbxmq5g53dpsx60x6bz7s33073cijxz8-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0.drvbrillo-1.4.13
→ unpackPhase
unpacking source archive /nix/store/pzsa4hzmmd2ch0f5ppwd9fzx5j71n6bq-source
source root is source
→ patchPhase
applying patch /nix/store/dak2x6zw8p6jkd0mymjjgig6mvwxgd3s-udev-rule.patch
patching file contrib/udev.in
→ updateAutotoolsGnuConfigScriptsPhase
jemalloc-5.3.0
clang -o test/unit/malloc_io test/unit/malloc_io.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
brillo-1.4.13
→ updateAutotoolsGnuConfigScriptsPhase
→ configurePhase
no configure script, doing nothing
→ buildPhase
build flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash PREFIX=\$\(out\) AADIR=\$\(out\)/etc/apparmor.d
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/vlog.o src/vlog.c
jemalloc-5.3.0
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/math.o test/unit/math.c
brillo-1.4.13
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/value.o src/value.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/light.o src/light.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/file.o src/file.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/parse.o src/parse.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/path.o src/path.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/ctrl.o src/ctrl.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/info.o src/info.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/init.o src/init.c
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/exec.o src/exec.c
jemalloc-5.3.0
clang -o test/unit/math test/unit/math.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
brillo-1.4.13
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -c -o src/main.o src/main.c
jemalloc-5.3.0
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/mpsc_queue.o test/unit/mpsc_queue.c
brillo-1.4.13
mkdir -p build
clang -std=c99 -D_XOPEN_SOURCE=700 -DPROG='"brillo"' -DVERSION='"1.4.11"' -o build/brillo src/vlog.o src/value.o src/light.o src/file.o src/parse.o src/path.o src/ctrl.o src/info.o src/init.o src/exec.o src/main.o -lm
→ installPhase
install flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash PREFIX=\$\(out\) AADIR=\$\(out\)/etc/apparmor.d install-dist
install -Dm 0755 -t /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/bin build/brillo
go-md2man -in doc/man/brillo.1.md -out build/brillo.1
install -d /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/share/man/man1
install -m 0644 -t /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/share/man/man1 build/brillo.1
sed -e 's|@group@|video|g' contrib/udev.in > build/92-com.gitlab.CameronNemo.brillo.rules
install -d /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/lib/udev/rules.d
install -m 00644 -t /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/lib/udev/rules.d build/92-com.gitlab.CameronNemo.brillo.rules
sed -e 's|@bindir@|/nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/bin|g' \
-e 's|@prog@|brillo|g' \
-e 's|@vendor@|com.gitlab.CameronNemo|g' \
-e 's|@desc@|Control the brightness of backlight and keyboard LED devices|g' \
contrib/polkit.in > build/com.gitlab.CameronNemo.brillo.policy
install -d /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/share/polkit-1/actions
install -m 0644 -t /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/share/polkit-1/actions build/com.gitlab.CameronNemo.brillo.policy
→ fixupPhase
shrinking RPATHs of ELF executables and libraries in /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13
shrinking /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/bin/brillo
checking for references to /build/ in /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13...
gzipping man pages under /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/share/man/
patching script interpreter paths in /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13
stripping (with command strip and flags -S -p) in /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/lib /nix/store/5936md6gpnkan6r9jzajgjc3mxcsf7nr-brillo-x86_64-unknown-linux-gnufilc0-1.4.13/bin
jemalloc-5.3.0
clang -o test/unit/mpsc_queue test/unit/mpsc_queue.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/mq.o test/unit/mq.c
clang -o test/unit/mq test/unit/mq.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/mtx.o test/unit/mtx.c
clang -o test/unit/mtx test/unit/mtx.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/nstime.o test/unit/nstime.c
clang -o test/unit/nstime test/unit/nstime.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/oversize_threshold.o test/unit/oversize_threshold.c
clang -o test/unit/oversize_threshold test/unit/oversize_threshold.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/pa.o test/unit/pa.c
clang -o test/unit/pa test/unit/pa.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/pack.o test/unit/pack.c
clang -o test/unit/pack test/unit/pack.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/pages.o test/unit/pages.c
clang -o test/unit/pages test/unit/pages.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/peak.o test/unit/peak.c
clang -o test/unit/peak test/unit/peak.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/ph.o test/unit/ph.c
clang -o test/unit/ph test/unit/ph.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prng.o test/unit/prng.c
clang -o test/unit/prng test/unit/prng.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_accum.o test/unit/prof_accum.c
clang -o test/unit/prof_accum test/unit/prof_accum.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_active.o test/unit/prof_active.c
clang -o test/unit/prof_active test/unit/prof_active.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_gdump.o test/unit/prof_gdump.c
clang -o test/unit/prof_gdump test/unit/prof_gdump.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_hook.o test/unit/prof_hook.c
clang -o test/unit/prof_hook test/unit/prof_hook.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_idump.o test/unit/prof_idump.c
clang -o test/unit/prof_idump test/unit/prof_idump.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_log.o test/unit/prof_log.c
clang -o test/unit/prof_log test/unit/prof_log.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_mdump.o test/unit/prof_mdump.c
clang -o test/unit/prof_mdump test/unit/prof_mdump.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_recent.o test/unit/prof_recent.c
clang -o test/unit/prof_recent test/unit/prof_recent.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_reset.o test/unit/prof_reset.c
clang -o test/unit/prof_reset test/unit/prof_reset.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_stats.o test/unit/prof_stats.c
clang -o test/unit/prof_stats test/unit/prof_stats.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_tctx.o test/unit/prof_tctx.c
clang -o test/unit/prof_tctx test/unit/prof_tctx.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_thread_name.o test/unit/prof_thread_name.c
clang -o test/unit/prof_thread_name test/unit/prof_thread_name.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/prof_sys_thread_name.o test/unit/prof_sys_thread_name.c
clang -o test/unit/prof_sys_thread_name test/unit/prof_sys_thread_name.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/psset.o test/unit/psset.c
clang -o test/unit/psset test/unit/psset.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/ql.o test/unit/ql.c
clang -o test/unit/ql test/unit/ql.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/qr.o test/unit/qr.c
clang -o test/unit/qr test/unit/qr.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/rb.o test/unit/rb.c
clang -o test/unit/rb test/unit/rb.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/retained.o test/unit/retained.c
test/unit/retained.c:147:10: warning: variable 'fragmented' set but not used [-Wunused-but-set-variable]
147 | size_t fragmented = 0;
| ^
1 warning generated.
clang -o test/unit/retained test/unit/retained.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/rtree.o test/unit/rtree.c
clang -o test/unit/rtree test/unit/rtree.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/safety_check.o test/unit/safety_check.c
clang -o test/unit/safety_check test/unit/safety_check.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/sc.o test/unit/sc.c
clang -o test/unit/sc test/unit/sc.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/sec.o test/unit/sec.c
clang -o test/unit/sec test/unit/sec.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/seq.o test/unit/seq.c
clang -o test/unit/seq test/unit/seq.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/SFMT.o test/unit/SFMT.c
clang -o test/unit/SFMT test/unit/SFMT.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/size_check.o test/unit/size_check.c
clang -o test/unit/size_check test/unit/size_check.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/size_classes.o test/unit/size_classes.c
clang -o test/unit/size_classes test/unit/size_classes.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/slab.o test/unit/slab.c
clang -o test/unit/slab test/unit/slab.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/smoothstep.o test/unit/smoothstep.c
clang -o test/unit/smoothstep test/unit/smoothstep.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/spin.o test/unit/spin.c
clang -o test/unit/spin test/unit/spin.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/stats.o test/unit/stats.c
clang -o test/unit/stats test/unit/stats.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/stats_print.o test/unit/stats_print.c
clang -o test/unit/stats_print test/unit/stats_print.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/sz.o test/unit/sz.c
clang -o test/unit/sz test/unit/sz.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/tcache_max.o test/unit/tcache_max.c
clang -o test/unit/tcache_max test/unit/tcache_max.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/test_hooks.o test/unit/test_hooks.c
clang -o test/unit/test_hooks test/unit/test_hooks.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/thread_event.o test/unit/thread_event.c
clang -o test/unit/thread_event test/unit/thread_event.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/ticker.o test/unit/ticker.c
clang -o test/unit/ticker test/unit/ticker.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/tsd.o test/unit/tsd.c
clang -o test/unit/tsd test/unit/tsd.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/uaf.o test/unit/uaf.c
clang -o test/unit/uaf test/unit/uaf.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/witness.o test/unit/witness.c
clang -o test/unit/witness test/unit/witness.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/zero.o test/unit/zero.c
clang -o test/unit/zero test/unit/zero.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/zero_realloc_abort.o test/unit/zero_realloc_abort.c
clang -o test/unit/zero_realloc_abort test/unit/zero_realloc_abort.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/zero_realloc_free.o test/unit/zero_realloc_free.c
clang -o test/unit/zero_realloc_free test/unit/zero_realloc_free.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/zero_realloc_alloc.o test/unit/zero_realloc_alloc.c
clang -o test/unit/zero_realloc_alloc test/unit/zero_realloc_alloc.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -pipe -g3 -fvisibility=hidden -Wimplicit-fallthrough -O2 -funroll-loops -fno-builtin -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_UNIT_TEST -Itest/include -Itest/include -o test/unit/zero_reallocs.o test/unit/zero_reallocs.c
clang -o test/unit/zero_reallocs test/unit/zero_reallocs.o src/jemalloc.jet.o src/arena.jet.o src/background_thread.jet.o src/base.jet.o src/bin.jet.o src/bin_info.jet.o src/bitmap.jet.o src/buf_writer.jet.o src/cache_bin.jet.o src/ckh.jet.o src/counter.jet.o src/ctl.jet.o src/decay.jet.o src/div.jet.o src/ecache.jet.o src/edata.jet.o src/edata_cache.jet.o src/ehooks.jet.o src/emap.jet.o src/eset.jet.o src/exp_grow.jet.o src/extent.jet.o src/extent_dss.jet.o src/extent_mmap.jet.o src/fxp.jet.o src/san.jet.o src/san_bump.jet.o src/hook.jet.o src/hpa.jet.o src/hpa_hooks.jet.o src/hpdata.jet.o src/inspect.jet.o src/large.jet.o src/log.jet.o src/malloc_io.jet.o src/mutex.jet.o src/nstime.jet.o src/pa.jet.o src/pa_extra.jet.o src/pai.jet.o src/pac.jet.o src/pages.jet.o src/peak_event.jet.o src/prof.jet.o src/prof_data.jet.o src/prof_log.jet.o src/prof_recent.jet.o src/prof_stats.jet.o src/prof_sys.jet.o src/psset.jet.o src/rtree.jet.o src/safety_check.jet.o src/sc.jet.o src/sec.jet.o src/stats.jet.o src/sz.jet.o src/tcache.jet.o src/test_hooks.jet.o src/thread_event.jet.o src/ticker.jet.o src/tsd.jet.o src/witness.jet.o test/src/btalloc.unit.o test/src/btalloc_0.unit.o test/src/btalloc_1.unit.o test/src/math.unit.o test/src/mtx.unit.o test/src/sleep.unit.o test/src/SFMT.unit.o test/src/test.unit.o test/src/thd.unit.o test/src/timer.unit.o -Wl,-rpath,lib -lstdc++ -pthread -lm
/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash test/test.sh test/unit/a0 test/unit/arena_decay test/unit/arena_reset test/unit/atomic test/unit/background_thread test/unit/background_thread_enable test/unit/base test/unit/batch_alloc test/unit/binshard test/unit/bitmap test/unit/bit_util test/unit/buf_writer test/unit/cache_bin test/unit/ckh test/unit/counter test/unit/decay test/unit/div test/unit/double_free test/unit/edata_cache test/unit/emitter test/unit/extent_quantize test/unit/fb test/unit/fork test/unit/fxp test/unit/san test/unit/san_bump test/unit/hash test/unit/hook test/unit/hpa test/unit/hpa_background_thread test/unit/hpdata test/unit/huge test/unit/inspect test/unit/junk test/unit/junk_alloc test/unit/junk_free test/unit/log test/unit/mallctl test/unit/malloc_conf_2 test/unit/malloc_io test/unit/math test/unit/mpsc_queue test/unit/mq test/unit/mtx test/unit/nstime test/unit/oversize_threshold test/unit/pa test/unit/pack test/unit/pages test/unit/peak test/unit/ph test/unit/prng test/unit/prof_accum test/unit/prof_active test/unit/prof_gdump test/unit/prof_hook test/unit/prof_idump test/unit/prof_log test/unit/prof_mdump test/unit/prof_recent test/unit/prof_reset test/unit/prof_stats test/unit/prof_tctx test/unit/prof_thread_name test/unit/prof_sys_thread_name test/unit/psset test/unit/ql test/unit/qr test/unit/rb test/unit/retained test/unit/rtree test/unit/safety_check test/unit/sc test/unit/sec test/unit/seq test/unit/SFMT test/unit/size_check test/unit/size_classes test/unit/slab test/unit/smoothstep test/unit/spin test/unit/stats test/unit/stats_print test/unit/sz test/unit/tcache_max test/unit/test_hooks test/unit/thread_event test/unit/ticker test/unit/tsd test/unit/uaf test/unit/witness test/unit/zero test/unit/zero_realloc_abort test/unit/zero_realloc_free test/unit/zero_realloc_alloc test/unit/zero_reallocs
=== test/unit/a0 ===
filc user error: unsupported syscall: 2.
(libpizlo.so) <runtime>: zerror
(libpizlo.so) ../filc/src/snprintf.c:1335:2: zerrorf
(libpizlo.so) ../filc/src/runtime.c:679:9: zsys_syscall
(libpizlo.so) <runtime>: zcall
(libc.so.6666) ../sysdeps/unix/sysv/linux/syscall.c:27:24: syscall
(a0) src/pages.c:627:13: os_overcommits_proc (inlined)
(a0) src/pages.c:789:19: pages_boot
(a0) src/jemalloc.c:1834:6: malloc_init_hard_a0_locked
(a0) src/jemalloc.c:1918:8: malloc_init_hard_a0
(a0) src/jemalloc.c:291:10: malloc_init_a0 (inlined)
(a0) src/jemalloc.c:311:6: a0ialloc
(a0) src/jemalloc.c:326:9: a0malloc
(a0) test/unit/a0.c:6:6: test_a0
(a0) test/src/test.c:149:3: p_test_impl (inlined)
(a0) test/src/test.c:224:8: p_test_no_malloc_init
(a0) test/unit/a0.c:14:9: main
(libc.so.6666) ../sysdeps/nptl/libc_start_call_main.h:59:16: __libc_start_call_main
(libc.so.6666) ../csu/libc-start.c:159:3: __libc_start_main
(libpizlo.so) <runtime>: start_program
[7169] filc panic: user thwarted themselves.
test/test.sh: line 34: 7169 Trace/breakpoint trap $JEMALLOC_TEST_PREFIX ${t} /build/source/ /build/source/Test harness error: test/unit/a0 w/ MALLOC_CONF=""
Use prefix to debug, e.g. JEMALLOC_TEST_PREFIX="gdb --args" sh test/test.sh test/unit/a0
make: *** [Makefile:679: check_unit] Error 1
error: Cannot build '/nix/store/jq1x4xpshbs75f1hb9hqqc90bl6vw2fn-jemalloc-x86_64-unknown-linux-gnufilc0-5.3.0.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/7hzb9qwwvrk39hjb8f6w99v5bfzni13m-jemalloc-x86_64-unknown-linux-gnufilc0-5.3.0
Last 25 log lines:
> filc user error: unsupported syscall: 2.
> (libpizlo.so) <runtime>: zerror
> (libpizlo.so) ../filc/src/snprintf.c:1335:2: zerrorf
> (libpizlo.so) ../filc/src/runtime.c:679:9: zsys_syscall
> (libpizlo.so) <runtime>: zcall
> (libc.so.6666) ../sysdeps/unix/sysv/linux/syscall.c:27:24: syscall
> (a0) src/pages.c:627:13: os_overcommits_proc (inlined)
> (a0) src/pages.c:789:19: pages_boot
> (a0) src/jemalloc.c:1834:6: malloc_init_hard_a0_locked
> (a0) src/jemalloc.c:1918:8: malloc_init_hard_a0
> (a0) src/jemalloc.c:291:10: malloc_init_a0 (inlined)
> (a0) src/jemalloc.c:311:6: a0ialloc
> (a0) src/jemalloc.c:326:9: a0malloc
> (a0) test/unit/a0.c:6:6: test_a0
> (a0) test/src/test.c:149:3: p_test_impl (inlined)
> (a0) test/src/test.c:224:8: p_test_no_malloc_init
> (a0) test/unit/a0.c:14:9: main
> (libc.so.6666) ../sysdeps/nptl/libc_start_call_main.h:59:16: __libc_start_call_main
> (libc.so.6666) ../csu/libc-start.c:159:3: __libc_start_main
> (libpizlo.so) <runtime>: start_program
> [7169] filc panic: user thwarted themselves.
> test/test.sh: line 34: 7169 Trace/breakpoint trap $JEMALLOC_TEST_PREFIX ${t} /build/source/ /build/source/
> Test harness error: test/unit/a0 w/ MALLOC_CONF=""
> Use prefix to debug, e.g. JEMALLOC_TEST_PREFIX="gdb --args" sh test/test.sh test/unit/a0
> make: *** [Makefile:679: check_unit] Error 1
For full logs, run:
nix log /nix/store/jq1x4xpshbs75f1hb9hqqc90bl6vw2fn-jemalloc-x86_64-unknown-linux-gnufilc0-5.3.0.drvpython3.12-behave-1.2.7.dev5
error: Cannot build '/nix/store/hzwkai28wgc2zhvf9lfkb5q5006njq59-python3.12-behave-1.2.7.dev5-x86_64-unknown-linux-gnufilc0.drv'.
Reason: 2 dependencies failed.
Output paths:
/nix/store/lvzyfk7fpjbb4883dqf1if3bjb7530wb-python3.12-behave-1.2.7.dev5-x86_64-unknown-linux-gnufilc0-dist
/nix/store/wb9f1h4p7aqg8m73vk6s05psl4jjsh85-python3.12-behave-1.2.7.dev5-x86_64-unknown-linux-gnufilc0bitcoind-abc-0.29.7
error: Cannot build '/nix/store/56k3xpd3rjf3srxra8x7x047h3aqr0rf-bitcoind-abc-x86_64-unknown-linux-gnufilc0-0.29.7.drv'.
Reason: 2 dependencies failed.
Output paths:
/nix/store/kcs944ng5yxp297qk26mpah280i338sw-bitcoind-abc-x86_64-unknown-linux-gnufilc0-0.29.7python3.12-black-25.1.0
error: Cannot build '/nix/store/zbxmq5g53dpsx60x6bz7s33073cijxz8-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0.drv'.
Reason: builder failed with exit code 1.
Output paths:
/nix/store/fbshb5sn8c1d23x9hmfbw1m8f8bvvg1y-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0-dist
/nix/store/r2jycy6jq7mfvf27nxqs99ykl5cc83j3-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0
Last 25 log lines:
> FAILED tests/test_black.py::BlackTestCase::test_required_version_matches_partial_version - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_required_version_matches_version - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_single_file_force_py36 - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_single_file_force_pyi - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_skip_magic_trailing_comma - AssertionError: 1 != 0
> FAILED tests/test_black.py::BlackTestCase::test_skip_source_first_line - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::BlackTestCase::test_works_in_mono_process_only_environment - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_cache_broken_file - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_cache_single_file_already_cached - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_cache_multiple_files - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_no_cache_when_writeback_diff[no-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_no_cache_when_writeback_diff[with-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_output_locking_when_writeback_diff[no-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_output_locking_when_writeback_diff[with-color] - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestCaching::test_no_cache_when_stdin - assert not 1
> FAILED tests/test_black.py::TestCaching::test_failed_formatting_does_not_get_cached - AssertionError: Failed with args: ['--verbose', '--config', '/build/black-2...
> FAILED tests/test_black.py::TestFileCollection::test_invalid_gitignore - assert None
> FAILED tests/test_black.py::TestFileCollection::test_invalid_nested_gitignore - assert None
> FAILED tests/test_ipynb.py::test_ipynb_diff_with_change - assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "...
> FAILED tests/test_ipynb.py::test_ipynb_diff_with_no_change - assert '1 file would be left unchanged.' in "Python 3.12.5 has a memory saf...
> FAILED tests/test_ipynb.py::test_cache_isnt_written_if_no_jupyter_deps_single - assert 'No Python files are present to be formatted. Nothing to do' in "Pyt...
> FAILED tests/test_ipynb.py::test_cache_isnt_written_if_no_jupyter_deps_dir - assert 'No Python files are present to be formatted. Nothing to do' in "Pyt...
> FAILED tests/test_ipynb.py::test_ipynb_flag - assert '@@ -1,3 +1,3 @@\n %%time\n \n-print(\'foo\')\n+print("foo")\n' in "...
> FAILED tests/test_ipynb.py::test_ipynb_and_pyi_flags - AssertionError: assert 'Python 3.12....thon 3.12.4\n' == 'Cannot pass ...yn...
> ===== 54 failed, 395 passed, 2 skipped, 1 deselected in 194.57s (0:03:14) ======
For full logs, run:
nix log /nix/store/zbxmq5g53dpsx60x6bz7s33073cijxz8-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0.drvpython3.12-black-macchiato-1.3.0
error: Cannot build '/nix/store/87b72a30b3cyh7mh7mp0blb1iis6a7x9-python3.12-black-macchiato-1.3.0-x86_64-unknown-linux-gnufilc0.drv'.
Reason: 1 dependency failed.
Output paths:
/nix/store/a84v9r9mv9bw814dl4f6z463k1wcnrhy-python3.12-black-macchiato-1.3.0-x86_64-unknown-linux-gnufilc0-dist
/nix/store/sifarw1hbdgjfy6i83ybhwi1w69g2a5h-python3.12-black-macchiato-1.3.0-x86_64-unknown-linux-gnufilc0python3.12-blacken-docs-1.19.1
error: Cannot build '/nix/store/vw845izhfy13ppp8p90bkzzsjbx3ax3c-python3.12-blacken-docs-1.19.1-x86_64-unknown-linux-gnufilc0.drv'.
Reason: 1 dependency failed.
Output paths:
/nix/store/l4jw8dzf291lgjzapkmd1y6jblsp23w5-python3.12-blacken-docs-1.19.1-x86_64-unknown-linux-gnufilc0-dist
/nix/store/yfihm845zn43l92315xlgycggmrc0qpc-python3.12-blacken-docs-1.19.1-x86_64-unknown-linux-gnufilc0brickd-2.1.1
error: Cannot build '/nix/store/3sl8d3y5kzkrpaa2afwaiyii0njil4mp-brickd-x86_64-unknown-linux-gnufilc0-2.1.1.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/dmgiix0yiydmvgi9fhbsmklslp8qf0iy-brickd-x86_64-unknown-linux-gnufilc0-2.1.1
Last 14 log lines:
> Running phase: unpackPhase
> unpacking source archive /nix/store/6kqd71rwb4kgdnf8riwz847l8349ag01-source
> source root is source
> Running phase: patchPhase
> substituteStream() in derivation brickd-x86_64-unknown-linux-gnufilc0-2.1.1: WARNING: '--replace' is deprecated, use --replace-{fail,warn,quiet}. (file 'src/brickd/Makefile')
> Running phase: updateAutotoolsGnuConfigScriptsPhase
> Running phase: updateAutotoolsGnuConfigScriptsPhase
> Running phase: configurePhase
> no configure script, doing nothing
> Running phase: buildPhase
> sh: line 1: pkg-config: command not found
> sh: line 1: pkg-config: command not found
> sh: line 1: pkg-config: command not found
> Makefile:262: *** Could not find libusb-1.0 >= 1.0.6. Stop.
For full logs, run:
nix log /nix/store/3sl8d3y5kzkrpaa2afwaiyii0njil4mp-brickd-x86_64-unknown-linux-gnufilc0-2.1.1.drvbrogue-ce-1.14.1
error: Cannot build '/nix/store/k0nzvm4yvsjp28ncyq5i4p062hwy3b4m-brogue-ce-x86_64-unknown-linux-gnufilc0-1.14.1.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/hj5vpms9xrblzx7y7v22j71c298vawn8-brogue-ce-x86_64-unknown-linux-gnufilc0-1.14.1
Last 25 log lines:
> | ~~~~~~~~~~~~~~~ ^
> 16 warnings generated.
> clang -DDATADIR=/nix/store/hj5vpms9xrblzx7y7v22j71c298vawn8-brogue-ce-x86_64-unknown-linux-gnufilc0-1.14.1/opt/brogue-ce -DBROGUE_SDL -Isrc/brogue -Isrc/platform -Isrc/variants -std=c99 -Wall -Wpedantic -Werror=implicit -Wno-parentheses -Wno-unused-result -Wformat -Werror=format-security -Wformat-overflow=0 -Wmissing-prototypes -O2 -c src/platform/null-platform.c -o src/platform/null-platform.o
> warning: unknown warning option '-Wformat-overflow=0'; did you mean '-Wformat-overflow'? [-Wunknown-warning-option]
> In file included from src/platform/null-platform.c:1:
> src/platform/platform.h:39:21: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
> 39 | void (*gameLoop)();
> | ^
> | void
> src/platform/platform.h:79:30: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
> 79 | boolean (*takeScreenshot)();
> | ^
> | void
> src/platform/null-platform.c:3:26: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
> 3 | static void null_gameLoop() {
> | ^
> | void
> 4 warnings generated.
> clang -DDATADIR=/nix/store/hj5vpms9xrblzx7y7v22j71c298vawn8-brogue-ce-x86_64-unknown-linux-gnufilc0-1.14.1/opt/brogue-ce -DBROGUE_SDL -Isrc/brogue -Isrc/platform -Isrc/variants -std=c99 -Wall -Wpedantic -Werror=implicit -Wno-parentheses -Wno-unused-result -Wformat -Werror=format-security -Wformat-overflow=0 -Wmissing-prototypes -O2 -c src/platform/sdl2-platform.c -o src/platform/sdl2-platform.o
> warning: unknown warning option '-Wformat-overflow=0'; did you mean '-Wformat-overflow'? [-Wunknown-warning-option]
> src/platform/sdl2-platform.c:6:10: fatal error: 'SDL_image.h' file not found
> 6 | #include <SDL_image.h>
> | ^~~~~~~~~~~~~
> 1 warning and 1 error generated.
> make: *** [make/o.mk:2: src/platform/sdl2-platform.o] Error 1
For full logs, run:
nix log /nix/store/k0nzvm4yvsjp28ncyq5i4p062hwy3b4m-brogue-ce-x86_64-unknown-linux-gnufilc0-1.14.1.drvbrunsli-0.1
error: Cannot build '/nix/store/88glc1bb9h11zac7xms3mnhr3rx2d9yj-brunsli-x86_64-unknown-linux-gnufilc0-0.1.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/d0y92hmv3gs7sxjymp4kjvqlka2dmc6z-brunsli-x86_64-unknown-linux-gnufilc0-0.1-dev
/nix/store/fny3m5nwqnwnhzxgllljib2dwds9rm87-brunsli-x86_64-unknown-linux-gnufilc0-0.1
Last 25 log lines:
> [ 60%] Building CXX object CMakeFiles/brunslidec-static.dir/c/dec/histogram_decode.cc.o
> [ 63%] Building CXX object CMakeFiles/brunslidec-static.dir/c/dec/huffman_decode.cc.o
> [ 66%] Building CXX object CMakeFiles/brunslidec-static.dir/c/dec/huffman_table.cc.o
> [ 69%] Building CXX object CMakeFiles/brunslidec-static.dir/c/dec/jpeg_data_writer.cc.o
> [ 72%] Linking CXX static library libbrunslidec-static.a
> [ 72%] Built target brunslidec-static
> [ 78%] Building CXX object CMakeFiles/dbrunsli.dir/c/tools/dbrunsli.cc.o
> [ 78%] Building CXX object CMakeFiles/brunslidec-c.dir/c/dec/decode.cc.o
> [ 81%] Linking CXX static library libbrunslienc-static.a
> [ 81%] Built target brunslienc-static
> [ 87%] Building CXX object CMakeFiles/brunslienc-c.dir/c/enc/encode.cc.o
> [ 87%] Building CXX object CMakeFiles/cbrunsli.dir/c/tools/cbrunsli.cc.o
> [ 90%] Linking CXX executable dbrunsli
> [ 93%] Linking CXX shared library libbrunslidec-c.so
> [ 93%] Built target dbrunsli
> [ 93%] Built target brunslidec-c
> [ 96%] Linking CXX shared library libbrunslienc-c.so
> [ 96%] Built target brunslienc-c
> [100%] Linking CXX executable cbrunsli
> libbrunslienc-static.a(brunsli_encode.cc.o):brunsli_encode.cc:function pizlonatedFI403_log2:(.text+0x2d401): error: undefined reference to 'pizlonated_log2'
> libbrunslienc-static.a(histogram_encode.cc.o):histogram_encode.cc:function pizlonatedFI403_log2:(.text+0x2801): error: undefined reference to 'pizlonated_log2'
> clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
> make[2]: *** [CMakeFiles/cbrunsli.dir/build.make:102: cbrunsli] Error 1
> make[1]: *** [CMakeFiles/Makefile2:268: CMakeFiles/cbrunsli.dir/all] Error 2
> make: *** [Makefile:136: all] Error 2
For full logs, run:
nix log /nix/store/88glc1bb9h11zac7xms3mnhr3rx2d9yj-brunsli-x86_64-unknown-linux-gnufilc0-0.1.drvbsc-3.3.6
error: Cannot build '/nix/store/44f3hqzcjxdr4l8nalkgwcng91gvg299-bsc-x86_64-unknown-linux-gnufilc0-3.3.6.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/1slrx33ndb9nxkh7rm9g005nvr5gws9b-bsc-x86_64-unknown-linux-gnufilc0-3.3.6
Last 25 log lines:
> In file included from libbsc/coder/qlfc/qlfc_model.cpp:36:
> In file included from libbsc/coder/qlfc/qlfc_model.h:36:
> In file included from libbsc/coder/qlfc/../common/predictor.h:36:
> libbsc/coder/qlfc/../common/../../platform/platform.h:85:14: fatal error: 'omp.h' file not found
> 85 | #include <omp.h>
> | ^~~~~~~
> In file included from libbsc/coder/qlfc/qlfc.cpp:40:
> libbsc/coder/qlfc/../../platform/platform.h:85:14: fatal error: 'omp.h' file not found
> 85 | #include <omp.h>
> | ^~~~~~~
> 1 error generated.
> make: *** [makefile:75: libsais.o] Error 1
> make: *** Waiting for unfinished jobs....
> 1 error generated.
> 1 error generated.
> 1 error generated.
> make: *** [makefile:72: adler32.o] Error 1
> make: *** [makefile:78: coder.o] Error 1
> make: *** [makefile:90: preprocessing.o] Error 1
> 1 error generated.
> make: *** [makefile:87: detectors.o] Error 1
> 1 error generated.
> make: *** [makefile:84: qlfc_model.o] Error 1
> 1 error generated.
> make: *** [makefile:81: qlfc.o] Error 1
For full logs, run:
nix log /nix/store/44f3hqzcjxdr4l8nalkgwcng91gvg299-bsc-x86_64-unknown-linux-gnufilc0-3.3.6.drvbschaffl-1.4.10
error: Cannot build '/nix/store/rpn0ikc8khkikmajwqs2c9pn2p553gij-bschaffl-x86_64-unknown-linux-gnufilc0-1.4.10.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/vk1h8jcg9i7h8jiwxywyqn5i6i7n681i-bschaffl-x86_64-unknown-linux-gnufilc0-1.4.10
Last 25 log lines:
> In file included from ../../src/BWidgets/Window.cpp:23:
> ../../src/BWidgets/Window.hpp:60:18: warning: 'BWidgets::Window::clone' hides overloaded virtual function [-Woverloaded-virtual]
> 60 | virtual Widget* clone () = delete; // Only one Window in this version
> | ^
> ../../src/BWidgets/Widget.hpp:125:18: note: hidden overloaded virtual function 'BWidgets::Widget::clone' declared here: different qualifiers ('const' vs unqualified)
> 125 | virtual Widget* clone () const;
> | ^
> 1 warning generated.
> In file included from ../../src/BWidgets/Widget.cpp:20:
> ../../src/BWidgets/Window.hpp:60:18: warning: 'BWidgets::Window::clone' hides overloaded virtual function [-Woverloaded-virtual]
> 60 | virtual Widget* clone () = delete; // Only one Window in this version
> | ^
> ../../src/BWidgets/Widget.hpp:125:18: note: hidden overloaded virtual function 'BWidgets::Widget::clone' declared here: different qualifiers ('const' vs unqualified)
> 125 | virtual Widget* clone () const;
> | ^
> 1 warning generated.
> ../../src/BUtilities/vsystem.cpp:34:21: error: use of undeclared identifier 'vfork'; did you mean 'fork'?
> 34 | pid_t pid = vfork();
> | ^~~~~
> | fork
> /nix/store/31nshp12zm4rnbiwinw8w787jj0jb5k4-filc-glibc-2.44/include/unistd.h:778:16: note: 'fork' declared here
> 778 | extern __pid_t fork (void) __THROWNL;
> | ^
> 1 error generated.
> make: *** [makefile:137: BSchafflGUI.so] Error 1
For full logs, run:
nix log /nix/store/rpn0ikc8khkikmajwqs2c9pn2p553gij-bschaffl-x86_64-unknown-linux-gnufilc0-1.4.10.drvbsd-finger-0.17
error: Cannot build '/nix/store/i9nq9vx3ys4m1w2c1r0gkhcwgw8gmjzg-bsd-finger-x86_64-unknown-linux-gnufilc0-0.17.drv'.
Reason: builder failed with exit code 1.
Output paths:
/nix/store/2gbshgwf468hnqirjjrv6134zmiv31g0-bsd-finger-x86_64-unknown-linux-gnufilc0-0.17
Last 25 log lines:
> applying patch /nix/store/rqj4rj4ca44n5mlfans0xnn6lf6zngd7-03-468454-fingerd-ipv6.patch
> patching file fingerd/fingerd.c
> applying patch /nix/store/072m9k63vcf3gp4c0v4qp3r1azsr9np0-04-468454-finger-ipv6.patch
> patching file finger/finger.c
> patching file finger/net.c
> applying patch /nix/store/x55dc6m7i6vx8xi7k6kgmg9wls52cq80-05-547014-netgroup.patch
> patching file finger/util.c
> applying patch /nix/store/70xghsivs48aw45psp4z1p6p7c5w4r2r-06-572211-decrease-timeout.patch
> patching file finger/net.c
> applying patch /nix/store/9i48vjbpa3nqqxvdfs84fd5m1ybdmjrg-use-cmake-as-buildsystem.patch
> patching file CMakeLists.txt
> patching file finger/CMakeLists.txt
> patching file fingerd/CMakeLists.txt
> applying patch /nix/store/jy2mniih8a4rrqkc7h44587davwz3dna-use-cmake-as-buildsystem-debian-extras.patch
> patching file finger/CMakeLists.txt
> patching file fingerd/CMakeLists.txt
> applying patch /nix/store/27wasi0d68b8hy1rri9yv6lfvs9xb7db-fix-fingerd-man-typo.patch
> patching file fingerd/fingerd.8
> Running phase: updateAutotoolsGnuConfigScriptsPhase
> Running phase: updateAutotoolsGnuConfigScriptsPhase
> Running phase: configurePhase
> patching script interpreter paths in ./configure
> ./configure: interpreter directive changed from "#!/bin/sh" to "/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/sh"
> configure flags: --prefix=/nix/store/2gbshgwf468hnqirjjrv6134zmiv31g0-bsd-finger-x86_64-unknown-linux-gnufilc0-0.17 --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnufilc0
> Unrecognized option: --build=x86_64-unknown-linux-gnu
For full logs, run:
nix log /nix/store/i9nq9vx3ys4m1w2c1r0gkhcwgw8gmjzg-bsd-finger-x86_64-unknown-linux-gnufilc0-0.17.drvbsd-fingerd-0.17
error: Cannot build '/nix/store/j93hvhcc0wx1c3c5lqf13pcnqvdsgiqd-bsd-fingerd-x86_64-unknown-linux-gnufilc0-0.17.drv'.
Reason: builder failed with exit code 1.
Output paths:
/nix/store/6hhf0qpxl6vlblphnvr2xgs19hyncda1-bsd-fingerd-x86_64-unknown-linux-gnufilc0-0.17
Last 25 log lines:
> applying patch /nix/store/rqj4rj4ca44n5mlfans0xnn6lf6zngd7-03-468454-fingerd-ipv6.patch
> patching file fingerd/fingerd.c
> applying patch /nix/store/072m9k63vcf3gp4c0v4qp3r1azsr9np0-04-468454-finger-ipv6.patch
> patching file finger/finger.c
> patching file finger/net.c
> applying patch /nix/store/x55dc6m7i6vx8xi7k6kgmg9wls52cq80-05-547014-netgroup.patch
> patching file finger/util.c
> applying patch /nix/store/70xghsivs48aw45psp4z1p6p7c5w4r2r-06-572211-decrease-timeout.patch
> patching file finger/net.c
> applying patch /nix/store/9i48vjbpa3nqqxvdfs84fd5m1ybdmjrg-use-cmake-as-buildsystem.patch
> patching file CMakeLists.txt
> patching file finger/CMakeLists.txt
> patching file fingerd/CMakeLists.txt
> applying patch /nix/store/jy2mniih8a4rrqkc7h44587davwz3dna-use-cmake-as-buildsystem-debian-extras.patch
> patching file finger/CMakeLists.txt
> patching file fingerd/CMakeLists.txt
> applying patch /nix/store/27wasi0d68b8hy1rri9yv6lfvs9xb7db-fix-fingerd-man-typo.patch
> patching file fingerd/fingerd.8
> Running phase: updateAutotoolsGnuConfigScriptsPhase
> Running phase: updateAutotoolsGnuConfigScriptsPhase
> Running phase: configurePhase
> patching script interpreter paths in ./configure
> ./configure: interpreter directive changed from "#!/bin/sh" to "/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/sh"
> configure flags: --prefix=/nix/store/6hhf0qpxl6vlblphnvr2xgs19hyncda1-bsd-fingerd-x86_64-unknown-linux-gnufilc0-0.17 --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnufilc0
> Unrecognized option: --build=x86_64-unknown-linux-gnu
For full logs, run:
nix log /nix/store/j93hvhcc0wx1c3c5lqf13pcnqvdsgiqd-bsd-fingerd-x86_64-unknown-linux-gnufilc0-0.17.drvbsdbuild-3.1
error: Cannot build '/nix/store/xg5pjqw0wqgwa8r9dzak1d6gkss7fq8k-bsdbuild-x86_64-unknown-linux-gnufilc0-3.1.drv'.
Reason: 1 dependency failed.
Output paths:
/nix/store/5xrnrk4g3nnv735b434p1qy17nbb5v8f-bsdbuild-x86_64-unknown-linux-gnufilc0-3.1bsd-games-2.17
error: Cannot build '/nix/store/v3h9l145bicl7v73y1mj36l534rnjk82-bsd-games-x86_64-unknown-linux-gnufilc0-2.17.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/zjj09sz3kvpmfzjpiswqbgndfbc4ck50-bsd-games-x86_64-unknown-linux-gnufilc0-2.17
Last 25 log lines:
> Generating hide-game from hide-game.in
> Generating install-man from install-man.in
> Generating install-score from install-score.in
> Generating atc/pathnames.h from atc/pathnames.h.in
> Generating battlestar/pathnames.h from battlestar/pathnames.h.in
> Generating boggle/boggle/bog.h from boggle/boggle/bog.h.in
> Generating canfield/canfield/pathnames.h from canfield/canfield/pathnames.h.in
> Generating cribbage/pathnames.h from cribbage/pathnames.h.in
> Generating dm/pathnames.h from dm/pathnames.h.in
> Generating fish/pathnames.h from fish/pathnames.h.in
> Generating fortune/fortune/pathnames.h from fortune/fortune/pathnames.h.in
> Generating hangman/pathnames.h from hangman/pathnames.h.in
> Generating monop/pathnames.h from monop/pathnames.h.in
> Generating quiz/pathnames.h from quiz/pathnames.h.in
> Generating robots/pathnames.h from robots/pathnames.h.in
> Generating snake/snake/pathnames.h from snake/snake/pathnames.h.in
> Generating tetris/pathnames.h from tetris/pathnames.h.in
> Generating wump/pathnames.h from wump/pathnames.h.in
> Generating the main GNUmakefile, please wait...
> Running phase: buildPhase
> build flags: SHELL=/nix/store/cfqbabpc7xwg8akbcchqbq3cai6qq2vs-bash-5.2p37/bin/bash STRIP=
> ./mkdep adventure/crc.c adventure/crc.d gcc -g -O2 -Wall -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wcast-align -Wcast-qual -Wwrite-strings -Iinclude -Iadventure
> ./mkdep: line 42: gcc: not found
> GNUmakefile:828: adventure/crc.d: No such file or directory
> make: *** [GNUmakefile:27: adventure/crc.d] Error 127
For full logs, run:
nix log /nix/store/v3h9l145bicl7v73y1mj36l534rnjk82-bsd-games-x86_64-unknown-linux-gnufilc0-2.17.drvbsequencer-1.8.10
error: Cannot build '/nix/store/y7kjnid4ihh5f4m00nvzafxp326an9h7-bsequencer-x86_64-unknown-linux-gnufilc0-1.8.10.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/84f933xransi9rl351lf0x58zyfwdwn5-bsequencer-x86_64-unknown-linux-gnufilc0-1.8.10
Last 25 log lines:
> In file included from ../../src/BWidgets/Window.cpp:23:
> ../../src/BWidgets/Window.hpp:60:18: warning: 'BWidgets::Window::clone' hides overloaded virtual function [-Woverloaded-virtual]
> 60 | virtual Widget* clone () = delete; // Only one Window in this version
> | ^
> ../../src/BWidgets/Widget.hpp:125:18: note: hidden overloaded virtual function 'BWidgets::Widget::clone' declared here: different qualifiers ('const' vs unqualified)
> 125 | virtual Widget* clone () const;
> | ^
> 1 warning generated.
> In file included from ../../src/BWidgets/Widget.cpp:20:
> ../../src/BWidgets/Window.hpp:60:18: warning: 'BWidgets::Window::clone' hides overloaded virtual function [-Woverloaded-virtual]
> 60 | virtual Widget* clone () = delete; // Only one Window in this version
> | ^
> ../../src/BWidgets/Widget.hpp:125:18: note: hidden overloaded virtual function 'BWidgets::Widget::clone' declared here: different qualifiers ('const' vs unqualified)
> 125 | virtual Widget* clone () const;
> | ^
> 1 warning generated.
> ../../src/BUtilities/vsystem.cpp:34:21: error: use of undeclared identifier 'vfork'; did you mean 'fork'?
> 34 | pid_t pid = vfork();
> | ^~~~~
> | fork
> /nix/store/31nshp12zm4rnbiwinw8w787jj0jb5k4-filc-glibc-2.44/include/unistd.h:778:16: note: 'fork' declared here
> 778 | extern __pid_t fork (void) __THROWNL;
> | ^
> 1 error generated.
> make: *** [makefile:133: BSEQuencer_GUI.so] Error 1
For full logs, run:
nix log /nix/store/y7kjnid4ihh5f4m00nvzafxp326an9h7-bsequencer-x86_64-unknown-linux-gnufilc0-1.8.10.drvbstone-1.2.16
error: Cannot build '/nix/store/69p31956fgfvzs5xq9fpr86p016w2ry8-bstone-x86_64-unknown-linux-gnufilc0-1.2.16.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/0rd9qkqngpsql81pvw08p15l4xnqzv1v-bstone-x86_64-unknown-linux-gnufilc0-1.2.16
Last 25 log lines:
> [ 99%] Building CXX object src/bstone/CMakeFiles/bstone.dir/src/bstone_time.cpp.o
> [ 99%] Building CXX object src/bstone/CMakeFiles/bstone.dir/src/bstone_version.cpp.o
> [100%] Linking CXX executable bstone
> CMakeFiles/bstone.dir/src/3d_act2.cpp.o:3d_act2.cpp:function pizlonatedFI4792_atan2:(.text+0x55766): error: undefined reference to 'pizlonated_atan2'
> CMakeFiles/bstone.dir/src/3d_agent.cpp.o:3d_agent.cpp:function pizlonatedFI4792_atan2:(.text+0x39206): error: undefined reference to 'pizlonated_atan2'
> CMakeFiles/bstone.dir/src/3d_agent.cpp.o:3d_agent.cpp:function pizlonatedFI403_cos:(.text+0x3eac1): error: undefined reference to 'pizlonated_cos'
> CMakeFiles/bstone.dir/src/3d_agent.cpp.o:3d_agent.cpp:function pizlonatedFI403_sin:(.text+0x3eb91): error: undefined reference to 'pizlonated_sin'
> CMakeFiles/bstone.dir/src/3d_main.cpp.o:3d_main.cpp:function pizlonatedFI403_atan:(.text+0xfdea1): error: undefined reference to 'pizlonated_atan'
> CMakeFiles/bstone.dir/src/3d_state.cpp.o:3d_state.cpp:function pizlonatedFI4792_atan2:(.text+0xfbd6): error: undefined reference to 'pizlonated_atan2'
> CMakeFiles/bstone.dir/src/jm_free.cpp.o:jm_free.cpp:function pizlonatedFI403_tan:(.text+0x1d541): error: undefined reference to 'pizlonated_tan'
> CMakeFiles/bstone.dir/src/jm_free.cpp.o:jm_free.cpp:function pizlonatedFI403_sin:(.text+0x1d611): error: undefined reference to 'pizlonated_sin'
> CMakeFiles/bstone.dir/src/dosbox/dbopl.cpp.o:dbopl.cpp:function pizlonatedFI403_exp2:(.text+0xaff1): error: undefined reference to 'pizlonated_exp2'
> CMakeFiles/bstone.dir/src/dosbox/dbopl.cpp.o:dbopl.cpp:function pizlonatedFI403_sin:(.text+0xb0c1): error: undefined reference to 'pizlonated_sin'
> CMakeFiles/bstone.dir/src/bstone_audio_mixer_utils.cpp.o:bstone_audio_mixer_utils.cpp:function pizlonatedFI403_sqrt:(.text+0xf51): error: undefined reference to 'pizlonated_sqrt'
> CMakeFiles/bstone.dir/src/bstone_hw_video.cpp.o:bstone_hw_video.cpp:function pizlonatedFI403_cos:(.text+0x1b12a1): error: undefined reference to 'pizlonated_cos'
> CMakeFiles/bstone.dir/src/bstone_hw_video.cpp.o:bstone_hw_video.cpp:function pizlonatedFI403_sin:(.text+0x1b1371): error: undefined reference to 'pizlonated_sin'
> CMakeFiles/bstone.dir/src/bstone_hw_video.cpp.o:bstone_hw_video.cpp:function pizlonatedFI403_tan:(.text+0x1b31e1): error: undefined reference to 'pizlonated_tan'
> CMakeFiles/bstone.dir/src/bstone_hw_video.cpp.o:bstone_hw_video.cpp:function pizlonatedFI269_sqrtf:(.text+0x1b32b1): error: undefined reference to 'pizlonated_sqrtf'
> CMakeFiles/bstone.dir/src/bstone_hw_video.cpp.o:bstone_hw_video.cpp:function pizlonatedFI4792_atan2:(.text+0x1b41c6): error: undefined reference to 'pizlonated_atan2'
> CMakeFiles/bstone.dir/src/bstone_stb_image_decoder.cpp.o:bstone_stb_image_decoder.cpp:function pizlonatedFI3195_powf:(.text+0x22fd7): error: undefined reference to 'pizlonated_powf'
> ../lib/xbrz/libbstone_lib_xbrz.a(xbrz.cpp.o):xbrz.cpp:function pizlonatedFI403_sqrt:(.text+0x90a21): error: undefined reference to 'pizlonated_sqrt'
> clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
> make[2]: *** [src/bstone/CMakeFiles/bstone.dir/build.make:4231: src/bstone/bstone] Error 1
> make[1]: *** [CMakeFiles/Makefile2:434: src/bstone/CMakeFiles/bstone.dir/all] Error 2
> make: *** [Makefile:156: all] Error 2
For full logs, run:
nix log /nix/store/69p31956fgfvzs5xq9fpr86p016w2ry8-bstone-x86_64-unknown-linux-gnufilc0-1.2.16.drvbtar-1.1.1
error: Cannot build '/nix/store/8g84w6057k6rgp5fxdqc1cd1j38k66l6-btar-x86_64-unknown-linux-gnufilc0-1.1.1.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/yzlcv3zi2v5ik13cg1zw4fafzgyxx0ab-btar-x86_64-unknown-linux-gnufilc0-1.1.1
Last 25 log lines:
> 26 clang-20 0x00000000029f0b0d clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const + 173
> 27 clang-20 0x00000000029f1137 clang::driver::Compilation::ExecuteJobs(clang::driver::JobList const&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&, bool) const + 135
> 28 clang-20 0x0000000002a02d74 clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) + 436
> 29 clang-20 0x0000000000c79149 clang_main(int, char**, llvm::ToolContext const&) + 7241
> 30 clang-20 0x0000000000b840b4 main + 100
> 31 libc.so.6 0x00007ffff7c2a47e
> 32 libc.so.6 0x00007ffff7c2a539 __libc_start_main + 137
> 33 clang-20 0x0000000000c74e95 _start + 37
> clang-20: error: clang frontend command failed with exit code 134 (use -v to see invocation)
> clang version 20.1.8 (Fil-C 0.685)
> Target: x86_64-pc-linux-gnu
> Thread model: posix
> InstalledDir: /nix/store/hmjzrg1ppdzlcqry73nyyb8p9wzgryjq-filc0-git/bin
> Build config: +assertions
> clang-20: note: diagnostic msg:
> ********************
>
> PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
> Preprocessed source(s) and associated run script(s) are located at:
> clang-20: note: diagnostic msg: /build/main-c8569b.c
> clang-20: note: diagnostic msg: /build/main-c8569b.sh
> clang-20: note: diagnostic msg:
>
> ********************
> make: *** [<builtin>: main.o] Error 1
For full logs, run:
nix log /nix/store/8g84w6057k6rgp5fxdqc1cd1j38k66l6-btar-x86_64-unknown-linux-gnufilc0-1.1.1.drvbtcdeb-0.3.20-unstable-2024-04-09
error: Cannot build '/nix/store/clhcsa2a9gmfa50w33d32cf0gcy1r2y6-btcdeb-x86_64-unknown-linux-gnufilc0-0.3.20-unstable-2024-04-09.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/94j7minbrdb4l5nyp07m5rjncplwajc3-btcdeb-x86_64-unknown-linux-gnufilc0-0.3.20-unstable-2024-04-09
Last 25 log lines:
> ./value.h:71:24: note: function parameter 'args_len' with unknown value cannot be used in a constant expression
> ./value.h:68:74: note: declared here
> 68 | static std::vector<Value> parse_args(const char* args_string, size_t args_len = 0) {
> | ^
> ./value.h:193:22: warning: variable length arrays in C++ are a Clang extension [-Wvla-cxx-extension]
> 193 | char buf[vlen + 1];
> | ^~~~~~~~
> ./value.h:193:22: note: function parameter 'vlen' with unknown value cannot be used in a constant expression
> ./value.h:147:33: note: declared here
> 147 | Value(const char* v, size_t vlen = 0, bool non_numeric = false) {
> | ^
> 2 warnings generated.
> CXXLD test-btcdeb
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI403_sqrt:(.text+0x29cb51): error: undefined reference to 'pizlonated_sqrt'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI269_sqrtf:(.text+0x29ce81): error: undefined reference to 'pizlonated_sqrtf'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI403_erfc:(.text+0x29cf51): error: undefined reference to 'pizlonated_erfc'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI403_log:(.text+0x29d021): error: undefined reference to 'pizlonated_log'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI4792_pow:(.text+0x29d3c6): error: undefined reference to 'pizlonated_pow'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI401_lround:(.text+0x29d4a1): error: undefined reference to 'pizlonated_lround'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI3195_nextafterf:(.text+0x2a1bd7): error: undefined reference to 'pizlonated_nextafterf'
> test/btcdeb-catch.o:catch.cpp:function pizlonatedFI4792_nextafter:(.text+0x2a1cd6): error: undefined reference to 'pizlonated_nextafter'
> clang-20: error: linker command failed with exit code 1 (use -v to see invocation)
> make[1]: *** [Makefile:966: test-btcdeb] Error 1
> make[1]: Leaving directory '/build/source'
> make: *** [Makefile:1639: all-recursive] Error 1
For full logs, run:
nix log /nix/store/clhcsa2a9gmfa50w33d32cf0gcy1r2y6-btcdeb-x86_64-unknown-linux-gnufilc0-0.3.20-unstable-2024-04-09.drvbtfs-3.1
error: Cannot build '/nix/store/g24r8jgv180n9iikz3gpkcgwf3ws9byh-btfs-x86_64-unknown-linux-gnufilc0-3.1.drv'.
Reason: 1 dependency failed.
Output paths:
/nix/store/46rhql02pavqw536rly60c57pxlcc09k-btfs-x86_64-unknown-linux-gnufilc0-3.1brickd-2.1.1
error: build of '/nix/store/3sl8d3y5kzkrpaa2afwaiyii0njil4mp-brickd-x86_64-unknown-linux-gnufilc0-2.1.1.drv^*', '/nix/store/44f3hqzcjxdr4l8nalkgwcng91gvg299-bsc-x86_64-unknown-linux-gnufilc0-3.3.6.drv^*', '/nix/store/56k3xpd3rjf3srxra8x7x047h3aqr0rf-bitcoind-abc-x86_64-unknown-linux-gnufilc0-0.29.7.drv^*', '/nix/store/69p31956fgfvzs5xq9fpr86p016w2ry8-bstone-x86_64-unknown-linux-gnufilc0-1.2.16.drv^*', '/nix/store/87b72a30b3cyh7mh7mp0blb1iis6a7x9-python3.12-black-macchiato-1.3.0-x86_64-unknown-linux-gnufilc0.drv^*', '/nix/store/88glc1bb9h11zac7xms3mnhr3rx2d9yj-brunsli-x86_64-unknown-linux-gnufilc0-0.1.drv^*', '/nix/store/8g84w6057k6rgp5fxdqc1cd1j38k66l6-btar-x86_64-unknown-linux-gnufilc0-1.1.1.drv^*', '/nix/store/clhcsa2a9gmfa50w33d32cf0gcy1r2y6-btcdeb-x86_64-unknown-linux-gnufilc0-0.3.20-unstable-2024-04-09.drv^*', '/nix/store/g24r8jgv180n9iikz3gpkcgwf3ws9byh-btfs-x86_64-unknown-linux-gnufilc0-3.1.drv^*', '/nix/store/hzwkai28wgc2zhvf9lfkb5q5006njq59-python3.12-behave-1.2.7.dev5-x86_64-unknown-linux-gnufilc0.drv^*', '/nix/store/i9nq9vx3ys4m1w2c1r0gkhcwgw8gmjzg-bsd-finger-x86_64-unknown-linux-gnufilc0-0.17.drv^*', '/nix/store/j93hvhcc0wx1c3c5lqf13pcnqvdsgiqd-bsd-fingerd-x86_64-unknown-linux-gnufilc0-0.17.drv^*', '/nix/store/k0nzvm4yvsjp28ncyq5i4p062hwy3b4m-brogue-ce-x86_64-unknown-linux-gnufilc0-1.14.1.drv^*', '/nix/store/rpn0ikc8khkikmajwqs2c9pn2p553gij-bschaffl-x86_64-unknown-linux-gnufilc0-1.4.10.drv^*', '/nix/store/v3h9l145bicl7v73y1mj36l534rnjk82-bsd-games-x86_64-unknown-linux-gnufilc0-2.17.drv^*', '/nix/store/vw845izhfy13ppp8p90bkzzsjbx3ax3c-python3.12-blacken-docs-1.19.1-x86_64-unknown-linux-gnufilc0.drv^*', '/nix/store/xg5pjqw0wqgwa8r9dzak1d6gkss7fq8k-bsdbuild-x86_64-unknown-linux-gnufilc0-3.1.drv^*', '/nix/store/y7kjnid4ihh5f4m00nvzafxp326an9h7-bsequencer-x86_64-unknown-linux-gnufilc0-1.8.10.drv^*', '/nix/store/zbxmq5g53dpsx60x6bz7s33073cijxz8-python3.12-black-25.1.0-x86_64-unknown-linux-gnufilc0.drv^*' failed
End of log