Skip to content

Console Output

+ tools/ci/inria/sanitizers/script
+ set -e
+ export LC_ALL=C
+ test -n -j8
+ test -x /usr/bin/parallel
+ export PARALLEL=-j8 
+ run_testsuite=make -C testsuite parallel
+ clang -dumpversion
+ cut -d . -f 1
+ llvm_version=18
+ clang=clang-18
+ llvm_bin_dir=/usr/lib/llvm-18/bin
+ export ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-18/bin/llvm-symbolizer
+ export TSAN_SYMBOLIZER_PATH=/usr/lib/llvm-18/bin/llvm-symbolizer
+ echo ======== clang 18, address sanitizer, UB sanitizer ========
======== clang 18, address sanitizer, UB sanitizer ========
+ git clean -q -f -d -x
+ ubsan=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable
+ sanitizers=-fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all
+ export UBSAN_OPTIONS=print_stacktrace=1
+ CFLAGS=-Og -g -fno-omit-frame-pointer -fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all
+ LDFLAGS=-fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all -Og
+ CC=clang-18
+ cat
+ clang-18 -Og -g -fno-omit-frame-pointer -fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all -c ubsan.c
+ clang-18 -fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all -Og ubsan.o -o ubsan
+ ./ubsan
ubsan.c:9:10: runtime error: load of value 100, which is not a valid value for type 'bool'
    #0 0x559e2eb592e4 in main /home/barsac/ci/builds/workspace/precheck-sanitizers/ubsan.c:9:10
    #1 0x7f941efa1d8f in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16
    #2 0x7f941efa1e3f in __libc_start_main csu/../csu/libc-start.c:392:3
    #3 0x559e2ea7a304 in _start (/home/barsac/ci/builds/workspace/precheck-sanitizers/ubsan+0x2b304) (BuildId: c1a9bafaaf4c0db840c1a9ed574dc73f59d5fa9c)

SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior ubsan.c:9:10 in 
+ test 1 -eq 1
+ rm -f ubsan ubsan.o ubsan.c
+ cat
+ clang-18 -Og -g -fno-omit-frame-pointer -fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all -c asan.c
+ clang-18 -fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all -Og asan.o -o asan
+ ./asan
=================================================================
==3886325==ERROR: AddressSanitizer: attempting double-free on 0x502000000010 in thread T0:
    #0 0x55f4b33825a6 in free (/home/barsac/ci/builds/workspace/precheck-sanitizers/asan+0xcd5a6) (BuildId: 8db9571a5c145b307f9cf869e835211c190a6f4f)
    #1 0x55f4b33bf2f5 in main /home/barsac/ci/builds/workspace/precheck-sanitizers/asan.c:6:3
    #2 0x7f36576e3d8f in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16
    #3 0x7f36576e3e3f in __libc_start_main csu/../csu/libc-start.c:392:3
    #4 0x55f4b32e0304 in _start (/home/barsac/ci/builds/workspace/precheck-sanitizers/asan+0x2b304) (BuildId: 8db9571a5c145b307f9cf869e835211c190a6f4f)

0x502000000010 is located 0 bytes inside of 4-byte region [0x502000000010,0x502000000014)
freed by thread T0 here:
    #0 0x55f4b33825a6 in free (/home/barsac/ci/builds/workspace/precheck-sanitizers/asan+0xcd5a6) (BuildId: 8db9571a5c145b307f9cf869e835211c190a6f4f)
    #1 0x55f4b33bf2ed in main /home/barsac/ci/builds/workspace/precheck-sanitizers/asan.c:5:3
    #2 0x7f36576e3d8f in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16

previously allocated by thread T0 here:
    #0 0x55f4b3382855 in malloc (/home/barsac/ci/builds/workspace/precheck-sanitizers/asan+0xcd855) (BuildId: 8db9571a5c145b307f9cf869e835211c190a6f4f)
    #1 0x55f4b33bf2e2 in main /home/barsac/ci/builds/workspace/precheck-sanitizers/asan.c:4:13
    #2 0x7f36576e3d8f in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16

SUMMARY: AddressSanitizer: double-free (/home/barsac/ci/builds/workspace/precheck-sanitizers/asan+0xcd5a6) (BuildId: 8db9571a5c145b307f9cf869e835211c190a6f4f) in free
==3886325==ABORTING
+ test 1 -eq 1
+ rm -f asan asan.o asan.c
+ ./configure CC=clang-18 CFLAGS=-Og -g -fno-omit-frame-pointer -fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all LDFLAGS=-fsanitize=address -fsanitize=bool,builtin,bounds,enum,nonnull-attribute,nullability,object-size,pointer-overflow,returns-nonnull-attribute,shift-exponent,unreachable -fno-sanitize-recover=all -Og --disable-stdlib-manpages --enable-dependency-generation
configure: Configuring OCaml version 5.3.0+dev0-2023-12-22
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for csc... no
checking for ld... ld
checking how to print strings... printf
checking for gcc... clang-18
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether clang-18 accepts -g... yes
checking for clang-18 option to enable C11 features... none needed
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by clang-18... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from clang-18 object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if clang-18 supports -fno-rtti -fno-exceptions... yes
checking for clang-18 option to produce PIC... -fPIC -DPIC
checking if clang-18 PIC flag -fPIC -DPIC works... yes
checking if clang-18 static flag -static works... no
checking if clang-18 supports -c -o file.o... yes
checking if clang-18 supports -c -o file.o... (cached) yes
checking whether the clang-18 linker (ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C preprocessor... clang-18 -E
checking C compiler vendor... clang-18-0
checking whether host executables can be run in the build... yes
checking whether #! works in shell scripts... yes
checking whether the C compiler accepts -Wold-style-declaration... no
checking whether the C compiler accepts -Wimplicit-fallthrough=5... no
checking whether the C compiler accepts -Wimplicit-fallthrough... yes
checking for flexdll sources... checking for flexlink... no
checking for flexdll.h... no
checking for winpthreads sources... skipping on that platform
checking for a BSD-compatible install... /usr/bin/install -c
checking for library containing cos... none required
checking for unistd.h... (cached) yes
checking for math.h... yes
checking for pthread_np.h... no
checking for dirent.h... yes
checking for sys/select.h... yes
checking for sys/mman.h... yes
checking for linux/futex.h... yes
checking for off_t... yes
checking size of int... 4
checking size of long... 8
checking size of long *... 8
checking size of short... 2
checking size of long long... 8
configure: Target is a 64 bits architecture
checking whether byte ordering is bigendian... no
checking alignment of double... 8
checking alignment of long... 8
checking alignment of long long... 8
checking for max_align_t... yes
checking if clang-18 supports _Atomic types with no additional options... yes
checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... no
checking whether clang-18 supports the labels as values extension... yes
checking for ld... ld
checking for rlwrap... no
configure: checking semantics of signal handlers
checking for sigaction... yes
checking for sigprocmask... yes
configure: POSIX signal handling found.
checking for expm1... yes
checking for log1p... yes
checking for hypot... yes
checking for fma... yes
checking for exp2... yes
checking for log2... yes
checking for cbrt... yes
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for erf... yes
checking for erfc... yes
checking for trunc... yes
checking for round... yes
checking for copysign... yes
checking whether round works... yes
checking whether fma works... yes
checking for getentropy... yes
checking for getrusage... yes
checking for times... yes
checking for secure_getenv... yes
checking for issetugid... no
checking for library containing clock_gettime... none required
configure: not using thread sanitizer
checking for socket... yes
checking for socketpair... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for connect... yes
checking for socklen_t... yes
checking for inet_aton... yes
checking for struct sockaddr_in6... yes
checking for getaddrinfo... yes
checking for getnameinfo... yes
checking for inet_pton... yes
checking for inet_ntop... yes
checking for rewinddir... yes
checking for lockf... yes
checking for mkfifo... yes
checking for getcwd... yes
checking for system... yes
checking for sys/types.h... (cached) yes
checking for utime.h... yes
checking for utime... yes
checking for utimes... yes
checking for fchmod... yes
checking for fchown... yes
checking for truncate... yes
checking for ftruncate... yes
checking for select... yes
checking for fd_set... yes
checking for nanosleep... yes
checking for symlink... yes
checking for readlink... yes
checking for lstat... yes
checking for realpath... yes
checking for waitpid... yes
checking for wait4... yes
checking for getgroups... yes
checking for setgroups... yes
checking for initgroups... yes
checking for termios.h... yes
checking for tcgetattr... yes
checking for tcsetattr... yes
checking for tcsendbreak... yes
checking for tcflush... yes
checking for tcflow... yes
checking for setitimer... yes
checking for gethostname... yes
checking for sys/utsname.h... yes
checking for uname... yes
checking for gettimeofday... yes
checking for mktime... yes
checking for setsid... yes
checking for putenv... yes
checking for setenv... yes
checking for unsetenv... yes
checking for locale.h... yes
checking for newlocale... yes
checking for freelocale... yes
checking for uselocale... yes
checking for xlocale.h... no
checking for strtod_l... yes
checking for dlopen... yes
configure: Dynamic loading of shared libraries is supported.
checking for sys/mman.h... (cached) yes
checking for mmap... yes
checking for munmap... yes
checking for pwrite... yes
checking whether the C compiler accepts -fdebug-prefix-map=old=new... yes
checking for struct stat.st_atim.tv_nsec... yes
checking for struct stat.st_atimespec.tv_nsec... no
checking for struct stat.st_atimensec... no
configure: stat supports nanosecond precision
checking how many arguments gethostbyname_r() takes... six
checking how many arguments gethostbyaddr_r() takes... eight
checking for mkstemp... yes
checking for nice... yes
checking for dup3... yes
checking for pipe2... yes
checking for accept4... yes
checking for getauxval... yes
checking for sys/shm.h... yes
checking for shmat... yes
checking for execvpe... yes
checking for spawn.h... yes
checking for posix_spawn... yes
checking for posix_spawnp... yes
checking for pkg-config... /usr/bin/pkg-config
checking for clang-18 options needed to detect all undeclared functions... none needed
checking whether programs can be linked with zstd... yes
checking whether programs linked with zstd can execute... skipped
configure: compressed compilation artefacts supported
configure: ocamldebug supported
checking whether clang-18 is Clang... yes
checking whether pthreads work with "-pthread" and "-lpthread"... yes
checking whether Clang needs flag to prevent "argument unused" warning when linking with -pthread... no
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for sigwait... yes
checking arguments for pthread_getaffinity_np... GNU
configure: the threads library is supported
checking whether the assembler supports --debug-prefix-map... no
checking whether the assembler supports CFI directives... yes
configure: not using frame pointers
checking whether mmap supports huge pages... yes
checking for patdiff... no
checking for diff... diff
checking whether diff supports --strip-trailing-cr... yes
checking whether diff supports -u... yes
checking whether mmap supports MAP_STACK... yes
configure: creating ./config.status
config.status: creating Makefile.build_config
config.status: creating Makefile.config
config.status: creating stdlib/sys.ml
config.status: creating manual/src/version.tex
config.status: creating manual/src/html_processing/src/common.ml
config.status: creating ocamltest/ocamltest_config.ml
config.status: creating otherlibs/dynlink/dynlink_config.ml
config.status: creating utils/config.common.ml
config.status: creating utils/config.generated.ml
config.status: creating compilerlibs/META
config.status: creating otherlibs/dynlink/META
config.status: creating otherlibs/runtime_events/META
config.status: creating stdlib/META
config.status: creating ocamldoc/META
config.status: creating otherlibs/unix/META
config.status: creating otherlibs/str/META
config.status: creating otherlibs/systhreads/META
config.status: creating runtime/caml/exec.h
config.status: creating runtime/caml/m.h
config.status: creating runtime/caml/s.h
config.status: creating runtime/caml/version.h
config.status: linking file_formats/cmo_format.mli to otherlibs/dynlink/dynlink_cmo_format.mli
config.status: linking file_formats/cmxs_format.mli to otherlibs/dynlink/dynlink_cmxs_format.mli
config.status: linking otherlibs/dynlink/dynlink_platform_intf.ml to otherlibs/dynlink/dynlink_platform_intf.mli
config.status: linking otherlibs/unix/unix_unix.ml to otherlibs/unix/unix.ml
config.status: linking ocamltest/ocamltest_unix_real.ml to ocamltest/ocamltest_unix.ml
config.status: executing libtool commands
config.status: executing shebang commands
+ ASAN_OPTIONS=detect_leaks=0,use_sigaltstack=0 make -j8
mkdir -p .dep/ocamltest
mkdir -p .dep/runtime
  GEN runtime/caml/opnames.h
  GEN runtime/caml/jumptbl.h
  CC runtime/sak.o
  CCDEPS .dep/ocamltest/run_stubs.d
  CCDEPS .dep/ocamltest/run_unix.d
  MKEXE runtime/sak
  GEN runtime/build_config.h
  CCDEPS .dep/runtime/signals_nat.npic.d
  CCDEPS .dep/runtime/startup_nat.npic.d
  CCDEPS .dep/runtime/frame_descriptors.npic.d
  CCDEPS .dep/runtime/fail_nat.npic.d
  CCDEPS .dep/runtime/dynlink_nat.npic.d
  CCDEPS .dep/runtime/clambda_checks.npic.d
  CCDEPS .dep/runtime/backtrace_nat.npic.d
  CCDEPS .dep/runtime/weak.npic.d
  CCDEPS .dep/runtime/unix.npic.d
  CCDEPS .dep/runtime/sys.npic.d
  CCDEPS .dep/runtime/sync.npic.d
  CCDEPS .dep/runtime/str.npic.d
  CCDEPS .dep/runtime/startup_aux.npic.d
  CCDEPS .dep/runtime/skiplist.npic.d
  CCDEPS .dep/runtime/signals.npic.d
  CCDEPS .dep/runtime/shared_heap.npic.d
  CCDEPS .dep/runtime/runtime_events.npic.d
  CCDEPS .dep/runtime/roots.npic.d
  CCDEPS .dep/runtime/prng.npic.d
  CCDEPS .dep/runtime/printexc.npic.d
  CCDEPS .dep/runtime/platform.npic.d
  CCDEPS .dep/runtime/parsing.npic.d
  CCDEPS .dep/runtime/obj.npic.d
  CCDEPS .dep/runtime/misc.npic.d
  CCDEPS .dep/runtime/minor_gc.npic.d
  CCDEPS .dep/runtime/meta.npic.d
  CCDEPS .dep/runtime/memprof.npic.d
  CCDEPS .dep/runtime/memory.npic.d
  CCDEPS .dep/runtime/md5.npic.d
  CCDEPS .dep/runtime/major_gc.npic.d
  CCDEPS .dep/runtime/main.npic.d
  CCDEPS .dep/runtime/lf_skiplist.npic.d
  CCDEPS .dep/runtime/lexing.npic.d
  CCDEPS .dep/runtime/io.npic.d
  CCDEPS .dep/runtime/ints.npic.d
  CCDEPS .dep/runtime/intern.npic.d
  CCDEPS .dep/runtime/hash.npic.d
  CCDEPS .dep/runtime/globroots.npic.d
  CCDEPS .dep/runtime/gc_stats.npic.d
  CCDEPS .dep/runtime/gc_ctrl.npic.d
  CCDEPS .dep/runtime/floats.npic.d
  CCDEPS .dep/runtime/finalise.npic.d
  CCDEPS .dep/runtime/fiber.npic.d
  CCDEPS .dep/runtime/fail.npic.d
  CCDEPS .dep/runtime/extern.npic.d
  CCDEPS .dep/runtime/dynlink.npic.d
  CCDEPS .dep/runtime/domain.npic.d
  CCDEPS .dep/runtime/debugger.npic.d
  CCDEPS .dep/runtime/custom.npic.d
  CCDEPS .dep/runtime/compare.npic.d
  CCDEPS .dep/runtime/codefrag.npic.d
  CCDEPS .dep/runtime/callback.npic.d
  CCDEPS .dep/runtime/blake2.npic.d
  CCDEPS .dep/runtime/bigarray.npic.d
  CCDEPS .dep/runtime/backtrace.npic.d
  CCDEPS .dep/runtime/array.npic.d
  CCDEPS .dep/runtime/alloc.npic.d
  CCDEPS .dep/runtime/afl.npic.d
  CCDEPS .dep/runtime/addrmap.npic.d
  CCDEPS .dep/runtime/instrtrace.bpic.d
  CCDEPS .dep/runtime/zstd.bpic.d
  CCDEPS .dep/runtime/startup_byt.bpic.d
  CCDEPS .dep/runtime/interp.bpic.d
  CCDEPS .dep/runtime/fix_code.bpic.d
  CCDEPS .dep/runtime/fail_byt.bpic.d
  CCDEPS .dep/runtime/backtrace_byt.bpic.d
  CCDEPS .dep/runtime/weak.bpic.d
  CCDEPS .dep/runtime/unix.bpic.d
  CCDEPS .dep/runtime/sys.bpic.d
  CCDEPS .dep/runtime/sync.bpic.d
  CCDEPS .dep/runtime/str.bpic.d
  CCDEPS .dep/runtime/startup_aux.bpic.d
  CCDEPS .dep/runtime/skiplist.bpic.d
  CCDEPS .dep/runtime/signals.bpic.d
  CCDEPS .dep/runtime/shared_heap.bpic.d
  CCDEPS .dep/runtime/runtime_events.bpic.d
  CCDEPS .dep/runtime/roots.bpic.d
  CCDEPS .dep/runtime/prng.bpic.d
  CCDEPS .dep/runtime/printexc.bpic.d
  CCDEPS .dep/runtime/platform.bpic.d
  CCDEPS .dep/runtime/parsing.bpic.d
  CCDEPS .dep/runtime/obj.bpic.d
  CCDEPS .dep/runtime/misc.bpic.d
  CCDEPS .dep/runtime/minor_gc.bpic.d
  CCDEPS .dep/runtime/meta.bpic.d
  CCDEPS .dep/runtime/memprof.bpic.d
  CCDEPS .dep/runtime/memory.bpic.d
  CCDEPS .dep/runtime/md5.bpic.d
  CCDEPS .dep/runtime/major_gc.bpic.d
  CCDEPS .dep/runtime/main.bpic.d
  CCDEPS .dep/runtime/lf_skiplist.bpic.d
  CCDEPS .dep/runtime/lexing.bpic.d
  CCDEPS .dep/runtime/io.bpic.d
  CCDEPS .dep/runtime/ints.bpic.d
  CCDEPS .dep/runtime/intern.bpic.d
  CCDEPS .dep/runtime/hash.bpic.d
  CCDEPS .dep/runtime/globroots.bpic.d
  CCDEPS .dep/runtime/gc_stats.bpic.d
  CCDEPS .dep/runtime/gc_ctrl.bpic.d
  CCDEPS .dep/runtime/floats.bpic.d
  CCDEPS .dep/runtime/finalise.bpic.d
  CCDEPS .dep/runtime/fiber.bpic.d
  CCDEPS .dep/runtime/fail.bpic.d
  CCDEPS .dep/runtime/extern.bpic.d
  CCDEPS .dep/runtime/dynlink.bpic.d
  CCDEPS .dep/runtime/domain.bpic.d
  CCDEPS .dep/runtime/debugger.bpic.d
  CCDEPS .dep/runtime/custom.bpic.d
  CCDEPS .dep/runtime/compare.bpic.d
  CCDEPS .dep/runtime/codefrag.bpic.d
  CCDEPS .dep/runtime/callback.bpic.d
  CCDEPS .dep/runtime/blake2.bpic.d
  CCDEPS .dep/runtime/bigarray.bpic.d
  CCDEPS .dep/runtime/backtrace.bpic.d
  CCDEPS .dep/runtime/array.bpic.d
  CCDEPS .dep/runtime/alloc.bpic.d
  CCDEPS .dep/runtime/afl.bpic.d
  CCDEPS .dep/runtime/addrmap.bpic.d
  CCDEPS .dep/runtime/signals_nat.ni.d
  CCDEPS .dep/runtime/startup_nat.ni.d
  CCDEPS .dep/runtime/frame_descriptors.ni.d
  CCDEPS .dep/runtime/fail_nat.ni.d
  CCDEPS .dep/runtime/dynlink_nat.ni.d
  CCDEPS .dep/runtime/clambda_checks.ni.d
  CCDEPS .dep/runtime/backtrace_nat.ni.d
  CCDEPS .dep/runtime/weak.ni.d
  CCDEPS .dep/runtime/unix.ni.d
  CCDEPS .dep/runtime/sys.ni.d
  CCDEPS .dep/runtime/sync.ni.d
  CCDEPS .dep/runtime/str.ni.d
  CCDEPS .dep/runtime/startup_aux.ni.d
  CCDEPS .dep/runtime/skiplist.ni.d
  CCDEPS .dep/runtime/signals.ni.d
  CCDEPS .dep/runtime/shared_heap.ni.d
  CCDEPS .dep/runtime/runtime_events.ni.d
  CCDEPS .dep/runtime/roots.ni.d
  CCDEPS .dep/runtime/prng.ni.d
  CCDEPS .dep/runtime/printexc.ni.d
  CCDEPS .dep/runtime/platform.ni.d
  CCDEPS .dep/runtime/parsing.ni.d
  CCDEPS .dep/runtime/obj.ni.d
  CCDEPS .dep/runtime/misc.ni.d
  CCDEPS .dep/runtime/minor_gc.ni.d
  CCDEPS .dep/runtime/meta.ni.d
  CCDEPS .dep/runtime/memprof.ni.d
  CCDEPS .dep/runtime/memory.ni.d
  CCDEPS .dep/runtime/md5.ni.d
  CCDEPS .dep/runtime/major_gc.ni.d
  CCDEPS .dep/runtime/main.ni.d
  CCDEPS .dep/runtime/lf_skiplist.ni.d
  CCDEPS .dep/runtime/lexing.ni.d
  CCDEPS .dep/runtime/io.ni.d
  CCDEPS .dep/runtime/ints.ni.d
  CCDEPS .dep/runtime/intern.ni.d
  CCDEPS .dep/runtime/hash.ni.d
  CCDEPS .dep/runtime/globroots.ni.d
  CCDEPS .dep/runtime/gc_stats.ni.d
  CCDEPS .dep/runtime/gc_ctrl.ni.d
  CCDEPS .dep/runtime/floats.ni.d
  CCDEPS .dep/runtime/finalise.ni.d
  CCDEPS .dep/runtime/fiber.ni.d
  CCDEPS .dep/runtime/fail.ni.d
  CCDEPS .dep/runtime/extern.ni.d
  CCDEPS .dep/runtime/dynlink.ni.d
  CCDEPS .dep/runtime/domain.ni.d
  CCDEPS .dep/runtime/debugger.ni.d
  CCDEPS .dep/runtime/custom.ni.d
  CCDEPS .dep/runtime/compare.ni.d
  CCDEPS .dep/runtime/codefrag.ni.d
  CCDEPS .dep/runtime/callback.ni.d
  CCDEPS .dep/runtime/blake2.ni.d
  CCDEPS .dep/runtime/bigarray.ni.d
  CCDEPS .dep/runtime/backtrace.ni.d
  CCDEPS .dep/runtime/array.ni.d
  CCDEPS .dep/runtime/alloc.ni.d
  CCDEPS .dep/runtime/afl.ni.d
  CCDEPS .dep/runtime/addrmap.ni.d
  CCDEPS .dep/runtime/instrtrace.bi.d
  CCDEPS .dep/runtime/zstd.bi.d
  CCDEPS .dep/runtime/startup_byt.bi.d
  CCDEPS .dep/runtime/interp.bi.d
  CCDEPS .dep/runtime/fix_code.bi.d
  CCDEPS .dep/runtime/fail_byt.bi.d
  CCDEPS .dep/runtime/backtrace_byt.bi.d
  CCDEPS .dep/runtime/weak.bi.d
  CCDEPS .dep/runtime/unix.bi.d
  CCDEPS .dep/runtime/sys.bi.d
  CCDEPS .dep/runtime/sync.bi.d
  CCDEPS .dep/runtime/str.bi.d
  CCDEPS .dep/runtime/startup_aux.bi.d
  CCDEPS .dep/runtime/skiplist.bi.d
  CCDEPS .dep/runtime/signals.bi.d
  CCDEPS .dep/runtime/shared_heap.bi.d
  CCDEPS .dep/runtime/runtime_events.bi.d
  CCDEPS .dep/runtime/roots.bi.d
  CCDEPS .dep/runtime/prng.bi.d
  CCDEPS .dep/runtime/printexc.bi.d
  CCDEPS .dep/runtime/platform.bi.d
  CCDEPS .dep/runtime/parsing.bi.d
  CCDEPS .dep/runtime/obj.bi.d
  CCDEPS .dep/runtime/misc.bi.d
  CCDEPS .dep/runtime/minor_gc.bi.d
  CCDEPS .dep/runtime/meta.bi.d
  CCDEPS .dep/runtime/memprof.bi.d
  CCDEPS .dep/runtime/memory.bi.d
  CCDEPS .dep/runtime/md5.bi.d
  CCDEPS .dep/runtime/major_gc.bi.d
  CCDEPS .dep/runtime/main.bi.d
  CCDEPS .dep/runtime/lf_skiplist.bi.d
  CCDEPS .dep/runtime/lexing.bi.d
  CCDEPS .dep/runtime/io.bi.d
  CCDEPS .dep/runtime/ints.bi.d
  CCDEPS .dep/runtime/intern.bi.d
  CCDEPS .dep/runtime/hash.bi.d
  CCDEPS .dep/runtime/globroots.bi.d
  CCDEPS .dep/runtime/gc_stats.bi.d
  CCDEPS .dep/runtime/gc_ctrl.bi.d
  CCDEPS .dep/runtime/floats.bi.d
  CCDEPS .dep/runtime/finalise.bi.d
  CCDEPS .dep/runtime/fiber.bi.d
  CCDEPS .dep/runtime/fail.bi.d
  CCDEPS .dep/runtime/extern.bi.d
  CCDEPS .dep/runtime/dynlink.bi.d
  CCDEPS .dep/runtime/domain.bi.d
  CCDEPS .dep/runtime/debugger.bi.d
  CCDEPS .dep/runtime/custom.bi.d
  CCDEPS .dep/runtime/compare.bi.d
  CCDEPS .dep/runtime/codefrag.bi.d
  CCDEPS .dep/runtime/callback.bi.d
  CCDEPS .dep/runtime/blake2.bi.d
  CCDEPS .dep/runtime/bigarray.bi.d
  CCDEPS .dep/runtime/backtrace.bi.d
  CCDEPS .dep/runtime/array.bi.d
  CCDEPS .dep/runtime/alloc.bi.d
  CCDEPS .dep/runtime/afl.bi.d
  CCDEPS .dep/runtime/addrmap.bi.d
  CCDEPS .dep/runtime/signals_nat.nd.d
  CCDEPS .dep/runtime/startup_nat.nd.d
  CCDEPS .dep/runtime/frame_descriptors.nd.d
  CCDEPS .dep/runtime/fail_nat.nd.d
  CCDEPS .dep/runtime/dynlink_nat.nd.d
  CCDEPS .dep/runtime/clambda_checks.nd.d
  CCDEPS .dep/runtime/backtrace_nat.nd.d
  CCDEPS .dep/runtime/weak.nd.d
  CCDEPS .dep/runtime/unix.nd.d
  CCDEPS .dep/runtime/sys.nd.d
  CCDEPS .dep/runtime/sync.nd.d
  CCDEPS .dep/runtime/str.nd.d
  CCDEPS .dep/runtime/startup_aux.nd.d
  CCDEPS .dep/runtime/skiplist.nd.d
  CCDEPS .dep/runtime/signals.nd.d
  CCDEPS .dep/runtime/shared_heap.nd.d
  CCDEPS .dep/runtime/runtime_events.nd.d
  CCDEPS .dep/runtime/roots.nd.d
  CCDEPS .dep/runtime/prng.nd.d
  CCDEPS .dep/runtime/printexc.nd.d
  CCDEPS .dep/runtime/platform.nd.d
  CCDEPS .dep/runtime/parsing.nd.d
  CCDEPS .dep/runtime/obj.nd.d
  CCDEPS .dep/runtime/misc.nd.d
  CCDEPS .dep/runtime/minor_gc.nd.d
  CCDEPS .dep/runtime/meta.nd.d
  CCDEPS .dep/runtime/memprof.nd.d
  CCDEPS .dep/runtime/memory.nd.d
  CCDEPS .dep/runtime/md5.nd.d
  CCDEPS .dep/runtime/major_gc.nd.d
  CCDEPS .dep/runtime/main.nd.d
  CCDEPS .dep/runtime/lf_skiplist.nd.d
  CCDEPS .dep/runtime/lexing.nd.d
  CCDEPS .dep/runtime/io.nd.d
  CCDEPS .dep/runtime/ints.nd.d
  CCDEPS .dep/runtime/intern.nd.d
  CCDEPS .dep/runtime/hash.nd.d
  CCDEPS .dep/runtime/globroots.nd.d
  CCDEPS .dep/runtime/gc_stats.nd.d
  CCDEPS .dep/runtime/gc_ctrl.nd.d
  CCDEPS .dep/runtime/floats.nd.d
  CCDEPS .dep/runtime/finalise.nd.d
  CCDEPS .dep/runtime/fiber.nd.d
  CCDEPS .dep/runtime/fail.nd.d
  CCDEPS .dep/runtime/extern.nd.d
  CCDEPS .dep/runtime/dynlink.nd.d
  CCDEPS .dep/runtime/domain.nd.d
  CCDEPS .dep/runtime/debugger.nd.d
  CCDEPS .dep/runtime/custom.nd.d
  CCDEPS .dep/runtime/compare.nd.d
  CCDEPS .dep/runtime/codefrag.nd.d
  CCDEPS .dep/runtime/callback.nd.d
  CCDEPS .dep/runtime/blake2.nd.d
  CCDEPS .dep/runtime/bigarray.nd.d
  CCDEPS .dep/runtime/backtrace.nd.d
  CCDEPS .dep/runtime/array.nd.d
  CCDEPS .dep/runtime/alloc.nd.d
  CCDEPS .dep/runtime/afl.nd.d
  CCDEPS .dep/runtime/addrmap.nd.d
  CCDEPS .dep/runtime/instrtrace.bd.d
  CCDEPS .dep/runtime/zstd.bd.d
  CCDEPS .dep/runtime/startup_byt.bd.d
  CCDEPS .dep/runtime/interp.bd.d
  CCDEPS .dep/runtime/fix_code.bd.d
  CCDEPS .dep/runtime/fail_byt.bd.d
  CCDEPS .dep/runtime/backtrace_byt.bd.d
  CCDEPS .dep/runtime/weak.bd.d
  CCDEPS .dep/runtime/unix.bd.d
  CCDEPS .dep/runtime/sys.bd.d
  CCDEPS .dep/runtime/sync.bd.d
  CCDEPS .dep/runtime/str.bd.d
  CCDEPS .dep/runtime/startup_aux.bd.d
  CCDEPS .dep/runtime/skiplist.bd.d
  CCDEPS .dep/runtime/signals.bd.d
  CCDEPS .dep/runtime/shared_heap.bd.d
  CCDEPS .dep/runtime/runtime_events.bd.d
  CCDEPS .dep/runtime/roots.bd.d
  CCDEPS .dep/runtime/prng.bd.d
  CCDEPS .dep/runtime/printexc.bd.d
  CCDEPS .dep/runtime/platform.bd.d
  CCDEPS .dep/runtime/parsing.bd.d
  CCDEPS .dep/runtime/obj.bd.d
  CCDEPS .dep/runtime/misc.bd.d
  CCDEPS .dep/runtime/minor_gc.bd.d
  CCDEPS .dep/runtime/meta.bd.d
  CCDEPS .dep/runtime/memprof.bd.d
  CCDEPS .dep/runtime/memory.bd.d
  CCDEPS .dep/runtime/md5.bd.d
  CCDEPS .dep/runtime/major_gc.bd.d
  CCDEPS .dep/runtime/main.bd.d
  CCDEPS .dep/runtime/lf_skiplist.bd.d
  CCDEPS .dep/runtime/lexing.bd.d
  CCDEPS .dep/runtime/io.bd.d
  CCDEPS .dep/runtime/ints.bd.d
  CCDEPS .dep/runtime/intern.bd.d
  CCDEPS .dep/runtime/hash.bd.d
  CCDEPS .dep/runtime/globroots.bd.d
  CCDEPS .dep/runtime/gc_stats.bd.d
  CCDEPS .dep/runtime/gc_ctrl.bd.d
  CCDEPS .dep/runtime/floats.bd.d
  CCDEPS .dep/runtime/finalise.bd.d
  CCDEPS .dep/runtime/fiber.bd.d
  CCDEPS .dep/runtime/fail.bd.d
  CCDEPS .dep/runtime/extern.bd.d
  CCDEPS .dep/runtime/dynlink.bd.d
  CCDEPS .dep/runtime/domain.bd.d
  CCDEPS .dep/runtime/debugger.bd.d
  CCDEPS .dep/runtime/custom.bd.d
  CCDEPS .dep/runtime/compare.bd.d
  CCDEPS .dep/runtime/codefrag.bd.d
  CCDEPS .dep/runtime/callback.bd.d
  CCDEPS .dep/runtime/blake2.bd.d
  CCDEPS .dep/runtime/bigarray.bd.d
  CCDEPS .dep/runtime/backtrace.bd.d
  CCDEPS .dep/runtime/array.bd.d
  CCDEPS .dep/runtime/alloc.bd.d
  CCDEPS .dep/runtime/afl.bd.d
  CCDEPS .dep/runtime/addrmap.bd.d
  CCDEPS .dep/runtime/signals_nat.n.d
  CCDEPS .dep/runtime/startup_nat.n.d
  CCDEPS .dep/runtime/frame_descriptors.n.d
  CCDEPS .dep/runtime/fail_nat.n.d
  CCDEPS .dep/runtime/dynlink_nat.n.d
  CCDEPS .dep/runtime/clambda_checks.n.d
  CCDEPS .dep/runtime/backtrace_nat.n.d
  CCDEPS .dep/runtime/weak.n.d
  CCDEPS .dep/runtime/unix.n.d
  CCDEPS .dep/runtime/sys.n.d
  CCDEPS .dep/runtime/sync.n.d
  CCDEPS .dep/runtime/str.n.d
  CCDEPS .dep/runtime/startup_aux.n.d
  CCDEPS .dep/runtime/skiplist.n.d
  CCDEPS .dep/runtime/signals.n.d
  CCDEPS .dep/runtime/shared_heap.n.d
  CCDEPS .dep/runtime/runtime_events.n.d
  CCDEPS .dep/runtime/roots.n.d
  CCDEPS .dep/runtime/prng.n.d
  CCDEPS .dep/runtime/printexc.n.d
  CCDEPS .dep/runtime/platform.n.d
  CCDEPS .dep/runtime/parsing.n.d
  CCDEPS .dep/runtime/obj.n.d
  CCDEPS .dep/runtime/misc.n.d
  CCDEPS .dep/runtime/minor_gc.n.d
  CCDEPS .dep/runtime/meta.n.d
  CCDEPS .dep/runtime/memprof.n.d
  CCDEPS .dep/runtime/memory.n.d
  CCDEPS .dep/runtime/md5.n.d
  CCDEPS .dep/runtime/major_gc.n.d
  CCDEPS .dep/runtime/main.n.d
  CCDEPS .dep/runtime/lf_skiplist.n.d
  CCDEPS .dep/runtime/lexing.n.d
  CCDEPS .dep/runtime/io.n.d
  CCDEPS .dep/runtime/ints.n.d
  CCDEPS .dep/runtime/intern.n.d
  CCDEPS .dep/runtime/hash.n.d
  CCDEPS .dep/runtime/globroots.n.d
  CCDEPS .dep/runtime/gc_stats.n.d
  CCDEPS .dep/runtime/gc_ctrl.n.d
  CCDEPS .dep/runtime/floats.n.d
  CCDEPS .dep/runtime/finalise.n.d
  CCDEPS .dep/runtime/fiber.n.d
  CCDEPS .dep/runtime/fail.n.d
  CCDEPS .dep/runtime/extern.n.d
  CCDEPS .dep/runtime/dynlink.n.d
  CCDEPS .dep/runtime/domain.n.d
  CCDEPS .dep/runtime/debugger.n.d
  CCDEPS .dep/runtime/custom.n.d
  CCDEPS .dep/runtime/compare.n.d
  CCDEPS .dep/runtime/codefrag.n.d
  CCDEPS .dep/runtime/callback.n.d
  CCDEPS .dep/runtime/blake2.n.d
  CCDEPS .dep/runtime/bigarray.n.d
  CCDEPS .dep/runtime/backtrace.n.d
  CCDEPS .dep/runtime/array.n.d
  CCDEPS .dep/runtime/alloc.n.d
  CCDEPS .dep/runtime/afl.n.d
  CCDEPS .dep/runtime/addrmap.n.d
  CCDEPS .dep/runtime/instrtrace.b.d
  CCDEPS .dep/runtime/zstd.b.d
  CCDEPS .dep/runtime/startup_byt.b.d
  CCDEPS .dep/runtime/interp.b.d
  CCDEPS .dep/runtime/fix_code.b.d
  CCDEPS .dep/runtime/fail_byt.b.d
  CCDEPS .dep/runtime/backtrace_byt.b.d
  CCDEPS .dep/runtime/weak.b.d
  CCDEPS .dep/runtime/unix.b.d
  CCDEPS .dep/runtime/sys.b.d
  CCDEPS .dep/runtime/sync.b.d
  CCDEPS .dep/runtime/str.b.d
  CCDEPS .dep/runtime/startup_aux.b.d
  CCDEPS .dep/runtime/skiplist.b.d
  CCDEPS .dep/runtime/signals.b.d
  CCDEPS .dep/runtime/shared_heap.b.d
  CCDEPS .dep/runtime/runtime_events.b.d
  CCDEPS .dep/runtime/roots.b.d
  CCDEPS .dep/runtime/prng.b.d
  CCDEPS .dep/runtime/printexc.b.d
  CCDEPS .dep/runtime/platform.b.d
  CCDEPS .dep/runtime/parsing.b.d
  CCDEPS .dep/runtime/obj.b.d
  CCDEPS .dep/runtime/misc.b.d
  CCDEPS .dep/runtime/minor_gc.b.d
  CCDEPS .dep/runtime/meta.b.d
  CCDEPS .dep/runtime/memprof.b.d
  CCDEPS .dep/runtime/memory.b.d
  CCDEPS .dep/runtime/md5.b.d
  CCDEPS .dep/runtime/major_gc.b.d
  CCDEPS .dep/runtime/main.b.d
  CCDEPS .dep/runtime/lf_skiplist.b.d
  CCDEPS .dep/runtime/lexing.b.d
  CCDEPS .dep/runtime/io.b.d
  CCDEPS .dep/runtime/ints.b.d
  CCDEPS .dep/runtime/intern.b.d
  CCDEPS .dep/runtime/hash.b.d
  CCDEPS .dep/runtime/globroots.b.d
  CCDEPS .dep/runtime/gc_stats.b.d
  CCDEPS .dep/runtime/gc_ctrl.b.d
  CCDEPS .dep/runtime/floats.b.d
  CCDEPS .dep/runtime/finalise.b.d
  CCDEPS .dep/runtime/fiber.b.d
  CCDEPS .dep/runtime/fail.b.d
  CCDEPS .dep/runtime/extern.b.d
  CCDEPS .dep/runtime/dynlink.b.d
  CCDEPS .dep/runtime/domain.b.d
  CCDEPS .dep/runtime/debugger.b.d
  CCDEPS .dep/runtime/custom.b.d
  CCDEPS .dep/runtime/compare.b.d
  CCDEPS .dep/runtime/codefrag.b.d
  CCDEPS .dep/runtime/callback.b.d
  CCDEPS .dep/runtime/blake2.b.d
  CCDEPS .dep/runtime/bigarray.b.d
  CCDEPS .dep/runtime/backtrace.b.d
  CCDEPS .dep/runtime/array.b.d
  CCDEPS .dep/runtime/alloc.b.d
  CCDEPS .dep/runtime/afl.b.d
  CCDEPS .dep/runtime/addrmap.b.d
make coldstart
make[1]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  GEN runtime/primitives
  CC runtime/addrmap.b.o
  CC runtime/afl.b.o
  CC runtime/alloc.b.o
  CC runtime/array.b.o
  CC runtime/backtrace.b.o
  CC runtime/bigarray.b.o
  CC runtime/blake2.b.o
  CC runtime/callback.b.o
  CC runtime/codefrag.b.o
  CC runtime/compare.b.o
  CC runtime/custom.b.o
  CC runtime/debugger.b.o
  CC runtime/domain.b.o
  CC runtime/dynlink.b.o
  CC runtime/extern.b.o
  CC runtime/fail.b.o
  CC runtime/fiber.b.o
  CC runtime/finalise.b.o
  CC runtime/floats.b.o
  CC runtime/gc_ctrl.b.o
  CC runtime/gc_stats.b.o
  CC runtime/globroots.b.o
  CC runtime/hash.b.o
  CC runtime/intern.b.o
  CC runtime/ints.b.o
  CC runtime/io.b.o
  CC runtime/lexing.b.o
  CC runtime/lf_skiplist.b.o
  CC runtime/main.b.o
  CC runtime/major_gc.b.o
  CC runtime/md5.b.o
  CC runtime/memory.b.o
  CC runtime/memprof.b.o
  CC runtime/meta.b.o
  CC runtime/minor_gc.b.o
  CC runtime/misc.b.o
  CC runtime/obj.b.o
  CC runtime/parsing.b.o
  CC runtime/platform.b.o
  CC runtime/printexc.b.o
  CC runtime/prng.b.o
  CC runtime/roots.b.o
  CC runtime/runtime_events.b.o
  CC runtime/shared_heap.b.o
  CC runtime/signals.b.o
  CC runtime/skiplist.b.o
  CC runtime/startup_aux.b.o
  CC runtime/str.b.o
  CC runtime/sync.b.o
  CC runtime/sys.b.o
  CC runtime/unix.b.o
  CC runtime/weak.b.o
  CC runtime/backtrace_byt.b.o
  CC runtime/fail_byt.b.o
  CC runtime/fix_code.b.o
  CC runtime/interp.b.o
  CC runtime/startup_byt.b.o
  CC runtime/zstd.b.o
  GEN runtime/prims.c
  CC runtime/prims.o
  MKLIB runtime/libcamlrun.a
  MKEXE runtime/ocamlrun
cp runtime/ocamlrun boot/ocamlrun
make -C stdlib OCAMLRUN='$(ROOTDIR)/boot/ocamlrun' USE_BOOT_OCAMLC=true all
make[2]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers/stdlib'
  OCAMLC camlinternalFormatBasics.cmi
  CC header.o
  MKEXE tmpheader.exe
  OCAMLC camlinternalFormatBasics.cmo
  OCAMLC stdlib.cmi
strip tmpheader.exe
  OCAMLC stdlib.cmo
  OCAMLC stdlib__Either.cmi
  OCAMLC stdlib__Sys.cmi
  OCAMLC stdlib__Int32.cmi
  OCAMLC stdlib__Type.cmi
  OCAMLC stdlib__Atomic.cmi
  OCAMLC camlinternalLazy.cmi
  OCAMLC stdlib__Bool.cmi
  OCAMLC stdlib__Char.cmi
  OCAMLC stdlib__Uchar.cmi
  OCAMLC stdlib__Int.cmi
  OCAMLC stdlib__Unit.cmi
  OCAMLC stdlib__Marshal.cmi
  OCAMLC stdlib__Int32.cmo
  OCAMLC stdlib__Int64.cmi
  OCAMLC stdlib__Nativeint.cmi
  OCAMLC stdlib__Lexing.cmi
  OCAMLC stdlib__Mutex.cmi
  OCAMLC stdlib__Semaphore.cmi
  OCAMLC stdlib__Domain.cmi
  OCAMLC stdlib__Arg.cmi
  OCAMLC stdlib__Fun.cmi
  OCAMLC stdlib__Complex.cmi
  OCAMLC stdlib__Digest.cmi
  OCAMLC stdlib__Random.cmi
  OCAMLC stdlib__Scanf.cmi
  OCAMLC stdlib__Callback.cmi
  OCAMLC stdlib__Filename.cmi
  OCAMLC std_exit.cmi
  OCAMLC stdlib__Either.cmo
  OCAMLC stdlib__Sys.cmo
  OCAMLC stdlib__Obj.cmi
  OCAMLC stdlib__Atomic.cmo
  OCAMLC stdlib__Lazy.cmi
  OCAMLC stdlib__Seq.cmi
  OCAMLC stdlib__Bool.cmo
  OCAMLC stdlib__Char.cmo
  OCAMLC stdlib__Uchar.cmo
  OCAMLC stdlib__Int.cmo
  OCAMLC stdlib__Unit.cmo
  OCAMLC stdlib__Int64.cmo
  OCAMLC stdlib__Nativeint.cmo
  OCAMLC stdlib__Parsing.cmi
  OCAMLC stdlib__Mutex.cmo
  OCAMLC stdlib__Condition.cmi
  OCAMLC stdlib__Printexc.cmi
  OCAMLC stdlib__Bigarray.cmi
  OCAMLC stdlib__Hashtbl.cmi
  OCAMLC stdlib__Callback.cmo
  OCAMLC camlinternalOO.cmi
  OCAMLC camlinternalMod.cmi
  OCAMLC stdlib__Dynarray.cmi
  OCAMLC stdlib__ArrayLabels.cmi
  OCAMLC stdlib__ListLabels.cmi
  OCAMLC stdlib__BytesLabels.cmi
  OCAMLC stdlib__StringLabels.cmi
  OCAMLC stdlib__Effect.cmi
  OCAMLC std_exit.cmo
  OCAMLC stdlib__Obj.cmo
  OCAMLC stdlib__Type.cmo
  OCAMLC camlinternalLazy.cmo
  OCAMLC stdlib__Lazy.cmo
  OCAMLC stdlib__Seq.cmo
  OCAMLC stdlib__Option.cmi
  OCAMLC stdlib__Result.cmi
  OCAMLC stdlib__List.cmi
  OCAMLC stdlib__Bytes.cmi
  OCAMLC stdlib__String.cmi
  OCAMLC stdlib__Array.cmi
  OCAMLC stdlib__Float.cmi
  OCAMLC stdlib__Set.cmi
  OCAMLC stdlib__Map.cmi
  OCAMLC stdlib__Stack.cmi
  OCAMLC stdlib__Queue.cmi
  OCAMLC stdlib__Buffer.cmi
  OCAMLC stdlib__Condition.cmo
  OCAMLC stdlib__Semaphore.cmo
  OCAMLC stdlib__Domain.cmo
  OCAMLC stdlib__Fun.cmo
  OCAMLC stdlib__Gc.cmi
  OCAMLC stdlib__In_channel.cmi
  OCAMLC stdlib__Out_channel.cmi
  OCAMLC stdlib__Bigarray.cmo
  OCAMLC stdlib__Random.cmo
  OCAMLC stdlib__Hashtbl.cmo
  OCAMLC stdlib__Weak.cmi
  OCAMLC stdlib__Format.cmi
  OCAMLC camlinternalOO.cmo
  OCAMLC stdlib__Oo.cmi
  OCAMLC camlinternalMod.cmo
  OCAMLC stdlib__Ephemeron.cmi
  OCAMLC stdlib__Complex.cmo
  OCAMLC stdlib__ArrayLabels.cmo
  OCAMLC stdlib__ListLabels.cmo
  OCAMLC stdlib__BytesLabels.cmo
  OCAMLC stdlib__StringLabels.cmo
  OCAMLC stdlib__MoreLabels.cmi
  OCAMLC stdlib__StdLabels.cmi
  OCAMLC stdlib__Option.cmo
  OCAMLC stdlib__Result.cmo
  OCAMLC stdlib__List.cmo
  OCAMLC stdlib__Bytes.cmo
  OCAMLC stdlib__String.cmo
  OCAMLC stdlib__Marshal.cmo
  OCAMLC stdlib__Array.cmo
  OCAMLC stdlib__Float.cmo
  OCAMLC stdlib__Lexing.cmo
  OCAMLC stdlib__Parsing.cmo
  OCAMLC stdlib__Set.cmo
  OCAMLC stdlib__Map.cmo
  OCAMLC stdlib__Stack.cmo
  OCAMLC stdlib__Queue.cmo
  OCAMLC stdlib__Buffer.cmo
  OCAMLC camlinternalFormat.cmi
  OCAMLC stdlib__Printf.cmi
  OCAMLC stdlib__In_channel.cmo
  OCAMLC stdlib__Out_channel.cmo
  OCAMLC stdlib__Digest.cmo
  OCAMLC stdlib__Weak.cmo
  OCAMLC stdlib__Format.cmo
  OCAMLC stdlib__Scanf.cmo
  OCAMLC stdlib__Oo.cmo
  OCAMLC stdlib__Dynarray.cmo
  OCAMLC stdlib__Ephemeron.cmo
  OCAMLC stdlib__Filename.cmo
  OCAMLC stdlib__MoreLabels.cmo
  OCAMLC stdlib__StdLabels.cmo
  OCAMLC stdlib__Effect.cmo
  OCAMLC camlinternalFormat.cmo
  OCAMLC stdlib__Printf.cmo
  OCAMLC stdlib__Arg.cmo
  OCAMLC stdlib__Printexc.cmo
  OCAMLC stdlib__Gc.cmo
  LINKC stdlib.cma
rm tmpheader.exe
make[2]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers/stdlib'
rm -f boot/libcamlrun.a boot/stdlib.cma boot/std_exit.cmo boot/*.cmi boot/runtime-launch-info
cp stdlib/stdlib.cma stdlib/std_exit.cmo stdlib/*.cmi stdlib/runtime-launch-info boot
cd boot; ln -sf ../runtime/libcamlrun.a .
make[1]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make opt.opt
make[1]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make checkstack
make[2]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  CC tools/checkstack.o
  MKEXE tools/checkstack
tools/checkstack
rm tools/checkstack tools/checkstack.o
make[2]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make coreall
make[2]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  GEN runtime/ld.conf
  CC runtime/addrmap.bd.o
  CC runtime/afl.bd.o
  CC runtime/alloc.bd.o
  CC runtime/array.bd.o
  CC runtime/backtrace.bd.o
  CC runtime/bigarray.bd.o
  CC runtime/blake2.bd.o
  CC runtime/callback.bd.o
  CC runtime/codefrag.bd.o
  CC runtime/compare.bd.o
  CC runtime/custom.bd.o
  CC runtime/debugger.bd.o
  CC runtime/domain.bd.o
  CC runtime/dynlink.bd.o
  CC runtime/extern.bd.o
  CC runtime/fail.bd.o
  CC runtime/fiber.bd.o
  CC runtime/finalise.bd.o
  CC runtime/floats.bd.o
  CC runtime/gc_ctrl.bd.o
  CC runtime/gc_stats.bd.o
  CC runtime/globroots.bd.o
  CC runtime/hash.bd.o
  CC runtime/intern.bd.o
  CC runtime/ints.bd.o
  CC runtime/io.bd.o
  CC runtime/lexing.bd.o
  CC runtime/lf_skiplist.bd.o
  CC runtime/main.bd.o
  CC runtime/major_gc.bd.o
  CC runtime/md5.bd.o
  CC runtime/memory.bd.o
  CC runtime/memprof.bd.o
  CC runtime/meta.bd.o
  CC runtime/minor_gc.bd.o
  CC runtime/misc.bd.o
  CC runtime/obj.bd.o
  CC runtime/parsing.bd.o
  CC runtime/platform.bd.o
  CC runtime/printexc.bd.o
  CC runtime/prng.bd.o
  CC runtime/roots.bd.o
  CC runtime/runtime_events.bd.o
  CC runtime/shared_heap.bd.o
  CC runtime/signals.bd.o
  CC runtime/skiplist.bd.o
  CC runtime/startup_aux.bd.o
  CC runtime/str.bd.o
  CC runtime/sync.bd.o
  CC runtime/sys.bd.o
  CC runtime/unix.bd.o
  CC runtime/weak.bd.o
  CC runtime/backtrace_byt.bd.o
  CC runtime/fail_byt.bd.o
  CC runtime/fix_code.bd.o
  CC runtime/interp.bd.o
  CC runtime/startup_byt.bd.o
  CC runtime/zstd.bd.o
  CC runtime/instrtrace.bd.o
  CC runtime/addrmap.bi.o
  CC runtime/afl.bi.o
  CC runtime/alloc.bi.o
  CC runtime/array.bi.o
  CC runtime/backtrace.bi.o
  CC runtime/bigarray.bi.o
  CC runtime/blake2.bi.o
  CC runtime/callback.bi.o
  CC runtime/codefrag.bi.o
  CC runtime/compare.bi.o
  CC runtime/custom.bi.o
  CC runtime/debugger.bi.o
  CC runtime/domain.bi.o
  CC runtime/dynlink.bi.o
  CC runtime/extern.bi.o
  CC runtime/fail.bi.o
  CC runtime/fiber.bi.o
  CC runtime/finalise.bi.o
  CC runtime/floats.bi.o
  CC runtime/gc_ctrl.bi.o
  CC runtime/gc_stats.bi.o
  CC runtime/globroots.bi.o
  CC runtime/hash.bi.o
  CC runtime/intern.bi.o
  CC runtime/ints.bi.o
  CC runtime/io.bi.o
  CC runtime/lexing.bi.o
  CC runtime/lf_skiplist.bi.o
  CC runtime/main.bi.o
  CC runtime/major_gc.bi.o
  CC runtime/md5.bi.o
  CC runtime/memory.bi.o
  CC runtime/memprof.bi.o
  CC runtime/meta.bi.o
  CC runtime/minor_gc.bi.o
  CC runtime/misc.bi.o
  CC runtime/obj.bi.o
  CC runtime/parsing.bi.o
  CC runtime/platform.bi.o
  CC runtime/printexc.bi.o
  CC runtime/prng.bi.o
  CC runtime/roots.bi.o
  CC runtime/runtime_events.bi.o
  CC runtime/shared_heap.bi.o
  CC runtime/signals.bi.o
  CC runtime/skiplist.bi.o
  CC runtime/startup_aux.bi.o
  CC runtime/str.bi.o
  CC runtime/sync.bi.o
  CC runtime/sys.bi.o
  CC runtime/unix.bi.o
  CC runtime/weak.bi.o
  CC runtime/backtrace_byt.bi.o
  CC runtime/fail_byt.bi.o
  CC runtime/fix_code.bi.o
  CC runtime/interp.bi.o
  CC runtime/startup_byt.bi.o
  CC runtime/zstd.bi.o
  CC runtime/addrmap.bpic.o
  CC runtime/afl.bpic.o
  CC runtime/alloc.bpic.o
  CC runtime/array.bpic.o
  CC runtime/backtrace.bpic.o
  CC runtime/bigarray.bpic.o
  CC runtime/blake2.bpic.o
  CC runtime/callback.bpic.o
  CC runtime/codefrag.bpic.o
  CC runtime/compare.bpic.o
  CC runtime/custom.bpic.o
  CC runtime/debugger.bpic.o
  CC runtime/domain.bpic.o
  CC runtime/dynlink.bpic.o
  CC runtime/extern.bpic.o
  CC runtime/fail.bpic.o
  CC runtime/fiber.bpic.o
  CC runtime/finalise.bpic.o
  CC runtime/floats.bpic.o
  CC runtime/gc_ctrl.bpic.o
  CC runtime/gc_stats.bpic.o
  CC runtime/globroots.bpic.o
  CC runtime/hash.bpic.o
  CC runtime/intern.bpic.o
  CC runtime/ints.bpic.o
  CC runtime/io.bpic.o
  CC runtime/lexing.bpic.o
  CC runtime/lf_skiplist.bpic.o
  CC runtime/main.bpic.o
  CC runtime/major_gc.bpic.o
  CC runtime/md5.bpic.o
  CC runtime/memory.bpic.o
  CC runtime/memprof.bpic.o
  CC runtime/meta.bpic.o
  CC runtime/minor_gc.bpic.o
  CC runtime/misc.bpic.o
  CC runtime/obj.bpic.o
  CC runtime/parsing.bpic.o
  CC runtime/platform.bpic.o
  CC runtime/printexc.bpic.o
  CC runtime/prng.bpic.o
  CC runtime/roots.bpic.o
  CC runtime/runtime_events.bpic.o
  CC runtime/shared_heap.bpic.o
  CC runtime/signals.bpic.o
  CC runtime/skiplist.bpic.o
  CC runtime/startup_aux.bpic.o
  CC runtime/str.bpic.o
  CC runtime/sync.bpic.o
  CC runtime/sys.bpic.o
  CC runtime/unix.bpic.o
  CC runtime/weak.bpic.o
  CC runtime/backtrace_byt.bpic.o
  CC runtime/fail_byt.bpic.o
  CC runtime/fix_code.bpic.o
  CC runtime/interp.bpic.o
  CC runtime/startup_byt.bpic.o
  CC runtime/zstd.bpic.o
  MKLIB runtime/libcamlrund.a
  MKLIB runtime/libcamlruni.a
  MKEXE runtime/ocamlruni
  MKEXE runtime/ocamlrund
  MKLIB runtime/libcamlrun_pic.a
  MKDLL runtime/libcamlrun_shared.so
cd stdlib; ln -sf ../runtime/libcamlrun.a .
make ocamlc
make[3]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  OCAMLC utils/config.cmi
  OCAMLC utils/build_path_prefix_map.cmi
  OCAMLC utils/format_doc.cmi
  OCAMLC utils/identifiable.cmi
  OCAMLC utils/arg_helper.cmi
  OCAMLC utils/local_store.cmi
  OCAMLC utils/load_path.cmi
  OCAMLC utils/profile.cmi
  OCAMLC utils/terminfo.cmi
  OCAMLC utils/ccomp.cmi
  OCAMLC utils/targetint.cmi
  OCAMLC utils/int_replace_polymorphic_compare.cmi
  GEN utils/domainstate.mli
  OCAMLC utils/binutils.cmi
  OCAMLC utils/lazy_backtrack.cmi
  OCAMLC utils/compression.cmi
  OCAMLC parsing/unit_info.cmi
  OCAMLC parsing/longident.cmi
  GEN parsing/camlinternalMenhirLib.mli
  OCAMLC typing/value_rec_types.cmi
  OCAMLC lambda/switch.cmi
  OCAMLC lambda/runtimedef.cmi
  OCAMLC file_formats/cmo_format.cmi
  OCAMLC middle_end/flambda/allocated_const.cmi
  OCAMLC file_formats/cmxs_format.cmi
  OCAMLC tools/make_opcodes.cmi
  OCAMLLEX tools/make_opcodes.ml
  OCAMLC bytecomp/bytesections.cmi
  OCAMLC bytecomp/dll.cmi
  OCAMLC driver/main_args.cmi
  OCAMLC driver/makedepend.cmi
  GEN utils/config_main.ml
  OCAMLC utils/build_path_prefix_map.cmo
  OCAMLC utils/format_doc.cmo
  OCAMLC utils/arg_helper.cmo
  OCAMLC utils/local_store.cmo
  OCAMLC utils/terminfo.cmo
  OCAMLC utils/int_replace_polymorphic_compare.cmo
  GEN utils/domainstate.ml
  OCAMLC utils/binutils.cmo
  OCAMLC utils/lazy_backtrack.cmo
  OCAMLC utils/compression.cmo
  GEN parsing/camlinternalMenhirLib.ml
  OCAMLLEX parsing/lexer.ml
  OCAMLC lambda/switch.cmo
  GEN lambda/runtimedef.ml
  OCAMLC bytecomp/bytesections.cmo
cp utils/config.mli utils/config_main.mli
  GEN utils/config_boot.ml
cp utils/config.mli utils/config_boot.mli
  OCAMLC driver/errors.cmi
  OCAMLC driver/maindriver.cmi
  OCAMLC driver/main.cmi
  OCAMLC utils/misc.cmi
  OCAMLC utils/numbers.cmi
  OCAMLC utils/warnings.cmi
  OCAMLC utils/linkdeps.cmi
  OCAMLC utils/strongly_connected_components.cmi
  OCAMLC utils/domainstate.cmi
  OCAMLC parsing/location.cmi
  OCAMLC parsing/camlinternalMenhirLib.cmi
  OCAMLC typing/ident.cmi
  OCAMLC middle_end/linkage_name.cmi
  OCAMLC middle_end/flambda/base_types/tag.cmi
  OCAMLC middle_end/flambda/base_types/static_exception.cmi
  OCAMLC tools/make_opcodes.cmo
  GEN utils/config.ml
  OCAMLC utils/misc.cmo
  OCAMLC utils/identifiable.cmo
  OCAMLC utils/numbers.cmo
  OCAMLC utils/load_path.cmo
  OCAMLC utils/profile.cmo
  OCAMLC utils/warnings.cmo
  OCAMLC utils/linkdeps.cmo
  OCAMLC utils/strongly_connected_components.cmo
  OCAMLC utils/targetint.cmo
  OCAMLC utils/domainstate.cmo
  OCAMLC parsing/unit_info.cmo
  OCAMLC parsing/longident.cmo
  OCAMLC parsing/camlinternalMenhirLib.cmo
  OCAMLC lambda/runtimedef.cmo
  OCAMLC bytecomp/dll.cmo
  OCAMLC utils/config_main.cmi
  OCAMLC utils/config_boot.cmi
  OCAMLC bytecomp/bytelibrarian.cmi
  OCAMLC driver/errors.cmo
  OCAMLC driver/main.cmo
  OCAMLC utils/clflags.cmi
  OCAMLC utils/consistbl.cmi
  OCAMLC utils/diffing.cmi
  OCAMLC parsing/asttypes.cmi
  OCAMLC parsing/syntaxerr.cmi
  OCAMLC typing/annot.cmi
  OCAMLC typing/path.cmi
  OCAMLC lambda/debuginfo.cmi
  OCAMLC middle_end/compilation_unit.cmi
  LINKC tools/make_opcodes
  OCAMLC driver/compenv.cmi
  OCAMLC utils/config.cmo
  OCAMLC utils/clflags.cmo
  OCAMLC utils/ccomp.cmo
  OCAMLC utils/consistbl.cmo
  OCAMLC utils/diffing.cmo
  OCAMLC parsing/location.cmo
  OCAMLC parsing/asttypes.cmo
  OCAMLC parsing/syntaxerr.cmo
  OCAMLC typing/ident.cmo
  OCAMLC lambda/debuginfo.cmo
  OCAMLC driver/compenv.cmo
  OCAMLC driver/main_args.cmo
  OCAMLC utils/config_main.cmo
  OCAMLC utils/config_boot.cmo
  OCAMLC utils/diffing_with_keys.cmi
  OCAMLC parsing/parsetree.cmi
  OCAMLC typing/shape.cmi
  OCAMLC middle_end/flambda/base_types/set_of_closures_id.cmi
  OCAMLC middle_end/flambda/base_types/export_id.cmi
  OCAMLC middle_end/backend_var.cmi
  GEN bytecomp/opcodes.ml
  OCAMLC driver/pparse.cmi
  OCAMLC utils/diffing_with_keys.cmo
  OCAMLC parsing/docstrings.cmi
  OCAMLC parsing/ast_iterator.cmi
  OCAMLC parsing/builtin_attributes.cmi
  OCAMLC parsing/pprintast.cmi
  OCAMLC parsing/parse.cmi
  OCAMLC parsing/printast.cmi
  OCAMLC parsing/ast_mapper.cmi
  OCAMLC parsing/attr_helper.cmi
  OCAMLC parsing/ast_invariants.cmi
  OCAMLC parsing/depend.cmi
  OCAMLC typing/type_immediacy.cmi
  OCAMLC middle_end/flambda/base_types/set_of_closures_origin.cmi
  GEN bytecomp/opcodes.mli
  OCAMLC parsing/docstrings.cmo
  OCAMLC parsing/ast_iterator.cmo
  OCAMLC parsing/printast.cmo
  OCAMLC parsing/attr_helper.cmo
  OCAMLC parsing/ast_invariants.cmo
  OCAMLC parsing/depend.cmo
  OCAMLC typing/type_immediacy.cmo
  OCAMLC typing/shape.cmo
  OCAMLC driver/pparse.cmo
  OCAMLC parsing/ast_helper.cmi
  OCAMLC typing/outcometree.cmi
  OCAMLC bytecomp/opcodes.cmi
  OCAMLC typing/primitive.cmi
  OCAMLC typing/oprint.cmi
  OCAMLC parsing/ast_helper.cmo
  OCAMLC parsing/builtin_attributes.cmo
  GEN parsing/parser.ml
  OCAMLC parsing/ast_mapper.cmo
  OCAMLC typing/primitive.cmo
  OCAMLC bytecomp/opcodes.cmo
  GEN parsing/parser.mli
  OCAMLC typing/types.cmi
  OCAMLC parsing/parser.cmi
  OCAMLC parsing/parser.cmo
  OCAMLC parsing/lexer.cmi
  OCAMLC parsing/lexer.cmo
  OCAMLC parsing/pprintast.cmo
  OCAMLC parsing/parse.cmo
  OCAMLC typing/path.cmo
  OCAMLC typing/types.cmo
  OCAMLC typing/oprint.cmo
  OCAMLC driver/makedepend.cmo
  OCAMLC typing/rawprinttyp.cmi
  OCAMLC typing/btype.cmi
  OCAMLC typing/subst.cmi
  OCAMLC typing/predef.cmi
  OCAMLC typing/datarepr.cmi
  OCAMLC file_formats/cmi_format.cmi
  OCAMLC typing/errortrace.cmi
  OCAMLC typing/signature_group.cmi
  OCAMLC typing/rawprinttyp.cmo
  OCAMLC typing/btype.cmo
  OCAMLC typing/subst.cmo
  OCAMLC typing/predef.cmo
  OCAMLC typing/datarepr.cmo
  OCAMLC file_formats/cmi_format.cmo
  OCAMLC typing/errortrace.cmo
  OCAMLC typing/signature_group.cmo
  OCAMLC typing/persistent_env.cmi
  OCAMLC typing/env.cmi
  OCAMLC typing/persistent_env.cmo
  OCAMLC typing/typedtree.cmi
  OCAMLC typing/ctype.cmi
  OCAMLC typing/printtyp.cmi
  OCAMLC typing/mtype.cmi
  OCAMLC typing/envaux.cmi
  OCAMLC typing/shape_reduce.cmi
  OCAMLC typing/typedecl_properties.cmi
  OCAMLC typing/typedecl_unboxed.cmi
  OCAMLC lambda/lambda.cmi
  OCAMLC driver/compmisc.cmi
  OCAMLC typing/env.cmo
  OCAMLC typing/ctype.cmo
  OCAMLC typing/printtyp.cmo
  OCAMLC typing/mtype.cmo
  OCAMLC typing/envaux.cmo
  OCAMLC typing/shape_reduce.cmo
  OCAMLC typing/typedecl_properties.cmo
  OCAMLC typing/typedecl_unboxed.cmo
  OCAMLC lambda/lambda.cmo
  OCAMLC bytecomp/bytepackager.cmi
  OCAMLC typing/printtyped.cmi
  OCAMLC typing/includeclass.cmi
  OCAMLC typing/includecore.cmi
  OCAMLC typing/tast_iterator.cmi
  OCAMLC typing/tast_mapper.cmi
  OCAMLC typing/stypes.cmi
  OCAMLC file_formats/cmt_format.cmi
  OCAMLC typing/untypeast.cmi
  OCAMLC typing/includemod.cmi
  OCAMLC typing/typetexp.cmi
  OCAMLC typing/printpat.cmi
  OCAMLC typing/patterns.cmi
  OCAMLC typing/parmatch.cmi
  OCAMLC typing/typedecl_variance.cmi
  OCAMLC typing/typedecl_immediacy.cmi
  OCAMLC typing/typedecl_separability.cmi
  OCAMLC typing/typeopt.cmi
  OCAMLC typing/value_rec_check.cmi
  OCAMLC typing/typecore.cmi
  OCAMLC typing/typeclass.cmi
  OCAMLC lambda/printlambda.cmi
  OCAMLC lambda/matching.cmi
  OCAMLC lambda/value_rec_compiler.cmi
  OCAMLC lambda/translobj.cmi
  OCAMLC lambda/translattribute.cmi
  OCAMLC lambda/translprim.cmi
  OCAMLC lambda/translcore.cmi
  OCAMLC lambda/translclass.cmi
  OCAMLC lambda/translmod.cmi
  OCAMLC lambda/tmc.cmi
  OCAMLC lambda/simplif.cmi
  OCAMLC middle_end/internal_variable_names.cmi
  OCAMLC middle_end/clambda_primitives.cmi
  OCAMLC bytecomp/instruct.cmi
  OCAMLC bytecomp/symtable.cmi
  OCAMLC driver/compile_common.cmi
  OCAMLC typing/typedtree.cmo
  OCAMLC typing/printtyped.cmo
  OCAMLC typing/includeclass.cmo
  OCAMLC typing/includecore.cmo
  OCAMLC typing/tast_iterator.cmo
  OCAMLC typing/tast_mapper.cmo
  OCAMLC typing/stypes.cmo
  OCAMLC file_formats/cmt_format.cmo
  OCAMLC typing/untypeast.cmo
  OCAMLC typing/includemod.cmo
  OCAMLC typing/typetexp.cmo
  OCAMLC typing/printpat.cmo
  OCAMLC typing/patterns.cmo
  OCAMLC typing/parmatch.cmo
  OCAMLC typing/typedecl_variance.cmo
  OCAMLC typing/typedecl_immediacy.cmo
  OCAMLC typing/typedecl_separability.cmo
  OCAMLC typing/typeopt.cmo
  OCAMLC typing/value_rec_check.cmo
  OCAMLC lambda/printlambda.cmo
  OCAMLC lambda/matching.cmo
  OCAMLC lambda/value_rec_compiler.cmo
  OCAMLC lambda/translobj.cmo
  OCAMLC lambda/translattribute.cmo
  OCAMLC lambda/translprim.cmo
  OCAMLC lambda/translcore.cmo
  OCAMLC lambda/translclass.cmo
  OCAMLC lambda/translmod.cmo
  OCAMLC lambda/tmc.cmo
  OCAMLC lambda/simplif.cmo
  OCAMLC bytecomp/bytegen.cmi
  OCAMLC bytecomp/printinstr.cmi
  OCAMLC bytecomp/emitcode.cmi
  OCAMLC bytecomp/bytelink.cmi
  OCAMLC driver/compile.cmi
  OCAMLC bytecomp/instruct.cmo
  OCAMLC bytecomp/bytegen.cmo
  OCAMLC bytecomp/printinstr.cmo
  OCAMLC bytecomp/emitcode.cmo
  OCAMLC bytecomp/bytelink.cmo
  OCAMLC bytecomp/bytelibrarian.cmo
  OCAMLC driver/compile.cmo
  OCAMLC driver/maindriver.cmo
  OCAMLC typing/cmt2annot.cmi
  OCAMLC typing/includemod_errorprinter.cmi
  OCAMLC typing/typedecl.cmi
  OCAMLC middle_end/variable.cmi
  OCAMLC middle_end/clambda.cmi
  OCAMLC bytecomp/meta.cmi
  OCAMLC typing/cmt2annot.cmo
  OCAMLC typing/includemod_errorprinter.cmo
  OCAMLC typing/typedecl.cmo
  OCAMLC typing/typecore.cmo
  OCAMLC typing/typeclass.cmo
  OCAMLC bytecomp/meta.cmo
  OCAMLC bytecomp/symtable.cmo
  OCAMLC typing/typemod.cmi
  OCAMLC middle_end/flambda/base_types/closure_element.cmi
  OCAMLC middle_end/symbol.cmi
  OCAMLC middle_end/flambda/parameter.cmi
  OCAMLC middle_end/flambda/base_types/mutable_variable.cmi
  OCAMLC middle_end/flambda/base_types/closure_id.cmi
  OCAMLC typing/typemod.cmo
  OCAMLC driver/compmisc.cmo
  OCAMLC driver/compile_common.cmo
  OCAMLC bytecomp/bytepackager.cmo
  OCAMLC middle_end/flambda/base_types/var_within_closure.cmi
  OCAMLC middle_end/flambda/base_types/closure_origin.cmi
  LINKC compilerlibs/ocamlbytecomp.cma
  OCAMLC middle_end/flambda/projection.cmi
  OCAMLC middle_end/flambda/flambda.cmi
  OCAMLC middle_end/flambda/freshening.cmi
  OCAMLC middle_end/flambda/simple_value_approx.cmi
  OCAMLC middle_end/flambda/export_info.cmi
  OCAMLC file_formats/cmx_format.cmi
  LINKC compilerlibs/ocamlcommon.cma
  LINKC ocamlc
make[3]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make ocamllex ocamltools library
make[3]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  CC yacc/closure.o
  CC yacc/error.o
  CC yacc/lalr.o
  CC yacc/lr0.o
  CC yacc/main.o
  CC yacc/mkpar.o
  CC yacc/output.o
  CC yacc/reader.o
  CC yacc/skeleton.o
  CC yacc/symtab.o
  CC yacc/verbose.o
  CC yacc/warshall.o
make -C stdlib all
make[4]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers/stdlib'
  OCAMLC camlinternalFormatBasics.cmi
  OCAMLC camlinternalFormatBasics.cmo
  OCAMLC stdlib.cmi
  OCAMLC stdlib.cmo
  OCAMLC stdlib__Either.cmi
  OCAMLC stdlib__Sys.cmi
  OCAMLC stdlib__Int32.cmi
  OCAMLC stdlib__Type.cmi
  OCAMLC stdlib__Atomic.cmi
  OCAMLC camlinternalLazy.cmi
  OCAMLC stdlib__Bool.cmi
  OCAMLC stdlib__Char.cmi
  OCAMLC stdlib__Uchar.cmi
  OCAMLC stdlib__Int.cmi
  OCAMLC stdlib__Unit.cmi
  OCAMLC stdlib__Marshal.cmi
  OCAMLC stdlib__Int32.cmo
  OCAMLC stdlib__Int64.cmi
  OCAMLC stdlib__Nativeint.cmi
  OCAMLC stdlib__Lexing.cmi
  OCAMLC stdlib__Mutex.cmi
  OCAMLC stdlib__Semaphore.cmi
  OCAMLC stdlib__Domain.cmi
  OCAMLC stdlib__Arg.cmi
  OCAMLC stdlib__Fun.cmi
  OCAMLC stdlib__Complex.cmi
  OCAMLC stdlib__Digest.cmi
  OCAMLC stdlib__Random.cmi
  OCAMLC stdlib__Scanf.cmi
  OCAMLC stdlib__Callback.cmi
  OCAMLC stdlib__Filename.cmi
  OCAMLC std_exit.cmi
  OCAMLC stdlib__Either.cmo
  OCAMLC stdlib__Sys.cmo
  OCAMLC stdlib__Obj.cmi
  OCAMLC stdlib__Atomic.cmo
  OCAMLC stdlib__Lazy.cmi
  OCAMLC stdlib__Seq.cmi
  OCAMLC stdlib__Bool.cmo
  OCAMLC stdlib__Char.cmo
  OCAMLC stdlib__Uchar.cmo
  OCAMLC stdlib__Int.cmo
  OCAMLC stdlib__Unit.cmo
  MKEXE yacc/ocamlyacc
  OCAMLC stdlib__Int64.cmo
  OCAMLC stdlib__Nativeint.cmo
  OCAMLC stdlib__Parsing.cmi
  OCAMLC stdlib__Mutex.cmo
  OCAMLC stdlib__Condition.cmi
  OCAMLC stdlib__Printexc.cmi
  OCAMLC stdlib__Bigarray.cmi
  OCAMLC stdlib__Hashtbl.cmi
  OCAMLC stdlib__Callback.cmo
  OCAMLC camlinternalOO.cmi
  OCAMLC camlinternalMod.cmi
  OCAMLC stdlib__Dynarray.cmi
  OCAMLC stdlib__ArrayLabels.cmi
  OCAMLC stdlib__ListLabels.cmi
  OCAMLC stdlib__BytesLabels.cmi
  OCAMLC stdlib__StringLabels.cmi
  OCAMLC stdlib__Effect.cmi
make lex-all
make[4]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  OCAMLC std_exit.cmo
  OCAMLC stdlib__Obj.cmo
  OCAMLC stdlib__Type.cmo
  OCAMLC lex/cset.cmi
  OCAMLYACC lex/parser.mli
  OCAMLC camlinternalLazy.cmo
  OCAMLC stdlib__Lazy.cmo
  OCAMLC stdlib__Seq.cmo
  OCAMLC stdlib__Option.cmi
  OCAMLC stdlib__Result.cmi
  OCAMLC stdlib__List.cmi
  OCAMLLEX lex/lexer.ml
  OCAMLC lex/table.cmi
  OCAMLC stdlib__Bytes.cmi
  OCAMLC stdlib__String.cmi
  OCAMLC stdlib__Array.cmi
  OCAMLC stdlib__Float.cmi
  OCAMLC stdlib__Set.cmi
  OCAMLC stdlib__Map.cmi
  OCAMLC stdlib__Stack.cmi
  OCAMLC stdlib__Queue.cmi
  OCAMLC lex/main.cmi
  OCAMLC stdlib__Buffer.cmi
  OCAMLC stdlib__Condition.cmo
  OCAMLC stdlib__Semaphore.cmo
  OCAMLC stdlib__Domain.cmo
  OCAMLC stdlib__Fun.cmo
  OCAMLC stdlib__Gc.cmi
  OCAMLC lex/cset.cmo
  OCAMLC lex/syntax.cmi
  OCAMLC stdlib__In_channel.cmi
  OCAMLC stdlib__Out_channel.cmi
  OCAMLC stdlib__Bigarray.cmo
  OCAMLC stdlib__Random.cmo
  OCAMLC stdlib__Hashtbl.cmo
  OCAMLC stdlib__Weak.cmi
  OCAMLC lex/table.cmo
  OCAMLC stdlib__Format.cmi
  OCAMLC camlinternalOO.cmo
  OCAMLC lex/syntax.cmo
  OCAMLC stdlib__Oo.cmi
  OCAMLC camlinternalMod.cmo
  OCAMLC lex/parser.cmi
  OCAMLC stdlib__Ephemeron.cmi
  OCAMLC lex/lexgen.cmi
  OCAMLC stdlib__Complex.cmo
  OCAMLC stdlib__ArrayLabels.cmo
  OCAMLC stdlib__ListLabels.cmo
  OCAMLC stdlib__BytesLabels.cmo
  OCAMLC lex/parser.cmo
  OCAMLC stdlib__StringLabels.cmo
  OCAMLC stdlib__MoreLabels.cmi
  OCAMLC lex/lexer.cmi
  OCAMLC stdlib__StdLabels.cmi
  OCAMLC stdlib__Option.cmo
  OCAMLC lex/lexgen.cmo
  OCAMLC stdlib__Result.cmo
  OCAMLC stdlib__List.cmo
  OCAMLC lex/compact.cmi
  OCAMLC stdlib__Bytes.cmo
  OCAMLC stdlib__String.cmo
  OCAMLC stdlib__Marshal.cmo
  OCAMLC lex/common.cmi
  OCAMLC stdlib__Array.cmo
  OCAMLC lex/lexer.cmo
  OCAMLC stdlib__Float.cmo
  OCAMLC stdlib__Lexing.cmo
  OCAMLC lex/compact.cmo
  OCAMLC stdlib__Parsing.cmo
  OCAMLC stdlib__Set.cmo
  OCAMLC stdlib__Map.cmo
  OCAMLC stdlib__Stack.cmo
  OCAMLC stdlib__Queue.cmo
  OCAMLC lex/common.cmo
  OCAMLC stdlib__Buffer.cmo
  OCAMLC lex/output.cmi
  OCAMLC lex/outputbis.cmi
  OCAMLC camlinternalFormat.cmi
  OCAMLC stdlib__Printf.cmi
  OCAMLC lex/output.cmo
  OCAMLC stdlib__In_channel.cmo
  OCAMLC stdlib__Out_channel.cmo
  OCAMLC stdlib__Digest.cmo
  OCAMLC lex/outputbis.cmo
  OCAMLC stdlib__Weak.cmo
  OCAMLC stdlib__Format.cmo
  OCAMLC lex/main.cmo
  OCAMLC stdlib__Scanf.cmo
  OCAMLC stdlib__Oo.cmo
  OCAMLC stdlib__Dynarray.cmo
  OCAMLC stdlib__Ephemeron.cmo
  OCAMLC stdlib__Filename.cmo
  OCAMLC stdlib__MoreLabels.cmo
  OCAMLC stdlib__StdLabels.cmo
  OCAMLC stdlib__Effect.cmo
  LINKC lex/ocamllex
make[4]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make tools-all
make[4]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  OCAMLC camlinternalFormat.cmo
  OCAMLC stdlib__Printf.cmo
  OCAMLC stdlib__Arg.cmo
  OCAMLC stdlib__Printexc.cmo
  OCAMLC stdlib__Gc.cmo
  OCAMLC tools/ocamldep.cmi
  OCAMLC middle_end/printclambda_primitives.cmi
  OCAMLC middle_end/printclambda.cmi
  OCAMLC middle_end/semantics_of_primitives.cmi
  OCAMLC middle_end/convert_primitives.cmi
  OCAMLC middle_end/flambda/base_types/id_types.cmi
  OCAMLC middle_end/flambda/pass_wrapper.cmi
  OCAMLC middle_end/flambda/flambda_iterators.cmi
  OCAMLC middle_end/flambda/flambda_utils.cmi
  OCAMLC middle_end/flambda/effect_analysis.cmi
  OCAMLC middle_end/flambda/inlining_cost.cmi
  OCAMLC middle_end/flambda/export_info_for_pack.cmi
  OCAMLC middle_end/compilenv.cmi
  OCAMLC middle_end/backend_intf.cmi
  OCAMLC middle_end/flambda/import_approx.cmi
  OCAMLC middle_end/flambda/lift_code.cmi
  OCAMLC middle_end/flambda/closure_conversion_aux.cmi
  OCAMLC middle_end/flambda/initialize_symbol_to_let_symbol.cmi
  OCAMLC middle_end/flambda/alias_analysis.cmi
  OCAMLC middle_end/flambda/share_constants.cmi
  OCAMLC middle_end/flambda/simplify_common.cmi
  OCAMLC middle_end/flambda/remove_unused_arguments.cmi
  OCAMLC middle_end/flambda/remove_unused_closure_vars.cmi
  OCAMLC middle_end/flambda/remove_unused_program_constructs.cmi
  OCAMLC middle_end/flambda/simplify_boxed_integer_ops_intf.cmi
  OCAMLC middle_end/flambda/simplify_primitives.cmi
  OCAMLC middle_end/flambda/inlining_stats_types.cmi
  OCAMLC middle_end/flambda/remove_free_vars_equal_to_args.cmi
  OCAMLC middle_end/flambda/ref_to_variables.cmi
  OCAMLC middle_end/flambda/flambda_invariants.cmi
  OCAMLC middle_end/flambda/traverse_for_exported_symbols.cmi
  OCAMLC middle_end/flambda/build_export_info.cmi
  OCAMLC middle_end/flambda/closure_offsets.cmi
  OCAMLC middle_end/flambda/un_anf.cmi
  OCAMLC middle_end/flambda/flambda_to_clambda.cmi
  OCAMLC middle_end/flambda/flambda_middle_end.cmi
  OCAMLC middle_end/internal_variable_names.cmo
  OCAMLC middle_end/linkage_name.cmo
  OCAMLC middle_end/compilation_unit.cmo
  OCAMLC middle_end/variable.cmo
  OCAMLC middle_end/flambda/base_types/closure_element.cmo
  OCAMLC middle_end/flambda/base_types/closure_id.cmo
  OCAMLC middle_end/symbol.cmo
  OCAMLC middle_end/backend_var.cmo
  OCAMLC middle_end/clambda_primitives.cmo
  OCAMLC middle_end/printclambda_primitives.cmo
  OCAMLC middle_end/clambda.cmo
  OCAMLC middle_end/printclambda.cmo
  OCAMLC middle_end/semantics_of_primitives.cmo
  OCAMLC middle_end/convert_primitives.cmo
  OCAMLC middle_end/flambda/base_types/id_types.cmo
  OCAMLC middle_end/flambda/base_types/export_id.cmo
  OCAMLC middle_end/flambda/base_types/tag.cmo
  OCAMLC middle_end/flambda/base_types/mutable_variable.cmo
  OCAMLC middle_end/flambda/base_types/set_of_closures_id.cmo
  OCAMLC middle_end/flambda/base_types/set_of_closures_origin.cmo
  OCAMLC middle_end/flambda/base_types/closure_origin.cmo
  OCAMLC middle_end/flambda/base_types/var_within_closure.cmo
  OCAMLC middle_end/flambda/base_types/static_exception.cmo
  OCAMLC middle_end/flambda/pass_wrapper.cmo
  OCAMLC middle_end/flambda/allocated_const.cmo
  OCAMLC middle_end/flambda/parameter.cmo
  OCAMLC middle_end/flambda/projection.cmo
  OCAMLC middle_end/flambda/flambda.cmo
  OCAMLC middle_end/flambda/flambda_iterators.cmo
  OCAMLC middle_end/flambda/flambda_utils.cmo
  OCAMLC middle_end/flambda/freshening.cmo
  OCAMLC middle_end/flambda/effect_analysis.cmo
  OCAMLC middle_end/flambda/inlining_cost.cmo
  OCAMLC middle_end/flambda/simple_value_approx.cmo
  OCAMLC middle_end/flambda/export_info.cmo
  OCAMLC middle_end/flambda/export_info_for_pack.cmo
  OCAMLC middle_end/compilenv.cmo
  OCAMLC middle_end/flambda/import_approx.cmo
  OCAMLC middle_end/flambda/lift_code.cmo
  OCAMLC middle_end/flambda/closure_conversion_aux.cmo
  OCAMLC middle_end/flambda/initialize_symbol_to_let_symbol.cmo
  OCAMLC middle_end/flambda/alias_analysis.cmo
  OCAMLC middle_end/flambda/share_constants.cmo
  OCAMLC middle_end/flambda/simplify_common.cmo
  OCAMLC middle_end/flambda/remove_unused_closure_vars.cmo
  OCAMLC middle_end/flambda/remove_unused_program_constructs.cmo
  OCAMLC middle_end/flambda/inlining_stats_types.cmo
  OCAMLC middle_end/flambda/remove_free_vars_equal_to_args.cmo
  OCAMLC middle_end/flambda/ref_to_variables.cmo
  OCAMLC middle_end/flambda/flambda_invariants.cmo
  OCAMLC middle_end/flambda/traverse_for_exported_symbols.cmo
  OCAMLC middle_end/flambda/closure_offsets.cmo
  OCAMLC middle_end/flambda/un_anf.cmo
  OCAMLC middle_end/flambda/flambda_to_clambda.cmo
  OCAMLC tools/objinfo.cmi
  OCAMLC tools/ocamlcmt.cmi
  OCAMLC tools/ocamlprof.cmi
  OCAMLC tools/ocamlcp_common.cmi
  OCAMLC tools/ocamlcp.cmi
  OCAMLC tools/ocamlmklib.cmi
  OCAMLC tools/ocamlmktop.cmi
  OCAMLC tools/ocamloptp.cmi
  GEN tools/opnames.ml
  OCAMLC tools/opnames.cmi
  OCAMLC tools/dumpobj.cmi
  OCAMLC tools/primreq.cmi
  OCAMLC tools/stripdebug.cmi
  OCAMLC tools/cmpbyt.cmi
  OCAMLC tools/profiling.cmi
  OCAMLC tools/ocamldep.cmo
  OCAMLC middle_end/closure/closure.cmi
  OCAMLC middle_end/closure/closure_middle_end.cmi
  OCAMLC middle_end/flambda/closure_conversion.cmi
  OCAMLC middle_end/flambda/lift_let_to_initialize_symbol.cmi
  OCAMLC middle_end/flambda/find_recursive_functions.cmi
  OCAMLC middle_end/flambda/invariant_params.cmi
  OCAMLC middle_end/flambda/inconstant_idents.cmi
  OCAMLC middle_end/flambda/lift_constants.cmi
  OCAMLC middle_end/flambda/simplify_boxed_integer_ops.cmi
  OCAMLC middle_end/flambda/inlining_stats.cmi
  OCAMLC middle_end/flambda/inline_and_simplify_aux.cmi
  OCAMLC middle_end/closure/closure.cmo
  OCAMLC middle_end/closure/closure_middle_end.cmo
  OCAMLC middle_end/flambda/closure_conversion.cmo
  OCAMLC middle_end/flambda/lift_let_to_initialize_symbol.cmo
  OCAMLC middle_end/flambda/find_recursive_functions.cmo
  OCAMLC middle_end/flambda/invariant_params.cmo
  OCAMLC middle_end/flambda/inconstant_idents.cmo
  OCAMLC middle_end/flambda/lift_constants.cmo
  OCAMLC middle_end/flambda/remove_unused_arguments.cmo
  OCAMLC middle_end/flambda/simplify_boxed_integer_ops.cmo
  OCAMLC middle_end/flambda/simplify_primitives.cmo
  LINKC stdlib.cma
make[4]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers/stdlib'
  OCAMLC middle_end/flambda/inlining_stats.cmo
  OCAMLC middle_end/flambda/inline_and_simplify_aux.cmo
  OCAMLC middle_end/flambda/build_export_info.cmo
  OCAMLC tools/objinfo.cmo
  OCAMLC tools/ocamlcmt.cmo
  OCAMLC tools/ocamlprof.cmo
  OCAMLC tools/ocamlcp_common.cmo
  OCAMLC tools/ocamlcp.cmo
  OCAMLC tools/ocamlmklib.cmo
  OCAMLC tools/ocamlmktop.cmo
  OCAMLC tools/ocamloptp.cmo
  OCAMLC tools/opnames.cmo
  OCAMLC tools/dumpobj.cmo
  OCAMLC tools/primreq.cmo
  OCAMLC tools/stripdebug.cmo
  OCAMLC tools/cmpbyt.cmo
  OCAMLC tools/profiling.cmo
  LINKC tools/ocamldep
  OCAMLC middle_end/flambda/inlining_decision_intf.cmi
  OCAMLC middle_end/flambda/extract_projections.cmi
  OCAMLC middle_end/flambda/augment_specialised_args.cmi
  OCAMLC middle_end/flambda/unbox_free_vars_of_closures.cmi
  OCAMLC middle_end/flambda/unbox_specialised_args.cmi
  OCAMLC middle_end/flambda/unbox_closures.cmi
  OCAMLC middle_end/flambda/inlining_transforms.cmi
  OCAMLC middle_end/flambda/inlining_decision.cmi
  OCAMLC middle_end/flambda/inline_and_simplify.cmi
  OCAMLC middle_end/flambda/extract_projections.cmo
  OCAMLC middle_end/flambda/augment_specialised_args.cmo
  OCAMLC middle_end/flambda/unbox_free_vars_of_closures.cmo
  OCAMLC middle_end/flambda/unbox_specialised_args.cmo
  OCAMLC middle_end/flambda/unbox_closures.cmo
  OCAMLC middle_end/flambda/inlining_transforms.cmo
  OCAMLC middle_end/flambda/inlining_decision.cmo
  OCAMLC middle_end/flambda/inline_and_simplify.cmo
  OCAMLC middle_end/flambda/flambda_middle_end.cmo
  LINKC tools/ocamlcmt
  LINKC tools/ocamlprof
  LINKC tools/ocamlcp
  LINKC tools/ocamlmklib
  LINKC tools/ocamlmktop
  LINKC tools/ocamloptp
  LINKC tools/dumpobj
  LINKC tools/primreq
  LINKC tools/stripdebug
  LINKC tools/cmpbyt
  LINKC compilerlibs/ocamlmiddleend.cma
  LINKC tools/ocamlobjinfo
make[4]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make[3]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make[2]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make ocaml
make[2]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  OCAMLC toplevel/expunge.cmi
  OCAMLC toplevel/genprintval.cmi
  OCAMLC toplevel/trace.cmi
  OCAMLC toplevel/toploop.cmi
  OCAMLC toplevel/topprinters.cmi
  OCAMLC toplevel/topdirs.cmi
  OCAMLC toplevel/topmain.cmi
  OCAMLC toplevel/topstart.cmi
cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/byte
  OCAMLC toplevel/expunge.cmo
  OCAMLC toplevel/topstart.cmo
  OCAMLC toplevel/topprinters.cmo
cp toplevel/trace.cmi toplevel/trace.mli toplevel/byte
  OCAMLC toplevel/topcommon.cmi
  OCAMLC toplevel/genprintval.cmo
  LINKC expunge
  OCAMLC toplevel/topeval.cmi
  OCAMLC toplevel/topcommon.cmo
  OCAMLC toplevel/byte/topmain.cmo
cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/byte
  OCAMLC toplevel/toploop.cmo
  OCAMLC toplevel/topdirs.cmo
  OCAMLC toplevel/byte/topeval.cmo
  OCAMLC toplevel/byte/trace.cmo
  LINKC compilerlibs/ocamltoplevel.cma
  LINKC ocaml.tmp
  GEN ocaml
rm ocaml.tmp
make[2]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make opt-core
make[2]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  CC runtime/addrmap.n.o
  CC runtime/afl.n.o
  CC runtime/alloc.n.o
  CC runtime/array.n.o
  CC runtime/backtrace.n.o
  CC runtime/bigarray.n.o
  CC runtime/blake2.n.o
  CC runtime/callback.n.o
  CC runtime/codefrag.n.o
  CC runtime/compare.n.o
  CC runtime/custom.n.o
  CC runtime/debugger.n.o
  CC runtime/domain.n.o
  CC runtime/dynlink.n.o
  CC runtime/extern.n.o
  CC runtime/fail.n.o
  CC runtime/fiber.n.o
  CC runtime/finalise.n.o
  CC runtime/floats.n.o
  CC runtime/gc_ctrl.n.o
  CC runtime/gc_stats.n.o
  CC runtime/globroots.n.o
  CC runtime/hash.n.o
  CC runtime/intern.n.o
  CC runtime/ints.n.o
  CC runtime/io.n.o
  CC runtime/lexing.n.o
  CC runtime/lf_skiplist.n.o
  CC runtime/main.n.o
  CC runtime/major_gc.n.o
  CC runtime/md5.n.o
  CC runtime/memory.n.o
  CC runtime/memprof.n.o
  CC runtime/meta.n.o
  CC runtime/minor_gc.n.o
  CC runtime/misc.n.o
  CC runtime/obj.n.o
  CC runtime/parsing.n.o
  CC runtime/platform.n.o
  CC runtime/printexc.n.o
  CC runtime/prng.n.o
  CC runtime/roots.n.o
  CC runtime/runtime_events.n.o
  CC runtime/shared_heap.n.o
  CC runtime/signals.n.o
  CC runtime/skiplist.n.o
  CC runtime/startup_aux.n.o
  CC runtime/str.n.o
  CC runtime/sync.n.o
  CC runtime/sys.n.o
  CC runtime/unix.n.o
  CC runtime/weak.n.o
  CC runtime/backtrace_nat.n.o
  CC runtime/clambda_checks.n.o
  CC runtime/dynlink_nat.n.o
  CC runtime/fail_nat.n.o
  CC runtime/frame_descriptors.n.o
  CC runtime/startup_nat.n.o
  CC runtime/signals_nat.n.o
  ASM runtime/amd64.o
  CC runtime/zstd.npic.o
  CC runtime/addrmap.nd.o
  CC runtime/afl.nd.o
  CC runtime/alloc.nd.o
  CC runtime/array.nd.o
  CC runtime/backtrace.nd.o
  CC runtime/bigarray.nd.o
  CC runtime/blake2.nd.o
  CC runtime/callback.nd.o
  CC runtime/codefrag.nd.o
  CC runtime/compare.nd.o
  CC runtime/custom.nd.o
  CC runtime/debugger.nd.o
  CC runtime/domain.nd.o
  CC runtime/dynlink.nd.o
  CC runtime/extern.nd.o
  CC runtime/fail.nd.o
  CC runtime/fiber.nd.o
  CC runtime/finalise.nd.o
  CC runtime/floats.nd.o
  CC runtime/gc_ctrl.nd.o
  CC runtime/gc_stats.nd.o
  CC runtime/globroots.nd.o
  CC runtime/hash.nd.o
  CC runtime/intern.nd.o
  CC runtime/ints.nd.o
  CC runtime/io.nd.o
  CC runtime/lexing.nd.o
  CC runtime/lf_skiplist.nd.o
  CC runtime/main.nd.o
  CC runtime/major_gc.nd.o
  CC runtime/md5.nd.o
  CC runtime/memory.nd.o
  CC runtime/memprof.nd.o
  CC runtime/meta.nd.o
  CC runtime/minor_gc.nd.o
  CC runtime/misc.nd.o
  CC runtime/obj.nd.o
  CC runtime/parsing.nd.o
  CC runtime/platform.nd.o
  CC runtime/printexc.nd.o
  CC runtime/prng.nd.o
  CC runtime/roots.nd.o
  CC runtime/runtime_events.nd.o
  CC runtime/shared_heap.nd.o
  CC runtime/signals.nd.o
  CC runtime/skiplist.nd.o
  CC runtime/startup_aux.nd.o
  CC runtime/str.nd.o
  CC runtime/sync.nd.o
  CC runtime/sys.nd.o
  CC runtime/unix.nd.o
  CC runtime/weak.nd.o
  CC runtime/backtrace_nat.nd.o
  CC runtime/clambda_checks.nd.o
  CC runtime/dynlink_nat.nd.o
  CC runtime/fail_nat.nd.o
  CC runtime/frame_descriptors.nd.o
  CC runtime/startup_nat.nd.o
  CC runtime/signals_nat.nd.o
  ASM runtime/amd64.d.o
  CC runtime/addrmap.ni.o
  CC runtime/afl.ni.o
  CC runtime/alloc.ni.o
  CC runtime/array.ni.o
  CC runtime/backtrace.ni.o
  CC runtime/bigarray.ni.o
  CC runtime/blake2.ni.o
  CC runtime/callback.ni.o
  CC runtime/codefrag.ni.o
  CC runtime/compare.ni.o
  CC runtime/custom.ni.o
  CC runtime/debugger.ni.o
  CC runtime/domain.ni.o
  CC runtime/dynlink.ni.o
  CC runtime/extern.ni.o
  CC runtime/fail.ni.o
  CC runtime/fiber.ni.o
  CC runtime/finalise.ni.o
  CC runtime/floats.ni.o
  CC runtime/gc_ctrl.ni.o
  CC runtime/gc_stats.ni.o
  CC runtime/globroots.ni.o
  CC runtime/hash.ni.o
  CC runtime/intern.ni.o
  CC runtime/ints.ni.o
  CC runtime/io.ni.o
  CC runtime/lexing.ni.o
  CC runtime/lf_skiplist.ni.o
  CC runtime/main.ni.o
  CC runtime/major_gc.ni.o
  CC runtime/md5.ni.o
  CC runtime/memory.ni.o
  CC runtime/memprof.ni.o
  CC runtime/meta.ni.o
  CC runtime/minor_gc.ni.o
  CC runtime/misc.ni.o
  CC runtime/obj.ni.o
  CC runtime/parsing.ni.o
  CC runtime/platform.ni.o
  CC runtime/printexc.ni.o
  CC runtime/prng.ni.o
  CC runtime/roots.ni.o
  CC runtime/runtime_events.ni.o
  CC runtime/shared_heap.ni.o
  CC runtime/signals.ni.o
  CC runtime/skiplist.ni.o
  CC runtime/startup_aux.ni.o
  CC runtime/str.ni.o
  CC runtime/sync.ni.o
  CC runtime/sys.ni.o
  CC runtime/unix.ni.o
  CC runtime/weak.ni.o
  CC runtime/backtrace_nat.ni.o
  CC runtime/clambda_checks.ni.o
  CC runtime/dynlink_nat.ni.o
  CC runtime/fail_nat.ni.o
  CC runtime/frame_descriptors.ni.o
  CC runtime/startup_nat.ni.o
  CC runtime/signals_nat.ni.o
  ASM runtime/amd64.i.o
  CC runtime/addrmap.npic.o
  CC runtime/afl.npic.o
  CC runtime/alloc.npic.o
  CC runtime/array.npic.o
  CC runtime/backtrace.npic.o
  CC runtime/bigarray.npic.o
  CC runtime/blake2.npic.o
  CC runtime/callback.npic.o
  CC runtime/codefrag.npic.o
  CC runtime/compare.npic.o
  CC runtime/custom.npic.o
  CC runtime/debugger.npic.o
  CC runtime/domain.npic.o
  CC runtime/dynlink.npic.o
  CC runtime/extern.npic.o
  CC runtime/fail.npic.o
  CC runtime/fiber.npic.o
  CC runtime/finalise.npic.o
  CC runtime/floats.npic.o
  CC runtime/gc_ctrl.npic.o
  CC runtime/gc_stats.npic.o
  CC runtime/globroots.npic.o
  CC runtime/hash.npic.o
  CC runtime/intern.npic.o
  CC runtime/ints.npic.o
  CC runtime/io.npic.o
  CC runtime/lexing.npic.o
  CC runtime/lf_skiplist.npic.o
  CC runtime/main.npic.o
  CC runtime/major_gc.npic.o
  CC runtime/md5.npic.o
  CC runtime/memory.npic.o
  CC runtime/memprof.npic.o
  CC runtime/meta.npic.o
  CC runtime/minor_gc.npic.o
  CC runtime/misc.npic.o
  CC runtime/obj.npic.o
  CC runtime/parsing.npic.o
  CC runtime/platform.npic.o
  CC runtime/printexc.npic.o
  CC runtime/prng.npic.o
  CC runtime/roots.npic.o
  CC runtime/runtime_events.npic.o
  CC runtime/shared_heap.npic.o
  CC runtime/signals.npic.o
  CC runtime/skiplist.npic.o
  CC runtime/startup_aux.npic.o
  CC runtime/str.npic.o
  CC runtime/sync.npic.o
  CC runtime/sys.npic.o
  CC runtime/unix.npic.o
  CC runtime/weak.npic.o
  CC runtime/backtrace_nat.npic.o
  CC runtime/clambda_checks.npic.o
  CC runtime/dynlink_nat.npic.o
  CC runtime/fail_nat.npic.o
  CC runtime/frame_descriptors.npic.o
  CC runtime/startup_nat.npic.o
  CC runtime/signals_nat.npic.o
  ASM runtime/amd64_libasmrunpic.o
  MKLIB runtime/libasmrun.a
  MKLIB runtime/libcomprmarsh.a
  MKLIB runtime/libasmrund.a
  MKLIB runtime/libasmruni.a
  MKLIB runtime/libasmrun_pic.a
  MKDLL runtime/libasmrun_shared.so
cd stdlib; ln -sf ../runtime/libasmrun.a .
make ocamlopt
make[3]: Entering directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
  OCAMLC asmcomp/x86_ast.cmi
cd asmcomp; ln -sf amd64/arch.mli .
  OCAMLC asmcomp/cmm.cmi
  OCAMLC asmcomp/coloring.cmi
  OCAMLC asmcomp/asmlink.cmi
  OCAMLC asmcomp/asmlibrarian.cmi
  OCAMLC asmcomp/asmpackager.cmi
  OCAMLC driver/opterrors.cmi
  OCAMLC driver/optcompile.cmi
  OCAMLC driver/optmaindriver.cmi
cd asmcomp; ln -sf amd64/arch.ml .
cd asmcomp; ln -sf amd64/proc.ml .
cd asmcomp; ln -sf amd64/selection.ml .
cd asmcomp; ln -sf amd64/CSE.ml .
cd asmcomp; ln -sf amd64/reload.ml .
cd asmcomp; ln -sf amd64/stackframe.ml .
cd asmcomp; ln -sf amd64/scheduling.ml .
  OCAMLC tools/cvt_emit.cmi
  OCAMLLEX tools/cvt_emit.ml
  OCAMLC driver/opterrors.cmo
  OCAMLC driver/optmain.cmi
  OCAMLC asmcomp/x86_proc.cmi
  OCAMLC asmcomp/x86_dsl.cmi
  OCAMLC asmcomp/x86_gas.cmi
  OCAMLC asmcomp/x86_masm.cmi
  OCAMLC asmcomp/arch.cmi
  OCAMLC asmcomp/printcmm.cmi
  OCAMLC asmcomp/reg.cmi
  OCAMLC asmcomp/strmatch.cmi
  OCAMLC asmcomp/cmmgen_state.cmi
  OCAMLC asmcomp/afl_instrument.cmi
  OCAMLC asmcomp/thread_sanitizer.cmi
  OCAMLC asmcomp/cmmgen.cmi
  OCAMLC asmcomp/cmm_invariants.cmi
  OCAMLC asmcomp/x86_proc.cmo
  OCAMLC asmcomp/x86_dsl.cmo
  OCAMLC asmcomp/x86_gas.cmo
  OCAMLC asmcomp/x86_masm.cmo
  OCAMLC asmcomp/arch.cmo
  OCAMLC asmcomp/cmm.cmo
  OCAMLC asmcomp/printcmm.cmo
  OCAMLC asmcomp/reg.cmo
  OCAMLC asmcomp/strmatch.cmo
  OCAMLC asmcomp/cmmgen_state.cmo
  OCAMLC asmcomp/afl_instrument.cmo
  OCAMLC asmcomp/cmm_invariants.cmo
  OCAMLC tools/cvt_emit.cmo
  OCAMLC asmcomp/asmlibrarian.cmo
  OCAMLC driver/optmain.cmo
  OCAMLC asmcomp/mach.cmi
  OCAMLC asmcomp/cmm_helpers.cmi
  LINKC tools/cvt_emit
  GEN asmcomp/emit.ml
  OCAMLC asmcomp/proc.cmi
  OCAMLC asmcomp/interval.cmi
  OCAMLC asmcomp/dataflow.cmi
  OCAMLC asmcomp/polling.cmi
  OCAMLC asmcomp/selectgen.cmi
  OCAMLC asmcomp/selection.cmi
  OCAMLC asmcomp/comballoc.cmi
  OCAMLC asmcomp/CSEgen.cmi
  OCAMLC asmcomp/CSE.cmi
  OCAMLC asmcomp/liveness.cmi
  OCAMLC asmcomp/spill.cmi
  OCAMLC asmcomp/split.cmi
  OCAMLC asmcomp/interf.cmi
  OCAMLC asmcomp/linscan.cmi
  OCAMLC asmcomp/reloadgen.cmi
  OCAMLC asmcomp/reload.cmi
  OCAMLC asmcomp/deadcode.cmi
  OCAMLC asmcomp/stackframegen.cmi
  OCAMLC asmcomp/linear.cmi
  OCAMLC asmcomp/mach.cmo
  OCAMLC asmcomp/proc.cmo
  OCAMLC asmcomp/cmm_helpers.cmo
  OCAMLC asmcomp/thread_sanitizer.cmo
  OCAMLC asmcomp/cmmgen.cmo
  OCAMLC asmcomp/interval.cmo
  OCAMLC asmcomp/dataflow.cmo
  OCAMLC asmcomp/polling.cmo
  OCAMLC asmcomp/selectgen.cmo
  OCAMLC asmcomp/selection.cmo
  OCAMLC asmcomp/comballoc.cmo
  OCAMLC asmcomp/CSEgen.cmo
  OCAMLC asmcomp/CSE.cmo
  OCAMLC asmcomp/spill.cmo
  OCAMLC asmcomp/split.cmo
  OCAMLC asmcomp/interf.cmo
  OCAMLC asmcomp/coloring.cmo
  OCAMLC asmcomp/linscan.cmo
  OCAMLC asmcomp/reloadgen.cmo
  OCAMLC asmcomp/reload.cmo
  OCAMLC asmcomp/deadcode.cmo
  OCAMLC asmcomp/stackframegen.cmo
  OCAMLC asmcomp/linear.cmo
  OCAMLC driver/optmaindriver.cmo
  OCAMLC asmcomp/printmach.cmi
  OCAMLC asmcomp/stackframe.cmi
  OCAMLC asmcomp/printlinear.cmi
  OCAMLC asmcomp/linearize.cmi
  OCAMLC file_formats/linear_format.cmi
  OCAMLC asmcomp/schedgen.cmi
  OCAMLC asmcomp/scheduling.cmi
  OCAMLC asmcomp/branch_relaxation_intf.cmi
  OCAMLC asmcomp/emitenv.cmi
  OCAMLC asmcomp/emit.cmi
  OCAMLC asmcomp/printmach.cmo
  OCAMLC asmcomp/liveness.cmo
  OCAMLC asmcomp/stackframe.cmo
  OCAMLC asmcomp/printlinear.cmo
Sending interrupt signal to process
  OCAMLC asmcomp/linearize.cmo
  OCAMLC file_formats/linear_format.cmo
  OCAMLC asmcomp/schedgen.cmo
  OCAMLC asmcomp/scheduling.cmo
  OCAMLC asmcomp/branch_relaxation.cmi
  OCAMLC asmcomp/emitaux.cmi
make[3]: *** [Makefile:2532: asmcomp/cmm_helpers.cmo] Terminated
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [Makefile:2535: asmcomp/emitaux.cmi] Terminated
make[3]: *** [Makefile:2532: asmcomp/linearize.cmo] Terminated
make[3]: *** [Makefile:2532: asmcomp/printlinear.cmo] Terminated
make[3]: *** [Makefile:2532: asmcomp/schedgen.cmo] Terminated
make[3]: *** [Makefile:2532: asmcomp/printmach.cmo] Terminated
make[3]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make[2]: *** [Makefile:749: opt-core] Error 2
make[2]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make[1]: *** [Makefile:765: opt.opt] Error 2
make[1]: Leaving directory '/home/barsac/ci/builds/workspace/precheck-sanitizers'
make: *** [Makefile:844: world.opt] Error 2
script returned exit code 2