diff --git a/README.md b/README.md index 38682d8..353133c 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,26 @@ A high-performance file synchronization system with SSH and TCP transport, TLS e ## Technical Overview 1. **Dual transport**: custom TCP client-server or SSH subprocess (rsync-style `user@host:/path`) -2. **TLS encryption**: OpenSSL-based TLS 1.2+ for encrypted TCP connections +2. **TLS encryption**: OpenSSL-based TLS 1.2+ for encrypted TCP connections with optional CA verification 3. **Chunked file transfer**: files grouped into configurable-size chunks (default ~10 MB) 4. **Streaming zstd compression** (levels 1–22) using `ZSTD_compressStream2` 5. **Multithreading**: producer-consumer pipeline with thread-safe queues (scanner → loader → sender) 6. **Incremental sync**: skip files unchanged since last transfer (compares size + mtime) -7. **Metadata preservation**: `mode`, `uid`, `gid`, `mtime` restored on disk when enabled -8. **`sendfile()` zero-copy** on TCP (~2× faster on loopback) -9. **SSH ControlMaster** for connection reuse across repeated invocations -10. **Bandwidth limiting**: token-bucket throttling (`--bwlimit`) -11. **`--delete`**: receiver removes files not present in sender manifest -12. **`--exclude` / `--include`**: glob-pattern filename filtering +7. **Batch incremental**: send incremental checks in batched groups for reduced round-trips +8. **Metadata preservation**: `mode`, `uid`, `gid`, `mtime` restored on disk when enabled +9. **`sendfile()` zero-copy** on TCP (~2× faster on loopback) +10. **SSH ControlMaster** for connection reuse across repeated invocations +11. **Bandwidth limiting**: token-bucket throttling (`--bwlimit`) +12. **`--delete`**: receiver removes files not present in sender manifest +13. **`--exclude` / `--include`**: glob-pattern filename filtering +14. **Path traversal protection**: `..` sequences in file paths are rejected automatically +15. **Connection limits**: server enforces maximum concurrent connections (default 100) +16. **Keep-alive**: periodic `STATUS_KEEPALIVE` messages detect stalled connections +17. **Abort handling**: `SIGINT` sends `STATUS_ABORT` for clean server-side teardown +18. **Atomic writes**: received files are written to a temporary name then atomically renamed +19. **Backup mode**: `--backup` preserves overwritten files with optional `--backup-dir` +20. **Log file**: `--log-file` redirects log output to a file instead of stderr +21. **Transfer statistics**: `--stats` prints summary of transferred bytes, files, and timing ## System Architecture @@ -25,20 +34,33 @@ A high-performance file synchronization system with SSH and TCP transport, TLS e - Streaming zstd compression with configurable level - Chunk serialization (compact binary format) or per-file transfer - Incremental transfer: sends file metadata to server, skips unchanged files +- Batch incremental: groups incremental checks to minimize round-trips - Manifests all sent paths when `--delete` is active - Sends via TCP `sendfile()` or SSH pipe - Optional progress display with throughput - Bandwidth limiting via token-bucket algorithm +- Configurable I/O and connection timeouts (`--timeout`, `--contimeout`) +- Quiet mode (`-q`/`--quiet`) suppresses all non-error output +- Backup overwritten files (`--backup`) with optional directory (`--backup-dir`) +- Transfer statistics summary (`--stats`) +- Maximum directory depth control (`--max-depth`) +- Log file output (`--log-file`) +- Configurable multithreaded queue size (`--queue-size`) +- Exclude patterns from file (`--exclude-from`) ### Server - TCP mode: listens on configurable port (default 8080); SSH mode: runs via `--stdio` -- TLS mode: wraps TCP connections with OpenSSL +- TLS mode: wraps TCP connections with OpenSSL with optional CA verification - Receives and reassembles files - Decompresses (streaming zstd), deserializes, restores metadata - Handles incremental checks: compares size + mtime against destination files +- Handles batch incremental checks for reduced round-trips - Processes `STATUS_MANIFEST` for `--delete`: walks destination tree, removes extras -- Per-connection concurrency via `fork()` +- Per-connection concurrency via `fork()` with configurable connection limit (default 100) - Thread pool for parallel processing +- Atomic writes: files written to `.tmp` path then atomically renamed on success +- Abort handling: cleanly shuts down on `STATUS_ABORT` from client +- Path traversal protection: rejects file paths containing `..` ## Protocol Details @@ -52,6 +74,11 @@ A high-performance file synchronization system with SSH and TCP transport, TLS e | `STATUS_CHUNK` | Following data is a serialized chunk | | `STATUS_MANIFEST` | Following data is a file manifest (for `--delete`) | | `STATUS_CHECK` | Incremental check: client sends file path + size + mtime, server responds with OK (skip) or NEXT (send) | +| `STATUS_CHECK_BATCH` | Batch incremental check: multiple file checks sent in one message | +| `STATUS_KEEPALIVE` | Keep-alive heartbeat to detect stalled connections | +| `STATUS_ABORT` | Abort signal: client interrupts, server cleans up and exits | +| `STATUS_DELTA_SIGNATURE` | Delta sync: following data is a file signature (rsync-style rolling hash) | +| `STATUS_DELTA_DATA` | Delta sync: following data is a delta patch for a file | ### Wire Format — Metadata @@ -59,12 +86,16 @@ When `use_metadata` is enabled (`-M`), each file entry carries a 4-byte `present ### Transfer Flow ``` -Config → (STATUS_NEXT | STATUS_CHUNK | STATUS_CHECK)* → [STATUS_MANIFEST] → STATUS_FINISHED → STATUS_OK +Config → (STATUS_NEXT | STATUS_CHUNK | STATUS_CHECK | STATUS_CHECK_BATCH)* → [STATUS_MANIFEST] → STATUS_FINISHED → STATUS_OK ``` +Keep-alive (`STATUS_KEEPALIVE`) may be sent at any point during the transfer. The receiver resets its inactivity timer on receipt. If no data arrives within the receive timeout, the connection is aborted. + +Abort (`STATUS_ABORT`) may be sent at any point. On receipt the server cleans up temporary files and exits the child process. + ### Protocol Version -`1.1.0` — server and client must match. Mismatch results in `STATUS_ERROR`. +`1.3.0` — server and client must match. Mismatch results in `STATUS_ERROR`. ## Command-Line Arguments @@ -83,15 +114,26 @@ Config → (STATUS_NEXT | STATUS_CHUNK | STATUS_CHECK)* → [STATUS_MANIFEST] | `-n, --dry-run` | Scan and print what would be transferred | | `-p ` | SSH port (default: 22) | | `-v, --verbose` | Enable debug logging | +| `-q, --quiet` | Suppress all non-error output | +| `--silent` | Alias for `--quiet` | | `--progress` | Show real-time transfer speed | | `--delete` | Delete files on receiver not present in source | | `--exclude ` | Exclude files matching glob pattern (repeatable) | +| `--exclude-from ` | Read exclude patterns from a file (one per line) | | `--include ` | Only transfer files matching glob pattern (repeatable, whitelist) | | `--max-size ` | Skip files larger than n bytes | | `--min-size ` | Skip files smaller than n bytes | | `--incremental` | Skip files unchanged since last transfer (size + mtime). Auto-enables `--preserve`. Incompatible with `-s`. | | `--bwlimit ` | Bandwidth limit in kilobytes per second | | `--chunk-size ` | Chunk size in bytes (default: 10485760) | +| `--timeout ` | I/O timeout in seconds (default: 30) | +| `--contimeout ` | Connection timeout in seconds (default: 10) | +| `--backup` | Backup existing destination files before overwriting | +| `--backup-dir ` | Target directory for backups (requires `--backup`) | +| `--stats` | Print transfer statistics at end (bytes, files, timing) | +| `--max-depth ` | Maximum directory depth to recurse (0 = unlimited, default: 0) | +| `--log-file ` | Write log messages to file instead of stderr | +| `--queue-size ` | Queue capacity for multithreaded mode (default: 100) | | `--source-dir ` | Source directory (overrides `FASTSYNC_SOURCE_DIR`) | | `--dest-dir ` | Server destination directory (overrides `FASTSYNC_DEST_DIR`) | | `--save-to-disk` | Write received files to disk | @@ -122,6 +164,12 @@ Config → (STATUS_NEXT | STATUS_CHUNK | STATUS_CHECK)* → [STATUS_MANIFEST] | `FASTSYNC_SOURCE_DIR` | — | Source directory fallback | | `FASTSYNC_DEST_DIR` | — | Destination directory fallback | | `FASTSYNC_SAVE_TO_DISK` | `false` | Disk persistence fallback | +| `FASTSYNC_SSH_PORT` | `22` | Default SSH port | +| `FASTSYNC_SERVER_HOST` | `127.0.0.1` | Default server host | +| `FASTSYNC_SERVER_PORT` | `8080` | Default server port | +| `FASTSYNC_TLS_CERT` | — | Default TLS certificate path | +| `FASTSYNC_TLS_KEY` | — | Default TLS private key path | +| `FASTSYNC_TLS_CA` | — | Default TLS CA certificate path | ## Implementation Details @@ -129,21 +177,44 @@ Config → (STATUS_NEXT | STATUS_CHUNK | STATUS_CHECK)* → [STATUS_MANIFEST] 1. **Chunk** — collection of files (~10 MB total by default) 2. **File** — path, content (`Data`), optional `FileMetadata` pointer 3. **FileMetadata** — `mode`, `uid`, `gid`, `mtime_sec`, `mtime_nsec` -4. **Config** — runtime parameters (transported over wire, TLS settings excluded) +4. **Config** — runtime parameters (transported over wire, TLS settings excluded). Includes `timeout`, `contimeout`, `quiet`, `backup`, `backup_dir`, `stats`, `max_depth`, `log_file`, `queue_size`. 5. **Queue** — thread-safe bounded queue with condition variables -6. **DirectoryScanner** — recursive BFS traversal with exclude and include pattern support +6. **DirectoryScanner** — recursive BFS traversal with exclude and include pattern support, max-depth enforcement ### Key Algorithms -1. **File scanning** — BFS directory traversal; entries matched against exclude and include patterns +1. **File scanning** — BFS directory traversal; entries matched against exclude and include patterns, max-depth enforced 2. **Chunking** — files accumulated until `chunk_size` threshold, then flushed 3. **Compression** — streaming zstd via `ZSTD_compressStream2` / `ZSTD_decompressStream` -4. **Network protocol** — status-code-driven exchange with metadata packing -5. **Incremental check** — client sends `STATUS_CHECK` + path + size + mtime; server compares against destination +4. **Network protocol** — status-code-driven exchange with metadata packing, keep-alive, and abort support +5. **Incremental check** — client sends `STATUS_CHECK` + path + size + mtime; server compares against destination. Can be batched via `STATUS_CHECK_BATCH` for reduced round-trips. 6. **Bandwidth limiting** — token-bucket algorithm with `nanosleep` throttling on 64 KB write chunks 7. **Metadata restoration** — `chmod()`, `chown()`, `utimensat()` on the receiving side 8. **`--delete`** — sender tracks all sent paths; receiver walks destination tree and removes unlisted files/directories 9. **SSH transport** — `socketpair()` + `fork()` + `execvp("ssh", ...)` with `ControlMaster` and port support 10. **TLS transport** — OpenSSL `SSL_CTX` with TLS 1.2 minimum, optional CA verification, transparent `SSL_read`/`SSL_write` via `io_set_ssl()` +11. **Path traversal protection** — `has_path_traversal()` rejects any file path containing `..` components, preventing directory escape attacks +12. **Connection limiting** — server tracks active connections and rejects new ones beyond `max_connections` (default 100) +13. **Keep-alive** — idle connections receive periodic `STATUS_KEEPALIVE` to detect half-open TCP connections +14. **Abort handling** — `SIGINT` sets an abort flag; the next protocol operation sends `STATUS_ABORT` for clean server cleanup +15. **Atomic writes** — files are written to a `.tmp` suffix then atomically renamed via `rename()`, preventing partial files +16. **Backup** — before overwriting, existing files are moved to `--backup-dir` (or same directory with `~` suffix) preserving the original + +## Security Features + +### Path Traversal Protection +All received file paths are validated by `has_path_traversal()` before any disk operation. Any path containing `..` components is rejected with `STATUS_ERROR`, preventing directory escape attacks. + +### TLS Certificate Verification +When `--ca` is provided, the server performs mutual TLS verification (`SSL_VERIFY_PEER` with depth 4). Without `--ca`, TLS is still encrypted but peer certificates are not verified. + +### Connection Limits +The server enforces a maximum of 100 concurrent connections (configurable via `max_connections` in `Server`). When the limit is reached, new connections are immediately rejected and closed. + +### Abort Handling +If the client receives `SIGINT` (Ctrl+C) during a transfer, it sends `STATUS_ABORT` to the server. The server then cleans up temporary files and exits the child process, preventing incomplete files from remaining on disk. + +### Atomic Writes +Received files are written to a temporary path (suffixed with `.tmp`) and then atomically renamed to the final filename via `rename()`. This prevents partial or corrupted files from appearing at the destination if the transfer is interrupted. ## Build Requirements @@ -223,6 +294,21 @@ Place the `fastsync-server` binary in the remote `$PATH`. The client runs `ssh u # Bandwidth limit to 1 MB/s ./build/client --bwlimit 1024 /src user@host:/dst +# With timeouts, quiet mode, and stats +./build/client --timeout 60 --contimeout 15 --quiet --stats /src user@host:/dst + +# Backup overwritten files to a directory +./build/client --backup --backup-dir /backups /src user@host:/dst + +# Exclude patterns from file, limit depth +./build/client --exclude-from ignore.txt --max-depth 3 /src user@host:/dst + +# Custom queue size for multithreading +./build/client -m --queue-size 200 /src user@host:/dst + +# Log to file +./build/client --log-file /tmp/fastsync.log /src user@host:/dst + # All features ./build/client -a --progress --chunk-size 5242880 --exclude "*.log" --delete /src /dst ``` @@ -230,7 +316,9 @@ Place the `fastsync-server` binary in the remote `$PATH`. The client runs `ssh u ## Testing ```bash -# Unit tests (7 suites) +# Unit tests (18 suites — array_list, chunk, compression, config, data, delta, file, glob, +# metadata, property, protocol, queue, robustness, scanner, +# shared_utils, stress, transport_tcp, transport_ssh, transport_tls) ./build/tests # Integration + benchmark suite @@ -244,12 +332,15 @@ The benchmark prints throughput metrics, best configuration, and speedup vs rsyn 1. Chunk size (~10 MB default) balances memory and transfer efficiency 2. Compression level trades CPU for bandwidth 3. `sendfile()` bypasses userspace — ~2× faster on localhost for large files -4. Multithreading scales with core count +4. Multithreading scales with core count; `--queue-size` controls pipeline buffering 5. Metadata transfer adds negligible overhead (~24 bytes per file when enabled) 6. SSH socketpair buffer set to 1 MB for improved pipe throughput 7. SSH ControlMaster reuses connections across repeated invocations 8. Incremental sync eliminates redundant transfers entirely -9. Bandwidth limiting uses token-bucket with nanosleep for accurate throttling +9. Batch incremental reduces round-trips by grouping multiple checks into one message +10. Bandwidth limiting uses token-bucket with nanosleep for accurate throttling +11. Atomic writes add a single `rename()` per file — negligible overhead +12. Path traversal check is O(n) in path length with negligible cost ## Benchmark Results diff --git a/build3/CMakeCache.txt b/build3/CMakeCache.txt new file mode 100644 index 0000000..051dcc3 --- /dev/null +++ b/build3/CMakeCache.txt @@ -0,0 +1,617 @@ +# This is the CMakeCache file. +# For build in directory: /root/FastSyncProjects/FastSyncBuilder3/build3 +# It was generated by CMake: /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ar + +//Project build type +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=FastFileTransfer + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.8.3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=8 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the archiver during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the archiver during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the archiver during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable to build Debian packages +CPACK_BINARY_DEB:BOOL=OFF + +//Enable to build FreeBSD packages +CPACK_BINARY_FREEBSD:BOOL=OFF + +//Enable to build IFW packages +CPACK_BINARY_IFW:BOOL=OFF + +//Enable to build NSIS packages +CPACK_BINARY_NSIS:BOOL=OFF + +//Enable to build RPM packages +CPACK_BINARY_RPM:BOOL=OFF + +//Enable to build STGZ packages +CPACK_BINARY_STGZ:BOOL=ON + +//Enable to build TBZ2 packages +CPACK_BINARY_TBZ2:BOOL=OFF + +//Enable to build TGZ packages +CPACK_BINARY_TGZ:BOOL=ON + +//Enable to build TXZ packages +CPACK_BINARY_TXZ:BOOL=OFF + +//Enable to build TZ packages +CPACK_BINARY_TZ:BOOL=ON + +//Enable to build RPM source packages +CPACK_SOURCE_RPM:BOOL=OFF + +//Enable to build TBZ2 source packages +CPACK_SOURCE_TBZ2:BOOL=ON + +//Enable to build TGZ source packages +CPACK_SOURCE_TGZ:BOOL=ON + +//Enable to build TXZ source packages +CPACK_SOURCE_TXZ:BOOL=ON + +//Enable to build TZ source packages +CPACK_SOURCE_TZ:BOOL=ON + +//Enable to build ZIP source packages +CPACK_SOURCE_ZIP:BOOL=OFF + +//Enable gcov coverage +ENABLE_COVERAGE:BOOL=OFF + +//Build fuzz targets (requires clang) +ENABLE_FUZZ:BOOL=OFF + +//Directory under which to collect all populated content +FETCHCONTENT_BASE_DIR:PATH=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps + +//Disables all attempts to download or update content and assumes +// source dirs already exist +FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF + +//Enables QUIET option for all content population +FETCHCONTENT_QUIET:BOOL=ON + +//When not empty, overrides where to find pre-populated content +// for xxhash +FETCHCONTENT_SOURCE_DIR_XXHASH:PATH= + +//Enables UPDATE_DISCONNECTED behavior for all content population +FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of xxhash +FETCHCONTENT_UPDATES_DISCONNECTED_XXHASH:BOOL=OFF + +//Value Computed by CMake +FastFileTransfer_BINARY_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3 + +//Value Computed by CMake +FastFileTransfer_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +FastFileTransfer_SOURCE_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3 + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/run/current-system/sw/bin/git + +//Path to a library. +OPENSSL_CRYPTO_LIBRARY:FILEPATH=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so + +//Path to a file. +OPENSSL_INCLUDE_DIR:PATH=/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include + +//Path to a library. +OPENSSL_SSL_LIBRARY:FILEPATH=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/pkg-config + +//Sanitizer to enable (address, thread, undefined, none) +SANITIZER:STRING=none + +//Enable strict warnings (Wextra, Wpedantic, Werror) +STRICT_WARNINGS:BOOL=OFF + +//Build the xxhsum binary +XXHASH_BUILD_XXHSUM:BOOL=ON + +XXHASH_BUNDLED_MODE:BOOL=ON + +//Path to a library. +ZSTD_LIBRARY:FILEPATH=/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so + +//Path to a library. +pkgcfg_lib__OPENSSL_crypto:FILEPATH=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so + +//Path to a library. +pkgcfg_lib__OPENSSL_ssl:FILEPATH=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so + +//Value Computed by CMake +xxHash_BINARY_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build + +//Value Computed by CMake +xxHash_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +xxHash_SOURCE_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial + + +######################## +# INTERNAL cache entries +######################## + +//Build shared libraries +BUILD_SHARED_LIBS:INTERNAL=ON +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//STRINGS property for variable: CMAKE_BUILD_TYPE +CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Debug;Release;RelWithDebInfo;MinSizeRel +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/root/FastSyncProjects/FastSyncBuilder3/build3 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=1 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/root/FastSyncProjects/FastSyncBuilder3 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_DEB +CPACK_BINARY_DEB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_FREEBSD +CPACK_BINARY_FREEBSD-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_IFW +CPACK_BINARY_IFW-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NSIS +CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_RPM +CPACK_BINARY_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_STGZ +CPACK_BINARY_STGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TBZ2 +CPACK_BINARY_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TGZ +CPACK_BINARY_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TXZ +CPACK_BINARY_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TZ +CPACK_BINARY_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_RPM +CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TBZ2 +CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TGZ +CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TXZ +CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TZ +CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_ZIP +CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 +//Details about finding OpenSSL +FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so][/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include][ ][v3.6.2()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARY +OPENSSL_CRYPTO_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENSSL_INCLUDE_DIR +OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENSSL_SSL_LIBRARY +OPENSSL_SSL_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +//STRINGS property for variable: SANITIZER +SANITIZER-STRINGS:INTERNAL=address;thread;undefined;none +//ADVANCED property for variable: XXHASH_BUNDLED_MODE +XXHASH_BUNDLED_MODE-ADVANCED:INTERNAL=1 +_OPENSSL_CFLAGS:INTERNAL=-I/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include +_OPENSSL_CFLAGS_I:INTERNAL= +_OPENSSL_CFLAGS_OTHER:INTERNAL= +_OPENSSL_FOUND:INTERNAL=1 +_OPENSSL_INCLUDEDIR:INTERNAL=/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include +_OPENSSL_INCLUDE_DIRS:INTERNAL=/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include +_OPENSSL_LDFLAGS:INTERNAL=-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib;-lssl;-lcrypto +_OPENSSL_LDFLAGS_OTHER:INTERNAL= +_OPENSSL_LIBDIR:INTERNAL=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib +_OPENSSL_LIBRARIES:INTERNAL=ssl;crypto +_OPENSSL_LIBRARY_DIRS:INTERNAL=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib +_OPENSSL_LIBS:INTERNAL= +_OPENSSL_LIBS_L:INTERNAL= +_OPENSSL_LIBS_OTHER:INTERNAL= +_OPENSSL_LIBS_PATHS:INTERNAL= +_OPENSSL_MODULE_NAME:INTERNAL=openssl +_OPENSSL_PREFIX:INTERNAL=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2 +_OPENSSL_STATIC_CFLAGS:INTERNAL=-I/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include +_OPENSSL_STATIC_CFLAGS_I:INTERNAL= +_OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL= +_OPENSSL_STATIC_INCLUDE_DIRS:INTERNAL=/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include +_OPENSSL_STATIC_LDFLAGS:INTERNAL=-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib;-lssl;-lcrypto;-ldl;-pthread +_OPENSSL_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread +_OPENSSL_STATIC_LIBDIR:INTERNAL= +_OPENSSL_STATIC_LIBRARIES:INTERNAL=ssl;crypto;dl +_OPENSSL_STATIC_LIBRARY_DIRS:INTERNAL=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib +_OPENSSL_STATIC_LIBS:INTERNAL= +_OPENSSL_STATIC_LIBS_L:INTERNAL= +_OPENSSL_STATIC_LIBS_OTHER:INTERNAL= +_OPENSSL_STATIC_LIBS_PATHS:INTERNAL= +_OPENSSL_VERSION:INTERNAL=3.6.2 +_OPENSSL_openssl_INCLUDEDIR:INTERNAL= +_OPENSSL_openssl_LIBDIR:INTERNAL= +_OPENSSL_openssl_PREFIX:INTERNAL= +_OPENSSL_openssl_VERSION:INTERNAL= +__pkg_config_arguments__OPENSSL:INTERNAL=QUIET;openssl +__pkg_config_checked__OPENSSL:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib__OPENSSL_crypto +pkgcfg_lib__OPENSSL_crypto-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib__OPENSSL_ssl +pkgcfg_lib__OPENSSL_ssl-ADVANCED:INTERNAL=1 +prefix_result:INTERNAL=/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib + diff --git a/build3/CMakeFiles/4.1.2/CMakeCCompiler.cmake b/build3/CMakeFiles/4.1.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..7348f68 --- /dev/null +++ b/build3/CMakeFiles/4.1.2/CMakeCCompiler.cmake @@ -0,0 +1,84 @@ +set(CMAKE_C_COMPILER "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "15.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x86_64") + + + +set(CMAKE_AR "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ar") +set(CMAKE_C_COMPILER_AR "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar") +set(CMAKE_RANLIB "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib") +set(CMAKE_LINKER "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "GNU") +set(CMAKE_C_COMPILER_LINKER_VERSION 2.46) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include;/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include;/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed;/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib;/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0;/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build3/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake b/build3/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..828673b --- /dev/null +++ b/build3/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake @@ -0,0 +1,108 @@ +set(CMAKE_CXX_COMPILER "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "15.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "26") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "x86_64") + + + +set(CMAKE_AR "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar") +set(CMAKE_RANLIB "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib") +set(CMAKE_LINKER "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.46) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include;/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include;/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/x86_64-unknown-linux-gnu;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/backward;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed;/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib;/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0;/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + + diff --git a/build3/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_C.bin b/build3/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..8bf50ad Binary files /dev/null and b/build3/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build3/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin b/build3/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..58e5013 Binary files /dev/null and b/build3/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build3/CMakeFiles/4.1.2/CMakeSystem.cmake b/build3/CMakeFiles/4.1.2/CMakeSystem.cmake new file mode 100644 index 0000000..23f87dc --- /dev/null +++ b/build3/CMakeFiles/4.1.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.18.33") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.18.33") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.18.33") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.18.33") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build3/CMakeFiles/4.1.2/CompilerIdC/CMakeCCompilerId.c b/build3/CMakeFiles/4.1.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..ab3c359 --- /dev/null +++ b/build3/CMakeFiles/4.1.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,934 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build3/CMakeFiles/4.1.2/CompilerIdC/a.out b/build3/CMakeFiles/4.1.2/CompilerIdC/a.out new file mode 100755 index 0000000..0ef122c Binary files /dev/null and b/build3/CMakeFiles/4.1.2/CompilerIdC/a.out differ diff --git a/build3/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build3/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..b35f567 --- /dev/null +++ b/build3/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,949 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build3/CMakeFiles/4.1.2/CompilerIdCXX/a.out b/build3/CMakeFiles/4.1.2/CompilerIdCXX/a.out new file mode 100755 index 0000000..a1ff8fb Binary files /dev/null and b/build3/CMakeFiles/4.1.2/CompilerIdCXX/a.out differ diff --git a/build3/CMakeFiles/CMakeConfigureLog.yaml b/build3/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..2f3e9f4 --- /dev/null +++ b/build3/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,4417 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/uname" + - "/root/FastSyncProjects/FastSyncBuilder3/build/uname" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/uname" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/uname" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/uname" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/uname" + found: "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/uname" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:3 (project)" + message: | + The system is: Linux - 6.18.33 - x86_64 + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeUnixFindMake.cmake:5 (find_program)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gmake" + - "make" + - "smake" + candidate_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gmake" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gmake" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gmake" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gmake" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gmake" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gmake" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gmake" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gmake" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gmake" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gmake" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gmake" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gmake" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gmake" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gmake" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gmake" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gmake" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gmake" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gmake" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gmake" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gmake" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gmake" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gmake" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gmake" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gmake" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gmake" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gmake" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gmake" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gmake" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gmake" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gmake" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gmake" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gmake" + - "/run/wrappers/bin/gmake" + - "/root/.nix-profile/bin/gmake" + - "/nix/profile/bin/gmake" + - "/root/.local/state/nix/profile/bin/gmake" + - "/etc/profiles/per-user/root/bin/gmake" + - "/nix/var/nix/profiles/default/bin/gmake" + - "/run/current-system/sw/bin/gmake" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/make" + - "/root/FastSyncProjects/FastSyncBuilder3/build/make" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/make" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/make" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/make" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/make" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/make" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/make" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/make" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/make" + found: "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake:73 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:64 (_cmake_find_compiler)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "C compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc" + candidate_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/" + found: "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompilerId.c.in" + search_context: + ENV{CMAKE_INCLUDE_PATH}: + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/4.1.2/CompilerIdC/a.out + + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ar" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ar" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ranlib" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ranlib" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "strip" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/strip" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_LINKER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ld" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ld" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "nm" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/nm" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objdump" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objdump" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objcopy" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objcopy" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "readelf" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/readelf" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "dlltool" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/dlltool" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/dlltool" + - "/root/FastSyncProjects/FastSyncBuilder3/build/dlltool" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/dlltool" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/dlltool" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/dlltool" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/dlltool" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/dlltool" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/dlltool" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/dlltool" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/dlltool" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/dlltool" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/dlltool" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/dlltool" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/dlltool" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/dlltool" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/dlltool" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/dlltool" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/dlltool" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/dlltool" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/dlltool" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/dlltool" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/dlltool" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/dlltool" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/dlltool" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/dlltool" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/dlltool" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/dlltool" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/dlltool" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/dlltool" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/dlltool" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/dlltool" + - "/run/wrappers/bin/dlltool" + - "/root/.nix-profile/bin/dlltool" + - "/nix/profile/bin/dlltool" + - "/root/.local/state/nix/profile/bin/dlltool" + - "/etc/profiles/per-user/root/bin/dlltool" + - "/nix/var/nix/profiles/default/bin/dlltool" + - "/run/current-system/sw/bin/dlltool" + found: false + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "addr2line" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/addr2line" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake:238 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "tapi" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/tapi" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/tapi" + - "/root/FastSyncProjects/FastSyncBuilder3/build/tapi" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/tapi" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/tapi" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/tapi" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/tapi" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/tapi" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/tapi" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/tapi" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/tapi" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/tapi" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/tapi" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/tapi" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/tapi" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/tapi" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/tapi" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/tapi" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/tapi" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/tapi" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/tapi" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/tapi" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/tapi" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/tapi" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/tapi" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/tapi" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/tapi" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/tapi" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/tapi" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/tapi" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/tapi" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/tapi" + - "/run/wrappers/bin/tapi" + - "/root/.nix-profile/bin/tapi" + - "/nix/profile/bin/tapi" + - "/root/.local/state/nix/profile/bin/tapi" + - "/etc/profiles/per-user/root/bin/tapi" + - "/nix/var/nix/profiles/default/bin/tapi" + - "/run/current-system/sw/bin/tapi" + found: false + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ar-15.2" + - "gcc-ar-15" + - "gcc-ar15" + - "gcc-ar" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar-15.2" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar-15.2" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar-15.2" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar-15.2" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar-15.2" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ar-15.2" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ar-15.2" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ar-15.2" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ar-15.2" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ar-15.2" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ar-15.2" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ar-15.2" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ar-15.2" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ar-15.2" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ar-15.2" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ar-15.2" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ar-15.2" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ar-15.2" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ar-15.2" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ar-15.2" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ar-15.2" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ar-15.2" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ar-15.2" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ar-15.2" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ar-15.2" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ar-15.2" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ar-15.2" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ar-15.2" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ar-15.2" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ar-15.2" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ar-15.2" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ar-15.2" + - "/run/wrappers/bin/gcc-ar-15.2" + - "/root/.nix-profile/bin/gcc-ar-15.2" + - "/nix/profile/bin/gcc-ar-15.2" + - "/root/.local/state/nix/profile/bin/gcc-ar-15.2" + - "/etc/profiles/per-user/root/bin/gcc-ar-15.2" + - "/nix/var/nix/profiles/default/bin/gcc-ar-15.2" + - "/run/current-system/sw/bin/gcc-ar-15.2" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar-15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar-15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar-15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar-15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar-15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ar-15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ar-15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ar-15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ar-15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ar-15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ar-15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ar-15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ar-15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ar-15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ar-15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ar-15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ar-15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ar-15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ar-15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ar-15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ar-15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ar-15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ar-15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ar-15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ar-15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ar-15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ar-15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ar-15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ar-15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ar-15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ar-15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ar-15" + - "/run/wrappers/bin/gcc-ar-15" + - "/root/.nix-profile/bin/gcc-ar-15" + - "/nix/profile/bin/gcc-ar-15" + - "/root/.local/state/nix/profile/bin/gcc-ar-15" + - "/etc/profiles/per-user/root/bin/gcc-ar-15" + - "/nix/var/nix/profiles/default/bin/gcc-ar-15" + - "/run/current-system/sw/bin/gcc-ar-15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ar15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ar15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ar15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ar15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ar15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ar15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ar15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ar15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ar15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ar15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ar15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ar15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ar15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ar15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ar15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ar15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ar15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ar15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ar15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ar15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ar15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ar15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ar15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ar15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ar15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ar15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ar15" + - "/run/wrappers/bin/gcc-ar15" + - "/root/.nix-profile/bin/gcc-ar15" + - "/nix/profile/bin/gcc-ar15" + - "/root/.local/state/nix/profile/bin/gcc-ar15" + - "/etc/profiles/per-user/root/bin/gcc-ar15" + - "/nix/var/nix/profiles/default/bin/gcc-ar15" + - "/run/current-system/sw/bin/gcc-ar15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar" + found: "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ranlib-15.2" + - "gcc-ranlib-15" + - "gcc-ranlib15" + - "gcc-ranlib" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib-15.2" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib-15.2" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib-15.2" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib-15.2" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib-15.2" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ranlib-15.2" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ranlib-15.2" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ranlib-15.2" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ranlib-15.2" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ranlib-15.2" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ranlib-15.2" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ranlib-15.2" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ranlib-15.2" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ranlib-15.2" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ranlib-15.2" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ranlib-15.2" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ranlib-15.2" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ranlib-15.2" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ranlib-15.2" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ranlib-15.2" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ranlib-15.2" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ranlib-15.2" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ranlib-15.2" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ranlib-15.2" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ranlib-15.2" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ranlib-15.2" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ranlib-15.2" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ranlib-15.2" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ranlib-15.2" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ranlib-15.2" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ranlib-15.2" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ranlib-15.2" + - "/run/wrappers/bin/gcc-ranlib-15.2" + - "/root/.nix-profile/bin/gcc-ranlib-15.2" + - "/nix/profile/bin/gcc-ranlib-15.2" + - "/root/.local/state/nix/profile/bin/gcc-ranlib-15.2" + - "/etc/profiles/per-user/root/bin/gcc-ranlib-15.2" + - "/nix/var/nix/profiles/default/bin/gcc-ranlib-15.2" + - "/run/current-system/sw/bin/gcc-ranlib-15.2" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib-15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib-15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib-15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib-15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib-15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ranlib-15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ranlib-15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ranlib-15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ranlib-15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ranlib-15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ranlib-15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ranlib-15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ranlib-15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ranlib-15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ranlib-15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ranlib-15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ranlib-15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ranlib-15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ranlib-15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ranlib-15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ranlib-15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ranlib-15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ranlib-15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ranlib-15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ranlib-15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ranlib-15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ranlib-15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ranlib-15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ranlib-15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ranlib-15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ranlib-15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ranlib-15" + - "/run/wrappers/bin/gcc-ranlib-15" + - "/root/.nix-profile/bin/gcc-ranlib-15" + - "/nix/profile/bin/gcc-ranlib-15" + - "/root/.local/state/nix/profile/bin/gcc-ranlib-15" + - "/etc/profiles/per-user/root/bin/gcc-ranlib-15" + - "/nix/var/nix/profiles/default/bin/gcc-ranlib-15" + - "/run/current-system/sw/bin/gcc-ranlib-15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ranlib15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ranlib15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ranlib15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ranlib15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ranlib15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ranlib15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ranlib15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ranlib15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ranlib15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ranlib15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ranlib15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ranlib15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ranlib15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ranlib15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ranlib15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ranlib15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ranlib15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ranlib15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ranlib15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ranlib15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ranlib15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ranlib15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ranlib15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ranlib15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ranlib15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ranlib15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ranlib15" + - "/run/wrappers/bin/gcc-ranlib15" + - "/root/.nix-profile/bin/gcc-ranlib15" + - "/nix/profile/bin/gcc-ranlib15" + - "/root/.local/state/nix/profile/bin/gcc-ranlib15" + - "/etc/profiles/per-user/root/bin/gcc-ranlib15" + - "/nix/var/nix/profiles/default/bin/gcc-ranlib15" + - "/run/current-system/sw/bin/gcc-ranlib15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib" + found: "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:69 (_cmake_find_compiler)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER" + description: "CXX compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + found: "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/" + found: "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + ENV{CMAKE_INCLUDE_PATH}: + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/4.1.2/CompilerIdCXX/a.out + + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ar-15.2" + - "gcc-ar-15" + - "gcc-ar15" + - "gcc-ar" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar-15.2" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar-15.2" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar-15.2" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar-15.2" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar-15.2" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ar-15.2" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ar-15.2" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ar-15.2" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ar-15.2" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ar-15.2" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ar-15.2" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ar-15.2" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ar-15.2" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ar-15.2" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ar-15.2" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ar-15.2" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ar-15.2" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ar-15.2" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ar-15.2" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ar-15.2" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ar-15.2" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ar-15.2" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ar-15.2" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ar-15.2" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ar-15.2" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ar-15.2" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ar-15.2" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ar-15.2" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ar-15.2" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ar-15.2" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ar-15.2" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ar-15.2" + - "/run/wrappers/bin/gcc-ar-15.2" + - "/root/.nix-profile/bin/gcc-ar-15.2" + - "/nix/profile/bin/gcc-ar-15.2" + - "/root/.local/state/nix/profile/bin/gcc-ar-15.2" + - "/etc/profiles/per-user/root/bin/gcc-ar-15.2" + - "/nix/var/nix/profiles/default/bin/gcc-ar-15.2" + - "/run/current-system/sw/bin/gcc-ar-15.2" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar-15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar-15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar-15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar-15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar-15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ar-15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ar-15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ar-15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ar-15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ar-15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ar-15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ar-15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ar-15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ar-15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ar-15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ar-15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ar-15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ar-15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ar-15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ar-15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ar-15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ar-15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ar-15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ar-15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ar-15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ar-15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ar-15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ar-15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ar-15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ar-15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ar-15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ar-15" + - "/run/wrappers/bin/gcc-ar-15" + - "/root/.nix-profile/bin/gcc-ar-15" + - "/nix/profile/bin/gcc-ar-15" + - "/root/.local/state/nix/profile/bin/gcc-ar-15" + - "/etc/profiles/per-user/root/bin/gcc-ar-15" + - "/nix/var/nix/profiles/default/bin/gcc-ar-15" + - "/run/current-system/sw/bin/gcc-ar-15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ar15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ar15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ar15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ar15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ar15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ar15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ar15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ar15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ar15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ar15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ar15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ar15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ar15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ar15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ar15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ar15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ar15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ar15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ar15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ar15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ar15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ar15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ar15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ar15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ar15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ar15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ar15" + - "/run/wrappers/bin/gcc-ar15" + - "/root/.nix-profile/bin/gcc-ar15" + - "/nix/profile/bin/gcc-ar15" + - "/root/.local/state/nix/profile/bin/gcc-ar15" + - "/etc/profiles/per-user/root/bin/gcc-ar15" + - "/nix/var/nix/profiles/default/bin/gcc-ar15" + - "/run/current-system/sw/bin/gcc-ar15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ar" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ar" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ar" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ar" + found: "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ar" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:3 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ranlib-15.2" + - "gcc-ranlib-15" + - "gcc-ranlib15" + - "gcc-ranlib" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib-15.2" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib-15.2" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib-15.2" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib-15.2" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib-15.2" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ranlib-15.2" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ranlib-15.2" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ranlib-15.2" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ranlib-15.2" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ranlib-15.2" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ranlib-15.2" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ranlib-15.2" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ranlib-15.2" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ranlib-15.2" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ranlib-15.2" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ranlib-15.2" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ranlib-15.2" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ranlib-15.2" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ranlib-15.2" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ranlib-15.2" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ranlib-15.2" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ranlib-15.2" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ranlib-15.2" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ranlib-15.2" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ranlib-15.2" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ranlib-15.2" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ranlib-15.2" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ranlib-15.2" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ranlib-15.2" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ranlib-15.2" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ranlib-15.2" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ranlib-15.2" + - "/run/wrappers/bin/gcc-ranlib-15.2" + - "/root/.nix-profile/bin/gcc-ranlib-15.2" + - "/nix/profile/bin/gcc-ranlib-15.2" + - "/root/.local/state/nix/profile/bin/gcc-ranlib-15.2" + - "/etc/profiles/per-user/root/bin/gcc-ranlib-15.2" + - "/nix/var/nix/profiles/default/bin/gcc-ranlib-15.2" + - "/run/current-system/sw/bin/gcc-ranlib-15.2" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib-15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib-15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib-15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib-15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib-15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ranlib-15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ranlib-15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ranlib-15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ranlib-15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ranlib-15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ranlib-15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ranlib-15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ranlib-15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ranlib-15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ranlib-15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ranlib-15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ranlib-15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ranlib-15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ranlib-15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ranlib-15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ranlib-15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ranlib-15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ranlib-15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ranlib-15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ranlib-15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ranlib-15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ranlib-15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ranlib-15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ranlib-15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ranlib-15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ranlib-15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ranlib-15" + - "/run/wrappers/bin/gcc-ranlib-15" + - "/root/.nix-profile/bin/gcc-ranlib-15" + - "/nix/profile/bin/gcc-ranlib-15" + - "/root/.local/state/nix/profile/bin/gcc-ranlib-15" + - "/etc/profiles/per-user/root/bin/gcc-ranlib-15" + - "/nix/var/nix/profiles/default/bin/gcc-ranlib-15" + - "/run/current-system/sw/bin/gcc-ranlib-15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib15" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib15" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib15" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib15" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib15" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/gcc-ranlib15" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/gcc-ranlib15" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/gcc-ranlib15" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/gcc-ranlib15" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/gcc-ranlib15" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/gcc-ranlib15" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/gcc-ranlib15" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/gcc-ranlib15" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/gcc-ranlib15" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/gcc-ranlib15" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/gcc-ranlib15" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/gcc-ranlib15" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/gcc-ranlib15" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/gcc-ranlib15" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/gcc-ranlib15" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/gcc-ranlib15" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/gcc-ranlib15" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/gcc-ranlib15" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/gcc-ranlib15" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/gcc-ranlib15" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/gcc-ranlib15" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/gcc-ranlib15" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/gcc-ranlib15" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/gcc-ranlib15" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/gcc-ranlib15" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/gcc-ranlib15" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/gcc-ranlib15" + - "/run/wrappers/bin/gcc-ranlib15" + - "/root/.nix-profile/bin/gcc-ranlib15" + - "/nix/profile/bin/gcc-ranlib15" + - "/root/.local/state/nix/profile/bin/gcc-ranlib15" + - "/etc/profiles/per-user/root/bin/gcc-ranlib15" + - "/nix/var/nix/profiles/default/bin/gcc-ranlib15" + - "/run/current-system/sw/bin/gcc-ranlib15" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc-ranlib" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/gcc-ranlib" + - "/root/FastSyncProjects/FastSyncBuilder3/build/gcc-ranlib" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/gcc-ranlib" + found: "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc-ranlib" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "try_compile-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2" + binary: "/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2' + + Run Build Command(s): /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E env VERBOSE=1 /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f Makefile cmTC_388e5/fast + /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f CMakeFiles/cmTC_388e5.dir/build.make CMakeFiles/cmTC_388e5.dir/build + make[1]: Entering directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2' + Building C object CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -v -o CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -c /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc + Target: x86_64-unknown-linux-gnu + Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c,c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 15.2.0 (GCC) + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_388e5.dir/' + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/cc1 -quiet -v -U _FORTIFY_SOURCE -D _LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST -U _FORTIFY_SOURCE -D _FORTIFY_SOURCE=3 -idirafter /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include -idirafter /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_388e5.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -O2 -Wformat=1 -Wformat-security -Werror=format-security -version -fPIC -fstack-clash-protection -fzero-call-used-regs=used-gpr -fstrict-flex-arrays=1 -fstack-protector-strong -fno-strict-overflow -fno-omit-frame-pointer -frandom-seed=nsp3bl4nms --param=ssp-buffer-size=4 -o /tmp/nix-shell-2172-2480046946/ccVukHqP.s + GNU C23 (GCC) version 15.2.0 (x86_64-unknown-linux-gnu) + compiled by GNU C version 15.2.0, GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.4.0, isl version isl-0.20-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include" + ignoring duplicate directory "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include" + ignoring duplicate directory "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include" + ignoring duplicate directory "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include" + ignoring nonexistent directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../../x86_64-unknown-linux-gnu/include" + ignoring duplicate directory "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include" + ignoring duplicate directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed" + #include "..." search starts here: + #include <...> search starts here: + /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include + /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include + /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include + End of search list. + Compiler executable checksum: f8861a93126e16084f02d4b62d3facda + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_388e5.dir/' + as -v --64 -o CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o /tmp/nix-shell-2172-2480046946/ccVukHqP.s + GNU assembler version 2.46 (x86_64-unknown-linux-gnu) using BFD version (GNU Binutils) 2.46 + COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/ + LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../ + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_388e5 + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_388e5.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc + COLLECT_LTO_WRAPPER=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper + Target: x86_64-unknown-linux-gnu + Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c,c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 15.2.0 (GCC) + COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/ + LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../ + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'cmTC_388e5' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib' '-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_388e5.' + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/collect2 -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccTgc306.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_388e5 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o + collect2 version 15.2.0 + /nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccTgc306.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_388e5 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o + GNU ld (GNU Binutils) 2.46 + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'cmTC_388e5' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib' '-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_388e5.' + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -v -Wl,-v CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -o cmTC_388e5 + make[1]: Leaving directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] + add: [/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] + add: [/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] + add: [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] + add: [/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + end of search list found + collapse include dir [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] ==> [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] + collapse include dir [/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] ==> [/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] + collapse include dir [/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] ==> [/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] + collapse include dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] ==> [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] + collapse include dir [/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] ==> [/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + implicit include dirs: [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include;/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include;/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed;/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + + + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2'] + ignore line: [] + ignore line: [Run Build Command(s): /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E env VERBOSE=1 /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f Makefile cmTC_388e5/fast] + ignore line: [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f CMakeFiles/cmTC_388e5.dir/build.make CMakeFiles/cmTC_388e5.dir/build] + ignore line: [make[1]: Entering directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-MA15z2'] + ignore line: [Building C object CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o] + ignore line: [/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -v -o CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -c /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 15.2.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_388e5.dir/'] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/cc1 -quiet -v -U _FORTIFY_SOURCE -D _LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST -U _FORTIFY_SOURCE -D _FORTIFY_SOURCE=3 -idirafter /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include -idirafter /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_388e5.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -O2 -Wformat=1 -Wformat-security -Werror=format-security -version -fPIC -fstack-clash-protection -fzero-call-used-regs=used-gpr -fstrict-flex-arrays=1 -fstack-protector-strong -fno-strict-overflow -fno-omit-frame-pointer -frandom-seed=nsp3bl4nms --param=ssp-buffer-size=4 -o /tmp/nix-shell-2172-2480046946/ccVukHqP.s] + ignore line: [GNU C23 (GCC) version 15.2.0 (x86_64-unknown-linux-gnu)] + ignore line: [ compiled by GNU C version 15.2.0 GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.4.0 isl version isl-0.20-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include"] + ignore line: [ignoring duplicate directory "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include"] + ignore line: [ignoring duplicate directory "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include"] + ignore line: [ignoring duplicate directory "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include"] + ignore line: [ignoring nonexistent directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../../x86_64-unknown-linux-gnu/include"] + ignore line: [ignoring duplicate directory "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include"] + ignore line: [ignoring duplicate directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] + ignore line: [ /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] + ignore line: [ /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] + ignore line: [ /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] + ignore line: [ /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: f8861a93126e16084f02d4b62d3facda] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_388e5.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o /tmp/nix-shell-2172-2480046946/ccVukHqP.s] + ignore line: [GNU assembler version 2.46 (x86_64-unknown-linux-gnu) using BFD version (GNU Binutils) 2.46] + ignore line: [COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/] + ignore line: [LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_388e5] + ignore line: [/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_388e5.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 15.2.0 (GCC) ] + ignore line: [COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/] + ignore line: [LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'cmTC_388e5' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib' '-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_388e5.'] + link line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/collect2 -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccTgc306.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_388e5 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccTgc306.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_388e5] ==> ignore + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o] ==> obj [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o] + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o] ==> obj [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o] + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o] ==> obj [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o] + arg [-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + arg [-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + arg [-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + arg [-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + arg [-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + arg [-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + arg [-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + arg [-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + arg [-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + arg [-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + arg [-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + arg [-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + arg [-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + arg [-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../..] ==> dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../..] + arg [-dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-rpath] ==> ignore + arg [/nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o] ==> obj [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o] + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] ==> obj [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + ignore line: [collect2 version 15.2.0] + ignore line: [/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccTgc306.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_388e5 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_388e5.dir/CMakeCCompilerABI.c.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + linker tool for 'C': /nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld + collapse library dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + collapse library dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + collapse library dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + collapse library dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + collapse library dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + collapse library dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + collapse library dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + collapse library dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + collapse library dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + collapse library dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + collapse library dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + collapse library dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + collapse library dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + collapse library dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../..] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + implicit dirs: [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib;/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0;/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Running the C compiler's linker: "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld" "-v" + GNU ld (GNU Binutils) 2.46 + - + kind: "try_compile-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU" + binary: "/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU' + + Run Build Command(s): /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E env VERBOSE=1 /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f Makefile cmTC_00278/fast + /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f CMakeFiles/cmTC_00278.dir/build.make CMakeFiles/cmTC_00278.dir/build + make[1]: Entering directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU' + Building CXX object CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++ -v -o CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -c /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/g++ + Target: x86_64-unknown-linux-gnu + Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c,c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 15.2.0 (GCC) + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_00278.dir/' + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/cc1plus -quiet -v -D_GNU_SOURCE -U _FORTIFY_SOURCE -D _LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST -U _FORTIFY_SOURCE -D _FORTIFY_SOURCE=3 -idirafter /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include -idirafter /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_00278.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -O2 -Wformat=1 -Wformat-security -Werror=format-security -version -fPIC -fstack-clash-protection -fzero-call-used-regs=used-gpr -fstrict-flex-arrays=1 -fstack-protector-strong -fno-strict-overflow -fno-omit-frame-pointer -frandom-seed=nsp3bl4nms --param=ssp-buffer-size=4 -o /tmp/nix-shell-2172-2480046946/ccZs5yaD.s + GNU C++17 (GCC) version 15.2.0 (x86_64-unknown-linux-gnu) + compiled by GNU C version 15.2.0, GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.4.0, isl version isl-0.20-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include" + ignoring duplicate directory "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include" + ignoring duplicate directory "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include" + ignoring duplicate directory "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include" + ignoring nonexistent directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../../x86_64-unknown-linux-gnu/include" + ignoring duplicate directory "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include" + ignoring duplicate directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed" + #include "..." search starts here: + #include <...> search starts here: + /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include + /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include + /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//x86_64-unknown-linux-gnu + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//backward + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include + End of search list. + Compiler executable checksum: 0a0f7894964226369f16f27777c93a0a + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_00278.dir/' + as -v --64 -o CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o /tmp/nix-shell-2172-2480046946/ccZs5yaD.s + GNU assembler version 2.46 (x86_64-unknown-linux-gnu) using BFD version (GNU Binutils) 2.46 + COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/ + LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../ + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_00278 + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_00278.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/g++ + COLLECT_LTO_WRAPPER=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper + Target: x86_64-unknown-linux-gnu + Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c,c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 15.2.0 (GCC) + COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/ + LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../ + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'cmTC_00278' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib' '-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_00278.' + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/collect2 -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccmo9lGG.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_00278 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o + collect2 version 15.2.0 + /nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccmo9lGG.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_00278 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o + GNU ld (GNU Binutils) 2.46 + COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'cmTC_00278' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib' '-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_00278.' + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++ -v -Wl,-v CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_00278 + make[1]: Leaving directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] + add: [/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] + add: [/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] + add: [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//x86_64-unknown-linux-gnu] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//backward] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] + add: [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] + add: [/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + end of search list found + collapse include dir [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] ==> [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] + collapse include dir [/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] ==> [/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] + collapse include dir [/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] ==> [/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] + collapse include dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] ==> [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//x86_64-unknown-linux-gnu] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/x86_64-unknown-linux-gnu] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//backward] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/backward] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] + collapse include dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] + collapse include dir [/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] ==> [/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + implicit include dirs: [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include;/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include;/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/x86_64-unknown-linux-gnu;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/backward;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed;/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + + + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU'] + ignore line: [] + ignore line: [Run Build Command(s): /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E env VERBOSE=1 /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f Makefile cmTC_00278/fast] + ignore line: [/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f CMakeFiles/cmTC_00278.dir/build.make CMakeFiles/cmTC_00278.dir/build] + ignore line: [make[1]: Entering directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-dT0KoU'] + ignore line: [Building CXX object CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/g++ -v -o CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -c /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/g++] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 15.2.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_00278.dir/'] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/cc1plus -quiet -v -D_GNU_SOURCE -U _FORTIFY_SOURCE -D _LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST -U _FORTIFY_SOURCE -D _FORTIFY_SOURCE=3 -idirafter /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include -idirafter /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include -isystem /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include -isystem /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include -isystem /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include -isystem /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_00278.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -O2 -Wformat=1 -Wformat-security -Werror=format-security -version -fPIC -fstack-clash-protection -fzero-call-used-regs=used-gpr -fstrict-flex-arrays=1 -fstack-protector-strong -fno-strict-overflow -fno-omit-frame-pointer -frandom-seed=nsp3bl4nms --param=ssp-buffer-size=4 -o /tmp/nix-shell-2172-2480046946/ccZs5yaD.s] + ignore line: [GNU C++17 (GCC) version 15.2.0 (x86_64-unknown-linux-gnu)] + ignore line: [ compiled by GNU C version 15.2.0 GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.4.0 isl version isl-0.20-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include"] + ignore line: [ignoring duplicate directory "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include"] + ignore line: [ignoring duplicate directory "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include"] + ignore line: [ignoring duplicate directory "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include"] + ignore line: [ignoring nonexistent directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../../x86_64-unknown-linux-gnu/include"] + ignore line: [ignoring duplicate directory "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include"] + ignore line: [ignoring duplicate directory "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include] + ignore line: [ /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include] + ignore line: [ /nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include] + ignore line: [ /nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0/] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//x86_64-unknown-linux-gnu] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include/c++/15.2.0//backward] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/include] + ignore line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed] + ignore line: [ /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 0a0f7894964226369f16f27777c93a0a] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_00278.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o /tmp/nix-shell-2172-2480046946/ccZs5yaD.s] + ignore line: [GNU assembler version 2.46 (x86_64-unknown-linux-gnu) using BFD version (GNU Binutils) 2.46] + ignore line: [COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/] + ignore line: [LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_00278] + ignore line: [/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_00278.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/g++] + ignore line: [COLLECT_LTO_WRAPPER=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Configured with: ../gcc-15.2.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.4.0 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.42-61-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-15.2.0/include/c++/15.2.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 15.2.0 (GCC) ] + ignore line: [COMPILER_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/] + ignore line: [LIBRARY_PATH=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/:/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/:/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fPIC' '-fstack-clash-protection' '-O2' '-U' '_FORTIFY_SOURCE' '-D' '_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_FAST' '-Wformat=1' '-Wformat-security' '-Werror=format-security' '-fzero-call-used-regs=used-gpr' '-fstrict-flex-arrays=1' '-fstack-protector-strong' '--param=ssp-buffer-size=4' '-fno-strict-overflow' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-v' '-o' 'cmTC_00278' '-U' '_FORTIFY_SOURCE' '-D' '_FORTIFY_SOURCE=3' '-B' '/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/' '-idirafter' '/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include' '-idirafter' '/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include-fixed' '-B' '/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-frandom-seed=nsp3bl4nms' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-isystem' '/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include' '-isystem' '/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include' '-isystem' '/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include' '-isystem' '/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib' '-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib' '-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib' '-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib' '-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_00278.'] + link line: [ /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/collect2 -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccmo9lGG.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_00278 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccmo9lGG.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_00278] ==> ignore + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o] ==> obj [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o] + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o] ==> obj [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o] + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o] ==> obj [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o] + arg [-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + arg [-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + arg [-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + arg [-L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + arg [-L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + arg [-L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + arg [-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + arg [-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + arg [-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + arg [-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + arg [-L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + arg [-L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + arg [-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + arg [-L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../..] ==> dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../..] + arg [-dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-rpath] ==> ignore + arg [/nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o] ==> obj [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o] + arg [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] ==> obj [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + ignore line: [collect2 version 15.2.0] + ignore line: [/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld -plugin /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/liblto_plugin.so -plugin-opt=/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/libexec/gcc/x86_64-unknown-linux-gnu/15.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/nix-shell-2172-2480046946/ccmo9lGG.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --eh-frame-hdr -m elf_x86_64 -dynamic-linker /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib64/ld-linux-x86-64.so.2 -pie -o cmTC_00278 /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib -L/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib -L/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib -L/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0 -L/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../.. -dynamic-linker=/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 -v CMakeFiles/cmTC_00278.dir/CMakeCXXCompilerABI.cpp.o -rpath /nix/store/nsp3bl4nms8yih5n46y8pmnz7zb44wyw-nix-shell/lib -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + linker tool for 'CXX': /nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld + collapse library dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + collapse library dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + collapse library dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + collapse library dir [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] ==> [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib] + collapse library dir [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] ==> [/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib] + collapse library dir [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] ==> [/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib] + collapse library dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + collapse library dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + collapse library dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + collapse library dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + collapse library dir [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] ==> [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib] + collapse library dir [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] ==> [/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib] + collapse library dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0] + collapse library dir [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/../../..] ==> [/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o] + implicit dirs: [/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib;/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib;/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib;/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0;/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib;/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Running the CXX compiler's linker: "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/ld" "-v" + GNU ld (GNU Binutils) 2.46 + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindGit.cmake:86 (find_program)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent.cmake:1874 (find_package)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent.cmake:1609 (__FetchContent_populateSubbuild)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent.cmake:2145:EVAL:2 (__FetchContent_doPopulation)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent.cmake:2145 (cmake_language)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent.cmake:2384 (__FetchContent_Populate)" + - "CMakeLists.txt:48 (FetchContent_MakeAvailable)" + mode: "program" + variable: "GIT_EXECUTABLE" + description: "Git command line client" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "git" + candidate_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/sbin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/usr/local/bin/" + - "/usr/local/sbin/" + - "/usr/local/" + searched_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/git" + - "/root/FastSyncProjects/FastSyncBuilder3/build/git" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/git" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/git" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/git" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/git" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/git" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/git" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/git" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/git" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/git" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/git" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/git" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/git" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/git" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/git" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/git" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/git" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/git" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/git" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/git" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/git" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/git" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/git" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/git" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/git" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/git" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/git" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/git" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/git" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/git" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/git" + - "/run/wrappers/bin/git" + - "/root/.nix-profile/bin/git" + - "/nix/profile/bin/git" + - "/root/.local/state/nix/profile/bin/git" + - "/etc/profiles/per-user/root/bin/git" + - "/nix/var/nix/profiles/default/bin/git" + found: "/run/current-system/sw/bin/git" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + - + kind: "try_compile-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CheckCSourceCompiles.cmake:103 (cmake_check_source_compiles)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindThreads.cmake:97 (check_c_source_compiles)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "CMakeLists.txt:51 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-WClAUV" + binary: "/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-WClAUV" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-WClAUV' + + Run Build Command(s): /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E env VERBOSE=1 /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f Makefile cmTC_1c30f/fast + /nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make -f CMakeFiles/cmTC_1c30f.dir/build.make CMakeFiles/cmTC_1c30f.dir/build + make[1]: Entering directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-WClAUV' + Building C object CMakeFiles/cmTC_1c30f.dir/src.c.o + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu11 -o CMakeFiles/cmTC_1c30f.dir/src.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-WClAUV/src.c + Linking C executable cmTC_1c30f + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1c30f.dir/link.txt --verbose=1 + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc CMakeFiles/cmTC_1c30f.dir/src.c.o -o cmTC_1c30f + make[1]: Leaving directory '/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/CMakeScratch/TryCompile-WClAUV' + + exitCode: 0 + - + kind: "find-v1" + backtrace: + - "CMakeLists.txt:53 (find_library)" + mode: "library" + variable: "ZSTD_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "zstd" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + found: "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so" + search_context: + ENV{CMAKE_LIBRARY_PATH}: + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:307 (find_library)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:357 (_pkg_find_libs)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:695 (_pkg_recalculate)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:867 (_pkg_check_modules_internal)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindOpenSSL.cmake:263 (pkg_check_modules)" + - "CMakeLists.txt:58 (find_package)" + mode: "library" + variable: "pkgcfg_lib__OPENSSL_ssl" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ssl" + candidate_directories: + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + found: "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so" + search_context: + ENV{CMAKE_LIBRARY_PATH}: + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:307 (find_library)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:357 (_pkg_find_libs)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:695 (_pkg_recalculate)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake:867 (_pkg_check_modules_internal)" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindOpenSSL.cmake:263 (pkg_check_modules)" + - "CMakeLists.txt:58 (find_package)" + mode: "library" + variable: "pkgcfg_lib__OPENSSL_crypto" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "crypto" + candidate_directories: + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + found: "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so" + search_context: + ENV{CMAKE_LIBRARY_PATH}: + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindOpenSSL.cmake:336 (find_path)" + - "CMakeLists.txt:58 (find_package)" + mode: "path" + variable: "OPENSSL_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "openssl/ssl.h" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/include/include/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/include/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/include/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/include/include/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/include/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/include/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/include/include/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/include/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/include/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/include/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/include/include/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/include/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/include/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/include/include/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/include/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/include/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/include/include/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/include/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/include/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/include/include/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/include/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/include/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/include/include/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/include/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/include/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/include/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/include/include/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/include/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/include/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/include/include/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/include/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/include/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/include/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/include/include/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/include/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/include/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/include/include/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/include/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/include/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include/include/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/include/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/include/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/include/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include/include/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/include/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/include/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/include/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/include/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/include/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/include/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/include/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/include/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/include/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/include/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/include/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/include/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/include/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/include/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/include/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/include/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/include/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/include/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/include/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/include/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/include/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/include/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/include/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/include/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/include/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/include/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/include/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/include/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/include/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/include/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/include/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/include/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/include/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/include/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/include/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/include/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/include/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/include/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/include/" + - "/run/current-system/sw/bin/" + - "/usr/local/include/include/" + - "/usr/local/include/" + - "/usr/local/include/" + - "/usr/local/" + - "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/include/" + - "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/include/include/openssl/ssl.h" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/include/openssl/ssl.h" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/include/openssl/ssl.h" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/openssl/ssl.h" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/include/include/openssl/ssl.h" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/include/openssl/ssl.h" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/include/openssl/ssl.h" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/openssl/ssl.h" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/include/include/openssl/ssl.h" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/include/openssl/ssl.h" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/include/openssl/ssl.h" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/openssl/ssl.h" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/include/openssl/ssl.h" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/openssl/ssl.h" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include/openssl/ssl.h" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/openssl/ssl.h" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/include/include/openssl/ssl.h" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/include/openssl/ssl.h" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/include/openssl/ssl.h" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/openssl/ssl.h" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/include/include/openssl/ssl.h" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/include/openssl/ssl.h" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/include/openssl/ssl.h" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/openssl/ssl.h" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/include/include/openssl/ssl.h" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/include/openssl/ssl.h" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/include/openssl/ssl.h" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/openssl/ssl.h" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/include/include/openssl/ssl.h" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/include/openssl/ssl.h" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/include/openssl/ssl.h" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/openssl/ssl.h" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/include/include/openssl/ssl.h" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/include/openssl/ssl.h" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/include/openssl/ssl.h" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/openssl/ssl.h" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/include/openssl/ssl.h" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/openssl/ssl.h" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/openssl/ssl.h" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/openssl/ssl.h" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/include/include/openssl/ssl.h" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/include/openssl/ssl.h" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/include/openssl/ssl.h" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/openssl/ssl.h" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/include/include/openssl/ssl.h" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/include/openssl/ssl.h" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/include/openssl/ssl.h" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/openssl/ssl.h" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/include/openssl/ssl.h" + found: "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include/" + search_context: + ENV{CMAKE_INCLUDE_PATH}: + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/include" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/include" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/include" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindOpenSSL.cmake:594 (find_library)" + - "CMakeLists.txt:58 (find_package)" + mode: "library" + variable: "OPENSSL_SSL_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ssl" + - "ssleay32" + - "ssleay32MD" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + found: "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so" + search_context: + ENV{CMAKE_LIBRARY_PATH}: + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib" + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindOpenSSL.cmake:608 (find_library)" + - "CMakeLists.txt:58 (find_package)" + mode: "library" + variable: "OPENSSL_CRYPTO_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "crypto" + candidate_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib/" + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/" + searched_directories: + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/" + - "/nix/store/xknj6c33cc197s60ry0i69vdkmaizrs1-update-autotools-gnu-config-scripts-hook/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/lib/" + - "/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/lib/" + - "/nix/store/wxws7pwyzk8mbmjc1rwwwx9v184hh67v-openssl-3.6.2-dev/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/" + found: "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so" + search_context: + ENV{CMAKE_LIBRARY_PATH}: + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib" + - "/nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/lib" + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2" + - "/usr/local" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib" +... diff --git a/build3/CMakeFiles/CMakeDirectoryInformation.cmake b/build3/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..01ab485 --- /dev/null +++ b/build3/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/root/FastSyncProjects/FastSyncBuilder3") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/root/FastSyncProjects/FastSyncBuilder3/build3") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build3/CMakeFiles/InstallScripts.json b/build3/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..60633db --- /dev/null +++ b/build3/CMakeFiles/InstallScripts.json @@ -0,0 +1,8 @@ +{ + "InstallScripts" : + [ + "/root/FastSyncProjects/FastSyncBuilder3/build3/cmake_install.cmake", + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build3/CMakeFiles/Makefile.cmake b/build3/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..6ea28af --- /dev/null +++ b/build3/CMakeFiles/Makefile.cmake @@ -0,0 +1,177 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompiler.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCCompilerABI.c" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompiler.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXCompilerABI.cpp" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCXXInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCommonLanguageInclude.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeCompilerIdDetection.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDependentOption.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineCompilerSupport.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeGenericSystem.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeInitializeConfigs.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeLanguageInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeParseImplicitLinkInfo.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeParseLibraryArchitecture.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeSystem.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeSystemSpecificInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeSystemSpecificInitialize.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeTestCompilerCommon.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeUnixFindMake.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CPack.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CPackComponent.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CheckCCompilerFlag.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CheckCSourceCompiles.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CheckIncludeFile.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CheckLibraryExists.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Diab-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-C.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-CXX.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU-FindBinUtils.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/GNU.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Renesas-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/TI-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/TIClang-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/shared_internal_commands.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FetchContent/CMakeLists.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindGit.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindOpenSSL.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPackageHandleStandardArgs.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPackageMessage.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindPkgConfig.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/FindThreads.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeCLinkerInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeCXXLinkerInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeDetermineLinkerId.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeInspectCLinker.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CMakeInspectCXXLinker.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CheckCompilerFlag.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CheckFlagCommonConfig.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/CheckSourceCompiles.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Internal/FeatureTesting.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Linker/GNU-C.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Linker/GNU-CXX.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Linker/GNU.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linker/GNU.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linker/Linux-GNU-C.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linker/Linux-GNU-CXX.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linker/Linux-GNU.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux-Determine-CXX.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux-GNU-C.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux-GNU-CXX.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux-GNU.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux-Initialize.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/UnixPaths.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPackConfig.cmake.in" + "/root/FastSyncProjects/FastSyncBuilder3/CMakeLists.txt" + "CMakeFiles/4.1.2/CMakeCCompiler.cmake" + "CMakeFiles/4.1.2/CMakeCXXCompiler.cmake" + "CMakeFiles/4.1.2/CMakeSystem.cmake" + "_deps/xxhash-src/cmake_unofficial/CMakeLists.txt" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/4.1.2/CMakeSystem.cmake" + "CMakeFiles/4.1.2/CMakeCCompiler.cmake" + "CMakeFiles/4.1.2/CMakeCXXCompiler.cmake" + "CMakeFiles/4.1.2/CMakeCCompiler.cmake" + "CMakeFiles/4.1.2/CMakeCCompiler.cmake" + "CMakeFiles/4.1.2/CMakeCXXCompiler.cmake" + "CMakeFiles/4.1.2/CMakeCXXCompiler.cmake" + "_deps/xxhash-subbuild/CMakeLists.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "CPackConfig.cmake" + "CPackSourceConfig.cmake" + "_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/server.dir/DependInfo.cmake" + "CMakeFiles/client.dir/DependInfo.cmake" + "CMakeFiles/tests.dir/DependInfo.cmake" + "_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake" + "_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake" + ) diff --git a/build3/CMakeFiles/Makefile2 b/build3/CMakeFiles/Makefile2 new file mode 100644 index 0000000..a4d8ce1 --- /dev/null +++ b/build3/CMakeFiles/Makefile2 @@ -0,0 +1,281 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/server.dir/all +all: CMakeFiles/client.dir/all +all: CMakeFiles/tests.dir/all +all: _deps/xxhash-build/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/server.dir/codegen +codegen: CMakeFiles/client.dir/codegen +codegen: CMakeFiles/tests.dir/codegen +codegen: _deps/xxhash-build/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: _deps/xxhash-build/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/server.dir/clean +clean: CMakeFiles/client.dir/clean +clean: CMakeFiles/tests.dir/clean +clean: _deps/xxhash-build/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory _deps/xxhash-build + +# Recursive "all" directory target. +_deps/xxhash-build/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all +_deps/xxhash-build/all: _deps/xxhash-build/CMakeFiles/xxhsum.dir/all +.PHONY : _deps/xxhash-build/all + +# Recursive "codegen" directory target. +_deps/xxhash-build/codegen: _deps/xxhash-build/CMakeFiles/xxhash.dir/codegen +_deps/xxhash-build/codegen: _deps/xxhash-build/CMakeFiles/xxhsum.dir/codegen +.PHONY : _deps/xxhash-build/codegen + +# Recursive "preinstall" directory target. +_deps/xxhash-build/preinstall: +.PHONY : _deps/xxhash-build/preinstall + +# Recursive "clean" directory target. +_deps/xxhash-build/clean: _deps/xxhash-build/CMakeFiles/xxhash.dir/clean +_deps/xxhash-build/clean: _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean +.PHONY : _deps/xxhash-build/clean + +#============================================================================= +# Target rules for target CMakeFiles/server.dir + +# All Build rule for target. +CMakeFiles/server.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 "Built target server" +.PHONY : CMakeFiles/server.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/server.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 20 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/server.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : CMakeFiles/server.dir/rule + +# Convenience name for target. +server: CMakeFiles/server.dir/rule +.PHONY : server + +# codegen rule for target. +CMakeFiles/server.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 "Finished codegen for target server" +.PHONY : CMakeFiles/server.dir/codegen + +# clean rule for target. +CMakeFiles/server.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/clean +.PHONY : CMakeFiles/server.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/client.dir + +# All Build rule for target. +CMakeFiles/client.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 "Built target client" +.PHONY : CMakeFiles/client.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/client.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 22 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/client.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : CMakeFiles/client.dir/rule + +# Convenience name for target. +client: CMakeFiles/client.dir/rule +.PHONY : client + +# codegen rule for target. +CMakeFiles/client.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 "Finished codegen for target client" +.PHONY : CMakeFiles/client.dir/codegen + +# clean rule for target. +CMakeFiles/client.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/clean +.PHONY : CMakeFiles/client.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/tests.dir + +# All Build rule for target. +CMakeFiles/tests.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Built target tests" +.PHONY : CMakeFiles/tests.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 37 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : CMakeFiles/tests.dir/rule + +# Convenience name for target. +tests: CMakeFiles/tests.dir/rule +.PHONY : tests + +# codegen rule for target. +CMakeFiles/tests.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Finished codegen for target tests" +.PHONY : CMakeFiles/tests.dir/codegen + +# clean rule for target. +CMakeFiles/tests.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/clean +.PHONY : CMakeFiles/tests.dir/clean + +#============================================================================= +# Target rules for target _deps/xxhash-build/CMakeFiles/xxhash.dir + +# All Build rule for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=74,75 "Built target xxhash" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/all + +# Build rule for subdir invocation for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/rule + +# Convenience name for target. +xxhash: _deps/xxhash-build/CMakeFiles/xxhash.dir/rule +.PHONY : xxhash + +# codegen rule for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/codegen: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=74,75 "Finished codegen for target xxhash" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/codegen + +# clean rule for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/clean +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/clean + +#============================================================================= +# Target rules for target _deps/xxhash-build/CMakeFiles/xxhsum.dir + +# All Build rule for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=76,77,78,79,80,81,82 "Built target xxhsum" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/all + +# Build rule for subdir invocation for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 9 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhsum.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule + +# Convenience name for target. +xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule +.PHONY : xxhsum + +# codegen rule for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/codegen: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=76,77,78,79,80,81,82 "Finished codegen for target xxhsum" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/codegen + +# clean rule for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build3/CMakeFiles/Progress/28 b/build3/CMakeFiles/Progress/28 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/build3/CMakeFiles/Progress/28 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build3/CMakeFiles/Progress/74 b/build3/CMakeFiles/Progress/74 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/build3/CMakeFiles/Progress/74 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build3/CMakeFiles/Progress/75 b/build3/CMakeFiles/Progress/75 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/build3/CMakeFiles/Progress/75 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build3/CMakeFiles/Progress/count.txt b/build3/CMakeFiles/Progress/count.txt new file mode 100644 index 0000000..dde92dd --- /dev/null +++ b/build3/CMakeFiles/Progress/count.txt @@ -0,0 +1 @@ +82 diff --git a/build3/CMakeFiles/TargetDirectories.txt b/build3/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..6fdfe4d --- /dev/null +++ b/build3/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,15 @@ +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/server.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/client.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/tests.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/package.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/package_source.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/test.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/edit_cache.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/rebuild_cache.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/package.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/package_source.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/test.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/edit_cache.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/rebuild_cache.dir diff --git a/build3/CMakeFiles/client.dir/DependInfo.cmake b/build3/CMakeFiles/client.dir/DependInfo.cmake new file mode 100644 index 0000000..1115115 --- /dev/null +++ b/build3/CMakeFiles/client.dir/DependInfo.cmake @@ -0,0 +1,42 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c" "CMakeFiles/client.dir/src/client/client_cli.c.o" "gcc" "CMakeFiles/client.dir/src/client/client_cli.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c" "CMakeFiles/client.dir/src/client/client_send.c.o" "gcc" "CMakeFiles/client.dir/src/client/client_send.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c" "CMakeFiles/client.dir/src/client/scanner.c.o" "gcc" "CMakeFiles/client.dir/src/client/scanner.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c" "CMakeFiles/client.dir/src/shared/array_list.c.o" "gcc" "CMakeFiles/client.dir/src/shared/array_list.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c" "CMakeFiles/client.dir/src/shared/chunk.c.o" "gcc" "CMakeFiles/client.dir/src/shared/chunk.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c" "CMakeFiles/client.dir/src/shared/compression.c.o" "gcc" "CMakeFiles/client.dir/src/shared/compression.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c" "CMakeFiles/client.dir/src/shared/config.c.o" "gcc" "CMakeFiles/client.dir/src/shared/config.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c" "CMakeFiles/client.dir/src/shared/data.c.o" "gcc" "CMakeFiles/client.dir/src/shared/data.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c" "CMakeFiles/client.dir/src/shared/delta.c.o" "gcc" "CMakeFiles/client.dir/src/shared/delta.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c" "CMakeFiles/client.dir/src/shared/file.c.o" "gcc" "CMakeFiles/client.dir/src/shared/file.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c" "CMakeFiles/client.dir/src/shared/log.c.o" "gcc" "CMakeFiles/client.dir/src/shared/log.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c" "CMakeFiles/client.dir/src/shared/metadata.c.o" "gcc" "CMakeFiles/client.dir/src/shared/metadata.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c" "CMakeFiles/client.dir/src/shared/multiprocessing.c.o" "gcc" "CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c" "CMakeFiles/client.dir/src/shared/protocol.c.o" "gcc" "CMakeFiles/client.dir/src/shared/protocol.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c" "CMakeFiles/client.dir/src/shared/queue.c.o" "gcc" "CMakeFiles/client.dir/src/shared/queue.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c" "CMakeFiles/client.dir/src/shared/transport_ssh.c.o" "gcc" "CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c" "CMakeFiles/client.dir/src/shared/transport_tcp.c.o" "gcc" "CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c" "CMakeFiles/client.dir/src/shared/transport_tls.c.o" "gcc" "CMakeFiles/client.dir/src/shared/transport_tls.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c" "CMakeFiles/client.dir/src/shared/utils.c.o" "gcc" "CMakeFiles/client.dir/src/shared/utils.c.o.d" + "" "client" "gcc" "CMakeFiles/client.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build3/CMakeFiles/client.dir/build.make b/build3/CMakeFiles/client.dir/build.make new file mode 100644 index 0000000..017d0fa --- /dev/null +++ b/build3/CMakeFiles/client.dir/build.make @@ -0,0 +1,406 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +# Include any dependencies generated for this target. +include CMakeFiles/client.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/client.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/client.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/client.dir/flags.make + +CMakeFiles/client.dir/codegen: +.PHONY : CMakeFiles/client.dir/codegen + +CMakeFiles/client.dir/src/client/client_cli.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/client/client_cli.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c +CMakeFiles/client.dir/src/client/client_cli.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/client.dir/src/client/client_cli.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/client/client_cli.c.o -MF CMakeFiles/client.dir/src/client/client_cli.c.o.d -o CMakeFiles/client.dir/src/client/client_cli.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c + +CMakeFiles/client.dir/src/client/client_cli.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/client/client_cli.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c > CMakeFiles/client.dir/src/client/client_cli.c.i + +CMakeFiles/client.dir/src/client/client_cli.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/client/client_cli.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c -o CMakeFiles/client.dir/src/client/client_cli.c.s + +CMakeFiles/client.dir/src/client/client_send.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/client/client_send.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c +CMakeFiles/client.dir/src/client/client_send.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/client.dir/src/client/client_send.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/client/client_send.c.o -MF CMakeFiles/client.dir/src/client/client_send.c.o.d -o CMakeFiles/client.dir/src/client/client_send.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c + +CMakeFiles/client.dir/src/client/client_send.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/client/client_send.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c > CMakeFiles/client.dir/src/client/client_send.c.i + +CMakeFiles/client.dir/src/client/client_send.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/client/client_send.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c -o CMakeFiles/client.dir/src/client/client_send.c.s + +CMakeFiles/client.dir/src/client/scanner.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/client/scanner.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c +CMakeFiles/client.dir/src/client/scanner.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/client.dir/src/client/scanner.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/client/scanner.c.o -MF CMakeFiles/client.dir/src/client/scanner.c.o.d -o CMakeFiles/client.dir/src/client/scanner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c + +CMakeFiles/client.dir/src/client/scanner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/client/scanner.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c > CMakeFiles/client.dir/src/client/scanner.c.i + +CMakeFiles/client.dir/src/client/scanner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/client/scanner.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c -o CMakeFiles/client.dir/src/client/scanner.c.s + +CMakeFiles/client.dir/src/shared/array_list.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/array_list.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c +CMakeFiles/client.dir/src/shared/array_list.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/client.dir/src/shared/array_list.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/array_list.c.o -MF CMakeFiles/client.dir/src/shared/array_list.c.o.d -o CMakeFiles/client.dir/src/shared/array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c + +CMakeFiles/client.dir/src/shared/array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/array_list.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c > CMakeFiles/client.dir/src/shared/array_list.c.i + +CMakeFiles/client.dir/src/shared/array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/array_list.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c -o CMakeFiles/client.dir/src/shared/array_list.c.s + +CMakeFiles/client.dir/src/shared/chunk.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/chunk.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c +CMakeFiles/client.dir/src/shared/chunk.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/client.dir/src/shared/chunk.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/chunk.c.o -MF CMakeFiles/client.dir/src/shared/chunk.c.o.d -o CMakeFiles/client.dir/src/shared/chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c + +CMakeFiles/client.dir/src/shared/chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/chunk.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c > CMakeFiles/client.dir/src/shared/chunk.c.i + +CMakeFiles/client.dir/src/shared/chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/chunk.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c -o CMakeFiles/client.dir/src/shared/chunk.c.s + +CMakeFiles/client.dir/src/shared/compression.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/compression.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c +CMakeFiles/client.dir/src/shared/compression.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/client.dir/src/shared/compression.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/compression.c.o -MF CMakeFiles/client.dir/src/shared/compression.c.o.d -o CMakeFiles/client.dir/src/shared/compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c + +CMakeFiles/client.dir/src/shared/compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/compression.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c > CMakeFiles/client.dir/src/shared/compression.c.i + +CMakeFiles/client.dir/src/shared/compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/compression.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c -o CMakeFiles/client.dir/src/shared/compression.c.s + +CMakeFiles/client.dir/src/shared/config.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/config.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c +CMakeFiles/client.dir/src/shared/config.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/client.dir/src/shared/config.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/config.c.o -MF CMakeFiles/client.dir/src/shared/config.c.o.d -o CMakeFiles/client.dir/src/shared/config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c + +CMakeFiles/client.dir/src/shared/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/config.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c > CMakeFiles/client.dir/src/shared/config.c.i + +CMakeFiles/client.dir/src/shared/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/config.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c -o CMakeFiles/client.dir/src/shared/config.c.s + +CMakeFiles/client.dir/src/shared/data.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/data.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c +CMakeFiles/client.dir/src/shared/data.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/client.dir/src/shared/data.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/data.c.o -MF CMakeFiles/client.dir/src/shared/data.c.o.d -o CMakeFiles/client.dir/src/shared/data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c + +CMakeFiles/client.dir/src/shared/data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/data.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c > CMakeFiles/client.dir/src/shared/data.c.i + +CMakeFiles/client.dir/src/shared/data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/data.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c -o CMakeFiles/client.dir/src/shared/data.c.s + +CMakeFiles/client.dir/src/shared/delta.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/delta.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c +CMakeFiles/client.dir/src/shared/delta.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/client.dir/src/shared/delta.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/delta.c.o -MF CMakeFiles/client.dir/src/shared/delta.c.o.d -o CMakeFiles/client.dir/src/shared/delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c + +CMakeFiles/client.dir/src/shared/delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/delta.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c > CMakeFiles/client.dir/src/shared/delta.c.i + +CMakeFiles/client.dir/src/shared/delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/delta.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c -o CMakeFiles/client.dir/src/shared/delta.c.s + +CMakeFiles/client.dir/src/shared/file.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/file.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c +CMakeFiles/client.dir/src/shared/file.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/client.dir/src/shared/file.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/file.c.o -MF CMakeFiles/client.dir/src/shared/file.c.o.d -o CMakeFiles/client.dir/src/shared/file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c + +CMakeFiles/client.dir/src/shared/file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/file.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c > CMakeFiles/client.dir/src/shared/file.c.i + +CMakeFiles/client.dir/src/shared/file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/file.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c -o CMakeFiles/client.dir/src/shared/file.c.s + +CMakeFiles/client.dir/src/shared/log.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/log.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c +CMakeFiles/client.dir/src/shared/log.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/client.dir/src/shared/log.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/log.c.o -MF CMakeFiles/client.dir/src/shared/log.c.o.d -o CMakeFiles/client.dir/src/shared/log.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c + +CMakeFiles/client.dir/src/shared/log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/log.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c > CMakeFiles/client.dir/src/shared/log.c.i + +CMakeFiles/client.dir/src/shared/log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/log.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c -o CMakeFiles/client.dir/src/shared/log.c.s + +CMakeFiles/client.dir/src/shared/metadata.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/metadata.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c +CMakeFiles/client.dir/src/shared/metadata.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/client.dir/src/shared/metadata.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/metadata.c.o -MF CMakeFiles/client.dir/src/shared/metadata.c.o.d -o CMakeFiles/client.dir/src/shared/metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c + +CMakeFiles/client.dir/src/shared/metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/metadata.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c > CMakeFiles/client.dir/src/shared/metadata.c.i + +CMakeFiles/client.dir/src/shared/metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/metadata.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c -o CMakeFiles/client.dir/src/shared/metadata.c.s + +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/client.dir/src/shared/multiprocessing.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/multiprocessing.c.o -MF CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d -o CMakeFiles/client.dir/src/shared/multiprocessing.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c + +CMakeFiles/client.dir/src/shared/multiprocessing.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/multiprocessing.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c > CMakeFiles/client.dir/src/shared/multiprocessing.c.i + +CMakeFiles/client.dir/src/shared/multiprocessing.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/multiprocessing.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c -o CMakeFiles/client.dir/src/shared/multiprocessing.c.s + +CMakeFiles/client.dir/src/shared/protocol.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/protocol.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c +CMakeFiles/client.dir/src/shared/protocol.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/client.dir/src/shared/protocol.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/protocol.c.o -MF CMakeFiles/client.dir/src/shared/protocol.c.o.d -o CMakeFiles/client.dir/src/shared/protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c + +CMakeFiles/client.dir/src/shared/protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/protocol.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c > CMakeFiles/client.dir/src/shared/protocol.c.i + +CMakeFiles/client.dir/src/shared/protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/protocol.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c -o CMakeFiles/client.dir/src/shared/protocol.c.s + +CMakeFiles/client.dir/src/shared/queue.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/queue.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c +CMakeFiles/client.dir/src/shared/queue.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/client.dir/src/shared/queue.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/queue.c.o -MF CMakeFiles/client.dir/src/shared/queue.c.o.d -o CMakeFiles/client.dir/src/shared/queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c + +CMakeFiles/client.dir/src/shared/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/queue.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c > CMakeFiles/client.dir/src/shared/queue.c.i + +CMakeFiles/client.dir/src/shared/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/queue.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c -o CMakeFiles/client.dir/src/shared/queue.c.s + +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/client.dir/src/shared/transport_ssh.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/transport_ssh.c.o -MF CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d -o CMakeFiles/client.dir/src/shared/transport_ssh.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c + +CMakeFiles/client.dir/src/shared/transport_ssh.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/transport_ssh.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c > CMakeFiles/client.dir/src/shared/transport_ssh.c.i + +CMakeFiles/client.dir/src/shared/transport_ssh.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/transport_ssh.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c -o CMakeFiles/client.dir/src/shared/transport_ssh.c.s + +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/client.dir/src/shared/transport_tcp.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/transport_tcp.c.o -MF CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d -o CMakeFiles/client.dir/src/shared/transport_tcp.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c + +CMakeFiles/client.dir/src/shared/transport_tcp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/transport_tcp.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c > CMakeFiles/client.dir/src/shared/transport_tcp.c.i + +CMakeFiles/client.dir/src/shared/transport_tcp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/transport_tcp.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c -o CMakeFiles/client.dir/src/shared/transport_tcp.c.s + +CMakeFiles/client.dir/src/shared/transport_tls.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/transport_tls.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c +CMakeFiles/client.dir/src/shared/transport_tls.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/client.dir/src/shared/transport_tls.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/transport_tls.c.o -MF CMakeFiles/client.dir/src/shared/transport_tls.c.o.d -o CMakeFiles/client.dir/src/shared/transport_tls.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c + +CMakeFiles/client.dir/src/shared/transport_tls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/transport_tls.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c > CMakeFiles/client.dir/src/shared/transport_tls.c.i + +CMakeFiles/client.dir/src/shared/transport_tls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/transport_tls.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c -o CMakeFiles/client.dir/src/shared/transport_tls.c.s + +CMakeFiles/client.dir/src/shared/utils.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/utils.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c +CMakeFiles/client.dir/src/shared/utils.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/client.dir/src/shared/utils.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/utils.c.o -MF CMakeFiles/client.dir/src/shared/utils.c.o.d -o CMakeFiles/client.dir/src/shared/utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c + +CMakeFiles/client.dir/src/shared/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/utils.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c > CMakeFiles/client.dir/src/shared/utils.c.i + +CMakeFiles/client.dir/src/shared/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/utils.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c -o CMakeFiles/client.dir/src/shared/utils.c.s + +# Object files for target client +client_OBJECTS = \ +"CMakeFiles/client.dir/src/client/client_cli.c.o" \ +"CMakeFiles/client.dir/src/client/client_send.c.o" \ +"CMakeFiles/client.dir/src/client/scanner.c.o" \ +"CMakeFiles/client.dir/src/shared/array_list.c.o" \ +"CMakeFiles/client.dir/src/shared/chunk.c.o" \ +"CMakeFiles/client.dir/src/shared/compression.c.o" \ +"CMakeFiles/client.dir/src/shared/config.c.o" \ +"CMakeFiles/client.dir/src/shared/data.c.o" \ +"CMakeFiles/client.dir/src/shared/delta.c.o" \ +"CMakeFiles/client.dir/src/shared/file.c.o" \ +"CMakeFiles/client.dir/src/shared/log.c.o" \ +"CMakeFiles/client.dir/src/shared/metadata.c.o" \ +"CMakeFiles/client.dir/src/shared/multiprocessing.c.o" \ +"CMakeFiles/client.dir/src/shared/protocol.c.o" \ +"CMakeFiles/client.dir/src/shared/queue.c.o" \ +"CMakeFiles/client.dir/src/shared/transport_ssh.c.o" \ +"CMakeFiles/client.dir/src/shared/transport_tcp.c.o" \ +"CMakeFiles/client.dir/src/shared/transport_tls.c.o" \ +"CMakeFiles/client.dir/src/shared/utils.c.o" + +# External object files for target client +client_EXTERNAL_OBJECTS = + +client: CMakeFiles/client.dir/src/client/client_cli.c.o +client: CMakeFiles/client.dir/src/client/client_send.c.o +client: CMakeFiles/client.dir/src/client/scanner.c.o +client: CMakeFiles/client.dir/src/shared/array_list.c.o +client: CMakeFiles/client.dir/src/shared/chunk.c.o +client: CMakeFiles/client.dir/src/shared/compression.c.o +client: CMakeFiles/client.dir/src/shared/config.c.o +client: CMakeFiles/client.dir/src/shared/data.c.o +client: CMakeFiles/client.dir/src/shared/delta.c.o +client: CMakeFiles/client.dir/src/shared/file.c.o +client: CMakeFiles/client.dir/src/shared/log.c.o +client: CMakeFiles/client.dir/src/shared/metadata.c.o +client: CMakeFiles/client.dir/src/shared/multiprocessing.c.o +client: CMakeFiles/client.dir/src/shared/protocol.c.o +client: CMakeFiles/client.dir/src/shared/queue.c.o +client: CMakeFiles/client.dir/src/shared/transport_ssh.c.o +client: CMakeFiles/client.dir/src/shared/transport_tcp.c.o +client: CMakeFiles/client.dir/src/shared/transport_tls.c.o +client: CMakeFiles/client.dir/src/shared/utils.c.o +client: CMakeFiles/client.dir/build.make +client: CMakeFiles/client.dir/compiler_depend.ts +client: /nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so +client: /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so +client: /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so +client: _deps/xxhash-build/libxxhash.a +client: CMakeFiles/client.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Linking C executable client" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/client.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/client.dir/build: client +.PHONY : CMakeFiles/client.dir/build + +CMakeFiles/client.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/client.dir/cmake_clean.cmake +.PHONY : CMakeFiles/client.dir/clean + +CMakeFiles/client.dir/depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/client.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/client.dir/depend + diff --git a/build3/CMakeFiles/client.dir/cmake_clean.cmake b/build3/CMakeFiles/client.dir/cmake_clean.cmake new file mode 100644 index 0000000..d036a33 --- /dev/null +++ b/build3/CMakeFiles/client.dir/cmake_clean.cmake @@ -0,0 +1,48 @@ +file(REMOVE_RECURSE + "CMakeFiles/client.dir/link.d" + "CMakeFiles/client.dir/src/client/client_cli.c.o" + "CMakeFiles/client.dir/src/client/client_cli.c.o.d" + "CMakeFiles/client.dir/src/client/client_send.c.o" + "CMakeFiles/client.dir/src/client/client_send.c.o.d" + "CMakeFiles/client.dir/src/client/scanner.c.o" + "CMakeFiles/client.dir/src/client/scanner.c.o.d" + "CMakeFiles/client.dir/src/shared/array_list.c.o" + "CMakeFiles/client.dir/src/shared/array_list.c.o.d" + "CMakeFiles/client.dir/src/shared/chunk.c.o" + "CMakeFiles/client.dir/src/shared/chunk.c.o.d" + "CMakeFiles/client.dir/src/shared/compression.c.o" + "CMakeFiles/client.dir/src/shared/compression.c.o.d" + "CMakeFiles/client.dir/src/shared/config.c.o" + "CMakeFiles/client.dir/src/shared/config.c.o.d" + "CMakeFiles/client.dir/src/shared/data.c.o" + "CMakeFiles/client.dir/src/shared/data.c.o.d" + "CMakeFiles/client.dir/src/shared/delta.c.o" + "CMakeFiles/client.dir/src/shared/delta.c.o.d" + "CMakeFiles/client.dir/src/shared/file.c.o" + "CMakeFiles/client.dir/src/shared/file.c.o.d" + "CMakeFiles/client.dir/src/shared/log.c.o" + "CMakeFiles/client.dir/src/shared/log.c.o.d" + "CMakeFiles/client.dir/src/shared/metadata.c.o" + "CMakeFiles/client.dir/src/shared/metadata.c.o.d" + "CMakeFiles/client.dir/src/shared/multiprocessing.c.o" + "CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d" + "CMakeFiles/client.dir/src/shared/protocol.c.o" + "CMakeFiles/client.dir/src/shared/protocol.c.o.d" + "CMakeFiles/client.dir/src/shared/queue.c.o" + "CMakeFiles/client.dir/src/shared/queue.c.o.d" + "CMakeFiles/client.dir/src/shared/transport_ssh.c.o" + "CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d" + "CMakeFiles/client.dir/src/shared/transport_tcp.c.o" + "CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d" + "CMakeFiles/client.dir/src/shared/transport_tls.c.o" + "CMakeFiles/client.dir/src/shared/transport_tls.c.o.d" + "CMakeFiles/client.dir/src/shared/utils.c.o" + "CMakeFiles/client.dir/src/shared/utils.c.o.d" + "client" + "client.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/client.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build3/CMakeFiles/client.dir/compiler_depend.make b/build3/CMakeFiles/client.dir/compiler_depend.make new file mode 100644 index 0000000..690122a --- /dev/null +++ b/build3/CMakeFiles/client.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for client. +# This may be replaced when dependencies are built. diff --git a/build3/CMakeFiles/client.dir/compiler_depend.ts b/build3/CMakeFiles/client.dir/compiler_depend.ts new file mode 100644 index 0000000..d3a74eb --- /dev/null +++ b/build3/CMakeFiles/client.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for client. diff --git a/build3/CMakeFiles/client.dir/depend.make b/build3/CMakeFiles/client.dir/depend.make new file mode 100644 index 0000000..8a28b9f --- /dev/null +++ b/build3/CMakeFiles/client.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for client. +# This may be replaced when dependencies are built. diff --git a/build3/CMakeFiles/client.dir/flags.make b/build3/CMakeFiles/client.dir/flags.make new file mode 100644 index 0000000..2f1a4dc --- /dev/null +++ b/build3/CMakeFiles/client.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc +C_DEFINES = + +C_INCLUDES = -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 + diff --git a/build3/CMakeFiles/client.dir/link.txt b/build3/CMakeFiles/client.dir/link.txt new file mode 100644 index 0000000..78cc650 --- /dev/null +++ b/build3/CMakeFiles/client.dir/link.txt @@ -0,0 +1 @@ +/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/client.dir/link.d CMakeFiles/client.dir/src/client/client_cli.c.o CMakeFiles/client.dir/src/client/client_send.c.o CMakeFiles/client.dir/src/client/scanner.c.o CMakeFiles/client.dir/src/shared/array_list.c.o CMakeFiles/client.dir/src/shared/chunk.c.o CMakeFiles/client.dir/src/shared/compression.c.o CMakeFiles/client.dir/src/shared/config.c.o CMakeFiles/client.dir/src/shared/data.c.o CMakeFiles/client.dir/src/shared/delta.c.o CMakeFiles/client.dir/src/shared/file.c.o CMakeFiles/client.dir/src/shared/log.c.o CMakeFiles/client.dir/src/shared/metadata.c.o CMakeFiles/client.dir/src/shared/multiprocessing.c.o CMakeFiles/client.dir/src/shared/protocol.c.o CMakeFiles/client.dir/src/shared/queue.c.o CMakeFiles/client.dir/src/shared/transport_ssh.c.o CMakeFiles/client.dir/src/shared/transport_tcp.c.o CMakeFiles/client.dir/src/shared/transport_tls.c.o CMakeFiles/client.dir/src/shared/utils.c.o -o client /nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so _deps/xxhash-build/libxxhash.a diff --git a/build3/CMakeFiles/client.dir/progress.make b/build3/CMakeFiles/client.dir/progress.make new file mode 100644 index 0000000..a923c4b --- /dev/null +++ b/build3/CMakeFiles/client.dir/progress.make @@ -0,0 +1,21 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 +CMAKE_PROGRESS_19 = 19 +CMAKE_PROGRESS_20 = 20 + diff --git a/build3/CMakeFiles/client.dir/src/client/client_cli.c.o b/build3/CMakeFiles/client.dir/src/client/client_cli.c.o new file mode 100644 index 0000000..79f5349 Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/client/client_cli.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/client/client_cli.c.o.d b/build3/CMakeFiles/client.dir/src/client/client_cli.c.o.d new file mode 100644 index 0000000..8606155 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/client/client_cli.c.o.d @@ -0,0 +1,127 @@ +CMakeFiles/client.dir/src/client/client_cli.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/netinet/in.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_iovec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket_type.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types_64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_osockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/in.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/client.dir/src/client/client_send.c.o b/build3/CMakeFiles/client.dir/src/client/client_send.c.o new file mode 100644 index 0000000..8c4dd25 Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/client/client_send.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/client/client_send.c.o.d b/build3/CMakeFiles/client.dir/src/client/client_send.c.o.d new file mode 100644 index 0000000..ecf2473 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/client/client_send.c.o.d @@ -0,0 +1,156 @@ +CMakeFiles/client.dir/src/client/client_send.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/netinet/in.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_iovec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket_type.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types_64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_osockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/in.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/signal.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-generic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sig_atomic_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/siginfo_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigevent_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigevent-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigaction.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigcontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/stack_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/ucontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstksz.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/ss_flags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigthread.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signal_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/client.dir/src/client/scanner.c.o b/build3/CMakeFiles/client.dir/src/client/scanner.c.o new file mode 100644 index 0000000..ea272d3 Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/client/scanner.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/client/scanner.c.o.d b/build3/CMakeFiles/client.dir/src/client/scanner.c.o.d new file mode 100644 index 0000000..8998666 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/client/scanner.c.o.d @@ -0,0 +1,110 @@ +CMakeFiles/client.dir/src/client/scanner.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h diff --git a/build3/CMakeFiles/client.dir/src/shared/array_list.c.o b/build3/CMakeFiles/client.dir/src/shared/array_list.c.o new file mode 100644 index 0000000..872969e Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/array_list.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/array_list.c.o.d b/build3/CMakeFiles/client.dir/src/shared/array_list.c.o.d new file mode 100644 index 0000000..0a49f9d --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/array_list.c.o.d @@ -0,0 +1,71 @@ +CMakeFiles/client.dir/src/shared/array_list.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/client.dir/src/shared/chunk.c.o b/build3/CMakeFiles/client.dir/src/shared/chunk.c.o new file mode 100644 index 0000000..1177f6b Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/chunk.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/chunk.c.o.d b/build3/CMakeFiles/client.dir/src/shared/chunk.c.o.d new file mode 100644 index 0000000..3b988e3 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/chunk.c.o.d @@ -0,0 +1,87 @@ +CMakeFiles/client.dir/src/shared/chunk.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h diff --git a/build3/CMakeFiles/client.dir/src/shared/compression.c.o b/build3/CMakeFiles/client.dir/src/shared/compression.c.o new file mode 100644 index 0000000..482f299 Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/compression.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/compression.c.o.d b/build3/CMakeFiles/client.dir/src/shared/compression.c.o.d new file mode 100644 index 0000000..ecc45ce --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/compression.c.o.d @@ -0,0 +1,55 @@ +CMakeFiles/client.dir/src/shared/compression.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd.h \ + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd_errors.h diff --git a/build3/CMakeFiles/client.dir/src/shared/config.c.o b/build3/CMakeFiles/client.dir/src/shared/config.c.o new file mode 100644 index 0000000..145efbe Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/config.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/config.c.o.d b/build3/CMakeFiles/client.dir/src/shared/config.c.o.d new file mode 100644 index 0000000..0710aff --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/config.c.o.d @@ -0,0 +1,82 @@ +CMakeFiles/client.dir/src/shared/config.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/client.dir/src/shared/data.c.o b/build3/CMakeFiles/client.dir/src/shared/data.c.o new file mode 100644 index 0000000..35789a2 Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/data.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/data.c.o.d b/build3/CMakeFiles/client.dir/src/shared/data.c.o.d new file mode 100644 index 0000000..335a0fb --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/data.c.o.d @@ -0,0 +1,52 @@ +CMakeFiles/client.dir/src/shared/data.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h diff --git a/build3/CMakeFiles/client.dir/src/shared/delta.c.o b/build3/CMakeFiles/client.dir/src/shared/delta.c.o new file mode 100644 index 0000000..cd97e69 Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/delta.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/delta.c.o.d b/build3/CMakeFiles/client.dir/src/shared/delta.c.o.d new file mode 100644 index 0000000..a87ff44 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/delta.c.o.d @@ -0,0 +1,79 @@ +CMakeFiles/client.dir/src/shared/delta.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/../xxhash.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h diff --git a/build3/CMakeFiles/client.dir/src/shared/file.c.o.d b/build3/CMakeFiles/client.dir/src/shared/file.c.o.d new file mode 100644 index 0000000..6ed8ca2 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/file.c.o.d @@ -0,0 +1,117 @@ +CMakeFiles/client.dir/src/shared/file.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/fcntl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl-linux.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/libgen.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/sendfile.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h diff --git a/build3/CMakeFiles/client.dir/src/shared/log.c.o b/build3/CMakeFiles/client.dir/src/shared/log.c.o new file mode 100644 index 0000000..99474eb Binary files /dev/null and b/build3/CMakeFiles/client.dir/src/shared/log.c.o differ diff --git a/build3/CMakeFiles/client.dir/src/shared/log.c.o.d b/build3/CMakeFiles/client.dir/src/shared/log.c.o.d new file mode 100644 index 0000000..9527fe5 --- /dev/null +++ b/build3/CMakeFiles/client.dir/src/shared/log.c.o.d @@ -0,0 +1,45 @@ +CMakeFiles/client.dir/src/shared/log.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h diff --git a/build3/CMakeFiles/cmake.check_cache b/build3/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build3/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build3/CMakeFiles/progress.marks b/build3/CMakeFiles/progress.marks new file mode 100644 index 0000000..dde92dd --- /dev/null +++ b/build3/CMakeFiles/progress.marks @@ -0,0 +1 @@ +82 diff --git a/build3/CMakeFiles/server.dir/DependInfo.cmake b/build3/CMakeFiles/server.dir/DependInfo.cmake new file mode 100644 index 0000000..59fcc05 --- /dev/null +++ b/build3/CMakeFiles/server.dir/DependInfo.cmake @@ -0,0 +1,40 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/root/FastSyncProjects/FastSyncBuilder3/src/server/server.c" "CMakeFiles/server.dir/src/server/server.c.o" "gcc" "CMakeFiles/server.dir/src/server/server.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c" "CMakeFiles/server.dir/src/shared/array_list.c.o" "gcc" "CMakeFiles/server.dir/src/shared/array_list.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c" "CMakeFiles/server.dir/src/shared/chunk.c.o" "gcc" "CMakeFiles/server.dir/src/shared/chunk.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c" "CMakeFiles/server.dir/src/shared/compression.c.o" "gcc" "CMakeFiles/server.dir/src/shared/compression.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c" "CMakeFiles/server.dir/src/shared/config.c.o" "gcc" "CMakeFiles/server.dir/src/shared/config.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c" "CMakeFiles/server.dir/src/shared/data.c.o" "gcc" "CMakeFiles/server.dir/src/shared/data.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c" "CMakeFiles/server.dir/src/shared/delta.c.o" "gcc" "CMakeFiles/server.dir/src/shared/delta.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c" "CMakeFiles/server.dir/src/shared/file.c.o" "gcc" "CMakeFiles/server.dir/src/shared/file.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c" "CMakeFiles/server.dir/src/shared/log.c.o" "gcc" "CMakeFiles/server.dir/src/shared/log.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c" "CMakeFiles/server.dir/src/shared/metadata.c.o" "gcc" "CMakeFiles/server.dir/src/shared/metadata.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c" "CMakeFiles/server.dir/src/shared/multiprocessing.c.o" "gcc" "CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c" "CMakeFiles/server.dir/src/shared/protocol.c.o" "gcc" "CMakeFiles/server.dir/src/shared/protocol.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c" "CMakeFiles/server.dir/src/shared/queue.c.o" "gcc" "CMakeFiles/server.dir/src/shared/queue.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c" "CMakeFiles/server.dir/src/shared/transport_ssh.c.o" "gcc" "CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c" "CMakeFiles/server.dir/src/shared/transport_tcp.c.o" "gcc" "CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c" "CMakeFiles/server.dir/src/shared/transport_tls.c.o" "gcc" "CMakeFiles/server.dir/src/shared/transport_tls.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c" "CMakeFiles/server.dir/src/shared/utils.c.o" "gcc" "CMakeFiles/server.dir/src/shared/utils.c.o.d" + "" "server" "gcc" "CMakeFiles/server.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build3/CMakeFiles/server.dir/build.make b/build3/CMakeFiles/server.dir/build.make new file mode 100644 index 0000000..4664d13 --- /dev/null +++ b/build3/CMakeFiles/server.dir/build.make @@ -0,0 +1,374 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +# Include any dependencies generated for this target. +include CMakeFiles/server.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/server.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/server.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/server.dir/flags.make + +CMakeFiles/server.dir/codegen: +.PHONY : CMakeFiles/server.dir/codegen + +CMakeFiles/server.dir/src/server/server.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/server/server.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c +CMakeFiles/server.dir/src/server/server.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/server.dir/src/server/server.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/server/server.c.o -MF CMakeFiles/server.dir/src/server/server.c.o.d -o CMakeFiles/server.dir/src/server/server.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c + +CMakeFiles/server.dir/src/server/server.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/server/server.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c > CMakeFiles/server.dir/src/server/server.c.i + +CMakeFiles/server.dir/src/server/server.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/server/server.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c -o CMakeFiles/server.dir/src/server/server.c.s + +CMakeFiles/server.dir/src/shared/array_list.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/array_list.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c +CMakeFiles/server.dir/src/shared/array_list.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/server.dir/src/shared/array_list.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/array_list.c.o -MF CMakeFiles/server.dir/src/shared/array_list.c.o.d -o CMakeFiles/server.dir/src/shared/array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c + +CMakeFiles/server.dir/src/shared/array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/array_list.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c > CMakeFiles/server.dir/src/shared/array_list.c.i + +CMakeFiles/server.dir/src/shared/array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/array_list.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c -o CMakeFiles/server.dir/src/shared/array_list.c.s + +CMakeFiles/server.dir/src/shared/chunk.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/chunk.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c +CMakeFiles/server.dir/src/shared/chunk.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/server.dir/src/shared/chunk.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/chunk.c.o -MF CMakeFiles/server.dir/src/shared/chunk.c.o.d -o CMakeFiles/server.dir/src/shared/chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c + +CMakeFiles/server.dir/src/shared/chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/chunk.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c > CMakeFiles/server.dir/src/shared/chunk.c.i + +CMakeFiles/server.dir/src/shared/chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/chunk.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c -o CMakeFiles/server.dir/src/shared/chunk.c.s + +CMakeFiles/server.dir/src/shared/compression.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/compression.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c +CMakeFiles/server.dir/src/shared/compression.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/server.dir/src/shared/compression.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/compression.c.o -MF CMakeFiles/server.dir/src/shared/compression.c.o.d -o CMakeFiles/server.dir/src/shared/compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c + +CMakeFiles/server.dir/src/shared/compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/compression.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c > CMakeFiles/server.dir/src/shared/compression.c.i + +CMakeFiles/server.dir/src/shared/compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/compression.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c -o CMakeFiles/server.dir/src/shared/compression.c.s + +CMakeFiles/server.dir/src/shared/config.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/config.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c +CMakeFiles/server.dir/src/shared/config.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/server.dir/src/shared/config.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/config.c.o -MF CMakeFiles/server.dir/src/shared/config.c.o.d -o CMakeFiles/server.dir/src/shared/config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c + +CMakeFiles/server.dir/src/shared/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/config.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c > CMakeFiles/server.dir/src/shared/config.c.i + +CMakeFiles/server.dir/src/shared/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/config.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c -o CMakeFiles/server.dir/src/shared/config.c.s + +CMakeFiles/server.dir/src/shared/data.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/data.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c +CMakeFiles/server.dir/src/shared/data.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/server.dir/src/shared/data.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/data.c.o -MF CMakeFiles/server.dir/src/shared/data.c.o.d -o CMakeFiles/server.dir/src/shared/data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c + +CMakeFiles/server.dir/src/shared/data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/data.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c > CMakeFiles/server.dir/src/shared/data.c.i + +CMakeFiles/server.dir/src/shared/data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/data.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c -o CMakeFiles/server.dir/src/shared/data.c.s + +CMakeFiles/server.dir/src/shared/delta.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/delta.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c +CMakeFiles/server.dir/src/shared/delta.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/server.dir/src/shared/delta.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/delta.c.o -MF CMakeFiles/server.dir/src/shared/delta.c.o.d -o CMakeFiles/server.dir/src/shared/delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c + +CMakeFiles/server.dir/src/shared/delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/delta.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c > CMakeFiles/server.dir/src/shared/delta.c.i + +CMakeFiles/server.dir/src/shared/delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/delta.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c -o CMakeFiles/server.dir/src/shared/delta.c.s + +CMakeFiles/server.dir/src/shared/file.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/file.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c +CMakeFiles/server.dir/src/shared/file.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/server.dir/src/shared/file.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/file.c.o -MF CMakeFiles/server.dir/src/shared/file.c.o.d -o CMakeFiles/server.dir/src/shared/file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c + +CMakeFiles/server.dir/src/shared/file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/file.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c > CMakeFiles/server.dir/src/shared/file.c.i + +CMakeFiles/server.dir/src/shared/file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/file.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c -o CMakeFiles/server.dir/src/shared/file.c.s + +CMakeFiles/server.dir/src/shared/log.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/log.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c +CMakeFiles/server.dir/src/shared/log.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/server.dir/src/shared/log.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/log.c.o -MF CMakeFiles/server.dir/src/shared/log.c.o.d -o CMakeFiles/server.dir/src/shared/log.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c + +CMakeFiles/server.dir/src/shared/log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/log.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c > CMakeFiles/server.dir/src/shared/log.c.i + +CMakeFiles/server.dir/src/shared/log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/log.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c -o CMakeFiles/server.dir/src/shared/log.c.s + +CMakeFiles/server.dir/src/shared/metadata.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/metadata.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c +CMakeFiles/server.dir/src/shared/metadata.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/server.dir/src/shared/metadata.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/metadata.c.o -MF CMakeFiles/server.dir/src/shared/metadata.c.o.d -o CMakeFiles/server.dir/src/shared/metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c + +CMakeFiles/server.dir/src/shared/metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/metadata.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c > CMakeFiles/server.dir/src/shared/metadata.c.i + +CMakeFiles/server.dir/src/shared/metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/metadata.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c -o CMakeFiles/server.dir/src/shared/metadata.c.s + +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/server.dir/src/shared/multiprocessing.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/multiprocessing.c.o -MF CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d -o CMakeFiles/server.dir/src/shared/multiprocessing.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c + +CMakeFiles/server.dir/src/shared/multiprocessing.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/multiprocessing.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c > CMakeFiles/server.dir/src/shared/multiprocessing.c.i + +CMakeFiles/server.dir/src/shared/multiprocessing.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/multiprocessing.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c -o CMakeFiles/server.dir/src/shared/multiprocessing.c.s + +CMakeFiles/server.dir/src/shared/protocol.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/protocol.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c +CMakeFiles/server.dir/src/shared/protocol.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/server.dir/src/shared/protocol.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/protocol.c.o -MF CMakeFiles/server.dir/src/shared/protocol.c.o.d -o CMakeFiles/server.dir/src/shared/protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c + +CMakeFiles/server.dir/src/shared/protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/protocol.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c > CMakeFiles/server.dir/src/shared/protocol.c.i + +CMakeFiles/server.dir/src/shared/protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/protocol.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c -o CMakeFiles/server.dir/src/shared/protocol.c.s + +CMakeFiles/server.dir/src/shared/queue.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/queue.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c +CMakeFiles/server.dir/src/shared/queue.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/server.dir/src/shared/queue.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/queue.c.o -MF CMakeFiles/server.dir/src/shared/queue.c.o.d -o CMakeFiles/server.dir/src/shared/queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c + +CMakeFiles/server.dir/src/shared/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/queue.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c > CMakeFiles/server.dir/src/shared/queue.c.i + +CMakeFiles/server.dir/src/shared/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/queue.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c -o CMakeFiles/server.dir/src/shared/queue.c.s + +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/server.dir/src/shared/transport_ssh.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/transport_ssh.c.o -MF CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d -o CMakeFiles/server.dir/src/shared/transport_ssh.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c + +CMakeFiles/server.dir/src/shared/transport_ssh.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/transport_ssh.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c > CMakeFiles/server.dir/src/shared/transport_ssh.c.i + +CMakeFiles/server.dir/src/shared/transport_ssh.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/transport_ssh.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c -o CMakeFiles/server.dir/src/shared/transport_ssh.c.s + +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/server.dir/src/shared/transport_tcp.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/transport_tcp.c.o -MF CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d -o CMakeFiles/server.dir/src/shared/transport_tcp.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c + +CMakeFiles/server.dir/src/shared/transport_tcp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/transport_tcp.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c > CMakeFiles/server.dir/src/shared/transport_tcp.c.i + +CMakeFiles/server.dir/src/shared/transport_tcp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/transport_tcp.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c -o CMakeFiles/server.dir/src/shared/transport_tcp.c.s + +CMakeFiles/server.dir/src/shared/transport_tls.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/transport_tls.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c +CMakeFiles/server.dir/src/shared/transport_tls.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/server.dir/src/shared/transport_tls.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/transport_tls.c.o -MF CMakeFiles/server.dir/src/shared/transport_tls.c.o.d -o CMakeFiles/server.dir/src/shared/transport_tls.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c + +CMakeFiles/server.dir/src/shared/transport_tls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/transport_tls.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c > CMakeFiles/server.dir/src/shared/transport_tls.c.i + +CMakeFiles/server.dir/src/shared/transport_tls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/transport_tls.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c -o CMakeFiles/server.dir/src/shared/transport_tls.c.s + +CMakeFiles/server.dir/src/shared/utils.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/utils.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c +CMakeFiles/server.dir/src/shared/utils.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/server.dir/src/shared/utils.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/utils.c.o -MF CMakeFiles/server.dir/src/shared/utils.c.o.d -o CMakeFiles/server.dir/src/shared/utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c + +CMakeFiles/server.dir/src/shared/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/utils.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c > CMakeFiles/server.dir/src/shared/utils.c.i + +CMakeFiles/server.dir/src/shared/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/utils.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c -o CMakeFiles/server.dir/src/shared/utils.c.s + +# Object files for target server +server_OBJECTS = \ +"CMakeFiles/server.dir/src/server/server.c.o" \ +"CMakeFiles/server.dir/src/shared/array_list.c.o" \ +"CMakeFiles/server.dir/src/shared/chunk.c.o" \ +"CMakeFiles/server.dir/src/shared/compression.c.o" \ +"CMakeFiles/server.dir/src/shared/config.c.o" \ +"CMakeFiles/server.dir/src/shared/data.c.o" \ +"CMakeFiles/server.dir/src/shared/delta.c.o" \ +"CMakeFiles/server.dir/src/shared/file.c.o" \ +"CMakeFiles/server.dir/src/shared/log.c.o" \ +"CMakeFiles/server.dir/src/shared/metadata.c.o" \ +"CMakeFiles/server.dir/src/shared/multiprocessing.c.o" \ +"CMakeFiles/server.dir/src/shared/protocol.c.o" \ +"CMakeFiles/server.dir/src/shared/queue.c.o" \ +"CMakeFiles/server.dir/src/shared/transport_ssh.c.o" \ +"CMakeFiles/server.dir/src/shared/transport_tcp.c.o" \ +"CMakeFiles/server.dir/src/shared/transport_tls.c.o" \ +"CMakeFiles/server.dir/src/shared/utils.c.o" + +# External object files for target server +server_EXTERNAL_OBJECTS = + +server: CMakeFiles/server.dir/src/server/server.c.o +server: CMakeFiles/server.dir/src/shared/array_list.c.o +server: CMakeFiles/server.dir/src/shared/chunk.c.o +server: CMakeFiles/server.dir/src/shared/compression.c.o +server: CMakeFiles/server.dir/src/shared/config.c.o +server: CMakeFiles/server.dir/src/shared/data.c.o +server: CMakeFiles/server.dir/src/shared/delta.c.o +server: CMakeFiles/server.dir/src/shared/file.c.o +server: CMakeFiles/server.dir/src/shared/log.c.o +server: CMakeFiles/server.dir/src/shared/metadata.c.o +server: CMakeFiles/server.dir/src/shared/multiprocessing.c.o +server: CMakeFiles/server.dir/src/shared/protocol.c.o +server: CMakeFiles/server.dir/src/shared/queue.c.o +server: CMakeFiles/server.dir/src/shared/transport_ssh.c.o +server: CMakeFiles/server.dir/src/shared/transport_tcp.c.o +server: CMakeFiles/server.dir/src/shared/transport_tls.c.o +server: CMakeFiles/server.dir/src/shared/utils.c.o +server: CMakeFiles/server.dir/build.make +server: CMakeFiles/server.dir/compiler_depend.ts +server: /nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so +server: /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so +server: /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so +server: _deps/xxhash-build/libxxhash.a +server: CMakeFiles/server.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Linking C executable server" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/server.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/server.dir/build: server +.PHONY : CMakeFiles/server.dir/build + +CMakeFiles/server.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/server.dir/cmake_clean.cmake +.PHONY : CMakeFiles/server.dir/clean + +CMakeFiles/server.dir/depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/server.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/server.dir/depend + diff --git a/build3/CMakeFiles/server.dir/cmake_clean.cmake b/build3/CMakeFiles/server.dir/cmake_clean.cmake new file mode 100644 index 0000000..b64ef24 --- /dev/null +++ b/build3/CMakeFiles/server.dir/cmake_clean.cmake @@ -0,0 +1,44 @@ +file(REMOVE_RECURSE + "CMakeFiles/server.dir/link.d" + "CMakeFiles/server.dir/src/server/server.c.o" + "CMakeFiles/server.dir/src/server/server.c.o.d" + "CMakeFiles/server.dir/src/shared/array_list.c.o" + "CMakeFiles/server.dir/src/shared/array_list.c.o.d" + "CMakeFiles/server.dir/src/shared/chunk.c.o" + "CMakeFiles/server.dir/src/shared/chunk.c.o.d" + "CMakeFiles/server.dir/src/shared/compression.c.o" + "CMakeFiles/server.dir/src/shared/compression.c.o.d" + "CMakeFiles/server.dir/src/shared/config.c.o" + "CMakeFiles/server.dir/src/shared/config.c.o.d" + "CMakeFiles/server.dir/src/shared/data.c.o" + "CMakeFiles/server.dir/src/shared/data.c.o.d" + "CMakeFiles/server.dir/src/shared/delta.c.o" + "CMakeFiles/server.dir/src/shared/delta.c.o.d" + "CMakeFiles/server.dir/src/shared/file.c.o" + "CMakeFiles/server.dir/src/shared/file.c.o.d" + "CMakeFiles/server.dir/src/shared/log.c.o" + "CMakeFiles/server.dir/src/shared/log.c.o.d" + "CMakeFiles/server.dir/src/shared/metadata.c.o" + "CMakeFiles/server.dir/src/shared/metadata.c.o.d" + "CMakeFiles/server.dir/src/shared/multiprocessing.c.o" + "CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d" + "CMakeFiles/server.dir/src/shared/protocol.c.o" + "CMakeFiles/server.dir/src/shared/protocol.c.o.d" + "CMakeFiles/server.dir/src/shared/queue.c.o" + "CMakeFiles/server.dir/src/shared/queue.c.o.d" + "CMakeFiles/server.dir/src/shared/transport_ssh.c.o" + "CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d" + "CMakeFiles/server.dir/src/shared/transport_tcp.c.o" + "CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d" + "CMakeFiles/server.dir/src/shared/transport_tls.c.o" + "CMakeFiles/server.dir/src/shared/transport_tls.c.o.d" + "CMakeFiles/server.dir/src/shared/utils.c.o" + "CMakeFiles/server.dir/src/shared/utils.c.o.d" + "server" + "server.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/server.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build3/CMakeFiles/server.dir/compiler_depend.internal b/build3/CMakeFiles/server.dir/compiler_depend.internal new file mode 100644 index 0000000..2d9ca2a --- /dev/null +++ b/build3/CMakeFiles/server.dir/compiler_depend.internal @@ -0,0 +1,699 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +CMakeFiles/server.dir/src/server/server.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/bitsperlong.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/posix_types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/socket.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/sockios.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/bitsperlong.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types_64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/socket.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/sockios.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/in.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigaction.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigcontext.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigevent-consts.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-consts.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signal_ext.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-generic.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstack.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstksz.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigthread.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sockaddr.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket_type.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/ss_flags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigval_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sig_atomic_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigevent_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/siginfo_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigval_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/stack_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_iovec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_osockaddr.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_sigstack.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/posix_types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/stddef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/netinet/in.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/signal.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/socket.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/ucontext.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h + +CMakeFiles/server.dir/src/shared/array_list.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h + +CMakeFiles/server.dir/src/shared/chunk.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h + +CMakeFiles/server.dir/src/shared/compression.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd.h + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd_errors.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + +CMakeFiles/server.dir/src/shared/config.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h + +CMakeFiles/server.dir/src/shared/data.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + +CMakeFiles/server.dir/src/shared/delta.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + +CMakeFiles/server.dir/src/shared/file.c.o + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl-linux.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/fcntl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/libgen.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/sendfile.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h + diff --git a/build3/CMakeFiles/server.dir/compiler_depend.make b/build3/CMakeFiles/server.dir/compiler_depend.make new file mode 100644 index 0000000..02a5406 --- /dev/null +++ b/build3/CMakeFiles/server.dir/compiler_depend.make @@ -0,0 +1,1061 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +CMakeFiles/server.dir/src/server/server.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types_64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/in.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigaction.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigcontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigevent-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signal_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-generic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstksz.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigthread.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket_type.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/ss_flags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sig_atomic_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigevent_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/siginfo_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/stack_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_iovec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_osockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/netinet/in.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/signal.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/ucontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h + +CMakeFiles/server.dir/src/shared/array_list.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h + +CMakeFiles/server.dir/src/shared/chunk.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h + +CMakeFiles/server.dir/src/shared/compression.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd.h \ + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd_errors.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + +CMakeFiles/server.dir/src/shared/config.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h + +CMakeFiles/server.dir/src/shared/data.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + +CMakeFiles/server.dir/src/shared/delta.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h \ + _deps/xxhash-src/xxhash.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h + +CMakeFiles/server.dir/src/shared/file.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl-linux.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/fcntl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/libgen.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/sendfile.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h + + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/sendfile.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/libgen.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl-linux.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h: + +_deps/xxhash-src/xxhash.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c: + +/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd_errors.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_sigstack.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sockaddr.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-generic.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h: + +/nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-arch.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signal_ext.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-arch.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigcontext.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl2.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigthread.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/fcntl.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types_64.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/bitsperlong.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/sockios.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/socket.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/socket.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/posix_types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/bitsperlong.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstack.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/server/server.c: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-consts.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/in.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/ss_flags.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket_type.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigevent-consts.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/sockios.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket2.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigevent_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstksz.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/ucontext.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/siginfo_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigval_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/stack_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_iovec.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_osockaddr.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/posix_types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigaction.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/stddef.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/netinet/in.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigval_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/signal.h: + +/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sig_atomic_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/socket.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h: diff --git a/build3/CMakeFiles/server.dir/compiler_depend.ts b/build3/CMakeFiles/server.dir/compiler_depend.ts new file mode 100644 index 0000000..2d625f2 --- /dev/null +++ b/build3/CMakeFiles/server.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for server. diff --git a/build3/CMakeFiles/server.dir/depend.make b/build3/CMakeFiles/server.dir/depend.make new file mode 100644 index 0000000..519938d --- /dev/null +++ b/build3/CMakeFiles/server.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for server. +# This may be replaced when dependencies are built. diff --git a/build3/CMakeFiles/server.dir/flags.make b/build3/CMakeFiles/server.dir/flags.make new file mode 100644 index 0000000..2f1a4dc --- /dev/null +++ b/build3/CMakeFiles/server.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc +C_DEFINES = + +C_INCLUDES = -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 + diff --git a/build3/CMakeFiles/server.dir/link.txt b/build3/CMakeFiles/server.dir/link.txt new file mode 100644 index 0000000..eb7c132 --- /dev/null +++ b/build3/CMakeFiles/server.dir/link.txt @@ -0,0 +1 @@ +/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/server.dir/link.d CMakeFiles/server.dir/src/server/server.c.o CMakeFiles/server.dir/src/shared/array_list.c.o CMakeFiles/server.dir/src/shared/chunk.c.o CMakeFiles/server.dir/src/shared/compression.c.o CMakeFiles/server.dir/src/shared/config.c.o CMakeFiles/server.dir/src/shared/data.c.o CMakeFiles/server.dir/src/shared/delta.c.o CMakeFiles/server.dir/src/shared/file.c.o CMakeFiles/server.dir/src/shared/log.c.o CMakeFiles/server.dir/src/shared/metadata.c.o CMakeFiles/server.dir/src/shared/multiprocessing.c.o CMakeFiles/server.dir/src/shared/protocol.c.o CMakeFiles/server.dir/src/shared/queue.c.o CMakeFiles/server.dir/src/shared/transport_ssh.c.o CMakeFiles/server.dir/src/shared/transport_tcp.c.o CMakeFiles/server.dir/src/shared/transport_tls.c.o CMakeFiles/server.dir/src/shared/utils.c.o -o server /nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so _deps/xxhash-build/libxxhash.a diff --git a/build3/CMakeFiles/server.dir/progress.make b/build3/CMakeFiles/server.dir/progress.make new file mode 100644 index 0000000..83ee35c --- /dev/null +++ b/build3/CMakeFiles/server.dir/progress.make @@ -0,0 +1,19 @@ +CMAKE_PROGRESS_1 = 21 +CMAKE_PROGRESS_2 = 22 +CMAKE_PROGRESS_3 = 23 +CMAKE_PROGRESS_4 = 24 +CMAKE_PROGRESS_5 = 25 +CMAKE_PROGRESS_6 = 26 +CMAKE_PROGRESS_7 = 27 +CMAKE_PROGRESS_8 = 28 +CMAKE_PROGRESS_9 = 29 +CMAKE_PROGRESS_10 = 30 +CMAKE_PROGRESS_11 = 31 +CMAKE_PROGRESS_12 = 32 +CMAKE_PROGRESS_13 = 33 +CMAKE_PROGRESS_14 = 34 +CMAKE_PROGRESS_15 = 35 +CMAKE_PROGRESS_16 = 36 +CMAKE_PROGRESS_17 = 37 +CMAKE_PROGRESS_18 = 38 + diff --git a/build3/CMakeFiles/server.dir/src/server/server.c.o b/build3/CMakeFiles/server.dir/src/server/server.c.o new file mode 100644 index 0000000..e6cc532 Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/server/server.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/server/server.c.o.d b/build3/CMakeFiles/server.dir/src/server/server.c.o.d new file mode 100644 index 0000000..cbf28a4 --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/server/server.c.o.d @@ -0,0 +1,151 @@ +CMakeFiles/server.dir/src/server/server.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/netinet/in.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_iovec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket_type.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/socket.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/posix_types_64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/posix_types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/bitsperlong.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/sockios.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_osockaddr.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/socket2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/in.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/signal.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-generic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sig_atomic_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/siginfo_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigevent_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigevent-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigaction.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigcontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/stack_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/ucontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstksz.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/ss_flags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigthread.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signal_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/server.dir/src/shared/array_list.c.o b/build3/CMakeFiles/server.dir/src/shared/array_list.c.o new file mode 100644 index 0000000..872969e Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/shared/array_list.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/shared/array_list.c.o.d b/build3/CMakeFiles/server.dir/src/shared/array_list.c.o.d new file mode 100644 index 0000000..d279cba --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/array_list.c.o.d @@ -0,0 +1,71 @@ +CMakeFiles/server.dir/src/shared/array_list.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/server.dir/src/shared/chunk.c.o b/build3/CMakeFiles/server.dir/src/shared/chunk.c.o new file mode 100644 index 0000000..1177f6b Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/shared/chunk.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/shared/chunk.c.o.d b/build3/CMakeFiles/server.dir/src/shared/chunk.c.o.d new file mode 100644 index 0000000..41323e4 --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/chunk.c.o.d @@ -0,0 +1,87 @@ +CMakeFiles/server.dir/src/shared/chunk.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h diff --git a/build3/CMakeFiles/server.dir/src/shared/compression.c.o b/build3/CMakeFiles/server.dir/src/shared/compression.c.o new file mode 100644 index 0000000..482f299 Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/shared/compression.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/shared/compression.c.o.d b/build3/CMakeFiles/server.dir/src/shared/compression.c.o.d new file mode 100644 index 0000000..98ec5ad --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/compression.c.o.d @@ -0,0 +1,55 @@ +CMakeFiles/server.dir/src/shared/compression.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd.h \ + /nix/store/cbzpsvdi282yhw702d7s42lirqnr0i0g-zstd-1.5.7-dev/include/zstd_errors.h diff --git a/build3/CMakeFiles/server.dir/src/shared/config.c.o b/build3/CMakeFiles/server.dir/src/shared/config.c.o new file mode 100644 index 0000000..145efbe Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/shared/config.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/shared/config.c.o.d b/build3/CMakeFiles/server.dir/src/shared/config.c.o.d new file mode 100644 index 0000000..caea6b9 --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/config.c.o.d @@ -0,0 +1,82 @@ +CMakeFiles/server.dir/src/shared/config.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/CMakeFiles/server.dir/src/shared/data.c.o b/build3/CMakeFiles/server.dir/src/shared/data.c.o new file mode 100644 index 0000000..35789a2 Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/shared/data.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/shared/data.c.o.d b/build3/CMakeFiles/server.dir/src/shared/data.c.o.d new file mode 100644 index 0000000..a1ef7c8 --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/data.c.o.d @@ -0,0 +1,52 @@ +CMakeFiles/server.dir/src/shared/data.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h diff --git a/build3/CMakeFiles/server.dir/src/shared/delta.c.o b/build3/CMakeFiles/server.dir/src/shared/delta.c.o new file mode 100644 index 0000000..cd97e69 Binary files /dev/null and b/build3/CMakeFiles/server.dir/src/shared/delta.c.o differ diff --git a/build3/CMakeFiles/server.dir/src/shared/delta.c.o.d b/build3/CMakeFiles/server.dir/src/shared/delta.c.o.d new file mode 100644 index 0000000..148f1b6 --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/delta.c.o.d @@ -0,0 +1,79 @@ +CMakeFiles/server.dir/src/shared/delta.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/../xxhash.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h diff --git a/build3/CMakeFiles/server.dir/src/shared/file.c.o.d b/build3/CMakeFiles/server.dir/src/shared/file.c.o.d new file mode 100644 index 0000000..397c01d --- /dev/null +++ b/build3/CMakeFiles/server.dir/src/shared/file.c.o.d @@ -0,0 +1,117 @@ +CMakeFiles/server.dir/src/shared/file.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/dirent_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/fcntl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl-linux.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/fcntl2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/libgen.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/sendfile.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h diff --git a/build3/CMakeFiles/tests.dir/DependInfo.cmake b/build3/CMakeFiles/tests.dir/DependInfo.cmake new file mode 100644 index 0000000..3883c8b --- /dev/null +++ b/build3/CMakeFiles/tests.dir/DependInfo.cmake @@ -0,0 +1,57 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c" "CMakeFiles/tests.dir/src/client/scanner.c.o" "gcc" "CMakeFiles/tests.dir/src/client/scanner.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c" "CMakeFiles/tests.dir/src/shared/array_list.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/array_list.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c" "CMakeFiles/tests.dir/src/shared/chunk.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/chunk.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c" "CMakeFiles/tests.dir/src/shared/compression.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/compression.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c" "CMakeFiles/tests.dir/src/shared/config.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/config.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c" "CMakeFiles/tests.dir/src/shared/data.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/data.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c" "CMakeFiles/tests.dir/src/shared/delta.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/delta.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c" "CMakeFiles/tests.dir/src/shared/file.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/file.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c" "CMakeFiles/tests.dir/src/shared/log.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/log.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c" "CMakeFiles/tests.dir/src/shared/metadata.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/metadata.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c" "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c" "CMakeFiles/tests.dir/src/shared/protocol.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/protocol.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c" "CMakeFiles/tests.dir/src/shared/queue.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/queue.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c" "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c" "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c" "CMakeFiles/tests.dir/src/shared/transport_tls.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c" "CMakeFiles/tests.dir/src/shared/utils.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/utils.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/runner.c" "CMakeFiles/tests.dir/tests/runner.c.o" "gcc" "CMakeFiles/tests.dir/tests/runner.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c" "CMakeFiles/tests.dir/tests/test_array_list.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_array_list.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c" "CMakeFiles/tests.dir/tests/test_chunk.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_chunk.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c" "CMakeFiles/tests.dir/tests/test_compression.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_compression.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c" "CMakeFiles/tests.dir/tests/test_config.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_config.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c" "CMakeFiles/tests.dir/tests/test_data.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_data.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c" "CMakeFiles/tests.dir/tests/test_delta.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_delta.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c" "CMakeFiles/tests.dir/tests/test_file.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_file.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c" "CMakeFiles/tests.dir/tests/test_glob.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_glob.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c" "CMakeFiles/tests.dir/tests/test_metadata.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_metadata.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c" "CMakeFiles/tests.dir/tests/test_property.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_property.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c" "CMakeFiles/tests.dir/tests/test_protocol.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_protocol.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c" "CMakeFiles/tests.dir/tests/test_queue.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_queue.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c" "CMakeFiles/tests.dir/tests/test_robustness.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_robustness.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c" "CMakeFiles/tests.dir/tests/test_scanner.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_scanner.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c" "CMakeFiles/tests.dir/tests/test_shared_utils.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c" "CMakeFiles/tests.dir/tests/test_stress.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_stress.c.o.d" + "" "tests" "gcc" "CMakeFiles/tests.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build3/CMakeFiles/tests.dir/build.make b/build3/CMakeFiles/tests.dir/build.make new file mode 100644 index 0000000..9fb89df --- /dev/null +++ b/build3/CMakeFiles/tests.dir/build.make @@ -0,0 +1,646 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +# Include any dependencies generated for this target. +include CMakeFiles/tests.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/tests.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/tests.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/tests.dir/flags.make + +CMakeFiles/tests.dir/codegen: +.PHONY : CMakeFiles/tests.dir/codegen + +CMakeFiles/tests.dir/tests/runner.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/runner.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/runner.c +CMakeFiles/tests.dir/tests/runner.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/tests.dir/tests/runner.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/runner.c.o -MF CMakeFiles/tests.dir/tests/runner.c.o.d -o CMakeFiles/tests.dir/tests/runner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/runner.c + +CMakeFiles/tests.dir/tests/runner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/runner.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/runner.c > CMakeFiles/tests.dir/tests/runner.c.i + +CMakeFiles/tests.dir/tests/runner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/runner.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/runner.c -o CMakeFiles/tests.dir/tests/runner.c.s + +CMakeFiles/tests.dir/tests/test_array_list.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_array_list.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c +CMakeFiles/tests.dir/tests/test_array_list.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/tests.dir/tests/test_array_list.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_array_list.c.o -MF CMakeFiles/tests.dir/tests/test_array_list.c.o.d -o CMakeFiles/tests.dir/tests/test_array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c + +CMakeFiles/tests.dir/tests/test_array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_array_list.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c > CMakeFiles/tests.dir/tests/test_array_list.c.i + +CMakeFiles/tests.dir/tests/test_array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_array_list.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c -o CMakeFiles/tests.dir/tests/test_array_list.c.s + +CMakeFiles/tests.dir/tests/test_chunk.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_chunk.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c +CMakeFiles/tests.dir/tests/test_chunk.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/tests.dir/tests/test_chunk.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_chunk.c.o -MF CMakeFiles/tests.dir/tests/test_chunk.c.o.d -o CMakeFiles/tests.dir/tests/test_chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c + +CMakeFiles/tests.dir/tests/test_chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_chunk.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c > CMakeFiles/tests.dir/tests/test_chunk.c.i + +CMakeFiles/tests.dir/tests/test_chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_chunk.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c -o CMakeFiles/tests.dir/tests/test_chunk.c.s + +CMakeFiles/tests.dir/tests/test_compression.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_compression.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c +CMakeFiles/tests.dir/tests/test_compression.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/tests.dir/tests/test_compression.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_compression.c.o -MF CMakeFiles/tests.dir/tests/test_compression.c.o.d -o CMakeFiles/tests.dir/tests/test_compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c + +CMakeFiles/tests.dir/tests/test_compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_compression.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c > CMakeFiles/tests.dir/tests/test_compression.c.i + +CMakeFiles/tests.dir/tests/test_compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_compression.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c -o CMakeFiles/tests.dir/tests/test_compression.c.s + +CMakeFiles/tests.dir/tests/test_config.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_config.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c +CMakeFiles/tests.dir/tests/test_config.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/tests.dir/tests/test_config.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_config.c.o -MF CMakeFiles/tests.dir/tests/test_config.c.o.d -o CMakeFiles/tests.dir/tests/test_config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c + +CMakeFiles/tests.dir/tests/test_config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_config.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c > CMakeFiles/tests.dir/tests/test_config.c.i + +CMakeFiles/tests.dir/tests/test_config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_config.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c -o CMakeFiles/tests.dir/tests/test_config.c.s + +CMakeFiles/tests.dir/tests/test_data.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_data.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c +CMakeFiles/tests.dir/tests/test_data.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/tests.dir/tests/test_data.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_data.c.o -MF CMakeFiles/tests.dir/tests/test_data.c.o.d -o CMakeFiles/tests.dir/tests/test_data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c + +CMakeFiles/tests.dir/tests/test_data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_data.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c > CMakeFiles/tests.dir/tests/test_data.c.i + +CMakeFiles/tests.dir/tests/test_data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_data.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c -o CMakeFiles/tests.dir/tests/test_data.c.s + +CMakeFiles/tests.dir/tests/test_delta.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_delta.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c +CMakeFiles/tests.dir/tests/test_delta.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/tests.dir/tests/test_delta.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_delta.c.o -MF CMakeFiles/tests.dir/tests/test_delta.c.o.d -o CMakeFiles/tests.dir/tests/test_delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c + +CMakeFiles/tests.dir/tests/test_delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_delta.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c > CMakeFiles/tests.dir/tests/test_delta.c.i + +CMakeFiles/tests.dir/tests/test_delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_delta.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c -o CMakeFiles/tests.dir/tests/test_delta.c.s + +CMakeFiles/tests.dir/tests/test_file.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_file.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c +CMakeFiles/tests.dir/tests/test_file.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/tests.dir/tests/test_file.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_file.c.o -MF CMakeFiles/tests.dir/tests/test_file.c.o.d -o CMakeFiles/tests.dir/tests/test_file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c + +CMakeFiles/tests.dir/tests/test_file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_file.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c > CMakeFiles/tests.dir/tests/test_file.c.i + +CMakeFiles/tests.dir/tests/test_file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_file.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c -o CMakeFiles/tests.dir/tests/test_file.c.s + +CMakeFiles/tests.dir/tests/test_glob.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_glob.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c +CMakeFiles/tests.dir/tests/test_glob.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/tests.dir/tests/test_glob.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_glob.c.o -MF CMakeFiles/tests.dir/tests/test_glob.c.o.d -o CMakeFiles/tests.dir/tests/test_glob.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c + +CMakeFiles/tests.dir/tests/test_glob.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_glob.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c > CMakeFiles/tests.dir/tests/test_glob.c.i + +CMakeFiles/tests.dir/tests/test_glob.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_glob.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c -o CMakeFiles/tests.dir/tests/test_glob.c.s + +CMakeFiles/tests.dir/tests/test_metadata.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_metadata.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c +CMakeFiles/tests.dir/tests/test_metadata.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/tests.dir/tests/test_metadata.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_metadata.c.o -MF CMakeFiles/tests.dir/tests/test_metadata.c.o.d -o CMakeFiles/tests.dir/tests/test_metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c + +CMakeFiles/tests.dir/tests/test_metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_metadata.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c > CMakeFiles/tests.dir/tests/test_metadata.c.i + +CMakeFiles/tests.dir/tests/test_metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_metadata.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c -o CMakeFiles/tests.dir/tests/test_metadata.c.s + +CMakeFiles/tests.dir/tests/test_property.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_property.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c +CMakeFiles/tests.dir/tests/test_property.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/tests.dir/tests/test_property.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_property.c.o -MF CMakeFiles/tests.dir/tests/test_property.c.o.d -o CMakeFiles/tests.dir/tests/test_property.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c + +CMakeFiles/tests.dir/tests/test_property.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_property.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c > CMakeFiles/tests.dir/tests/test_property.c.i + +CMakeFiles/tests.dir/tests/test_property.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_property.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c -o CMakeFiles/tests.dir/tests/test_property.c.s + +CMakeFiles/tests.dir/tests/test_protocol.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_protocol.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c +CMakeFiles/tests.dir/tests/test_protocol.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/tests.dir/tests/test_protocol.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_protocol.c.o -MF CMakeFiles/tests.dir/tests/test_protocol.c.o.d -o CMakeFiles/tests.dir/tests/test_protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c + +CMakeFiles/tests.dir/tests/test_protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_protocol.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c > CMakeFiles/tests.dir/tests/test_protocol.c.i + +CMakeFiles/tests.dir/tests/test_protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_protocol.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c -o CMakeFiles/tests.dir/tests/test_protocol.c.s + +CMakeFiles/tests.dir/tests/test_queue.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_queue.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c +CMakeFiles/tests.dir/tests/test_queue.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/tests.dir/tests/test_queue.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_queue.c.o -MF CMakeFiles/tests.dir/tests/test_queue.c.o.d -o CMakeFiles/tests.dir/tests/test_queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c + +CMakeFiles/tests.dir/tests/test_queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_queue.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c > CMakeFiles/tests.dir/tests/test_queue.c.i + +CMakeFiles/tests.dir/tests/test_queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_queue.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c -o CMakeFiles/tests.dir/tests/test_queue.c.s + +CMakeFiles/tests.dir/tests/test_robustness.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_robustness.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c +CMakeFiles/tests.dir/tests/test_robustness.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/tests.dir/tests/test_robustness.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_robustness.c.o -MF CMakeFiles/tests.dir/tests/test_robustness.c.o.d -o CMakeFiles/tests.dir/tests/test_robustness.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c + +CMakeFiles/tests.dir/tests/test_robustness.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_robustness.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c > CMakeFiles/tests.dir/tests/test_robustness.c.i + +CMakeFiles/tests.dir/tests/test_robustness.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_robustness.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c -o CMakeFiles/tests.dir/tests/test_robustness.c.s + +CMakeFiles/tests.dir/tests/test_scanner.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_scanner.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c +CMakeFiles/tests.dir/tests/test_scanner.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/tests.dir/tests/test_scanner.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_scanner.c.o -MF CMakeFiles/tests.dir/tests/test_scanner.c.o.d -o CMakeFiles/tests.dir/tests/test_scanner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c + +CMakeFiles/tests.dir/tests/test_scanner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_scanner.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c > CMakeFiles/tests.dir/tests/test_scanner.c.i + +CMakeFiles/tests.dir/tests/test_scanner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_scanner.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c -o CMakeFiles/tests.dir/tests/test_scanner.c.s + +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/tests.dir/tests/test_shared_utils.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_shared_utils.c.o -MF CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d -o CMakeFiles/tests.dir/tests/test_shared_utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c + +CMakeFiles/tests.dir/tests/test_shared_utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_shared_utils.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c > CMakeFiles/tests.dir/tests/test_shared_utils.c.i + +CMakeFiles/tests.dir/tests/test_shared_utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_shared_utils.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c -o CMakeFiles/tests.dir/tests/test_shared_utils.c.s + +CMakeFiles/tests.dir/tests/test_stress.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_stress.c.o: /root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c +CMakeFiles/tests.dir/tests/test_stress.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/tests.dir/tests/test_stress.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_stress.c.o -MF CMakeFiles/tests.dir/tests/test_stress.c.o.d -o CMakeFiles/tests.dir/tests/test_stress.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c + +CMakeFiles/tests.dir/tests/test_stress.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_stress.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c > CMakeFiles/tests.dir/tests/test_stress.c.i + +CMakeFiles/tests.dir/tests/test_stress.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_stress.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c -o CMakeFiles/tests.dir/tests/test_stress.c.s + +CMakeFiles/tests.dir/src/shared/array_list.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/array_list.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c +CMakeFiles/tests.dir/src/shared/array_list.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/tests.dir/src/shared/array_list.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/array_list.c.o -MF CMakeFiles/tests.dir/src/shared/array_list.c.o.d -o CMakeFiles/tests.dir/src/shared/array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c + +CMakeFiles/tests.dir/src/shared/array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/array_list.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c > CMakeFiles/tests.dir/src/shared/array_list.c.i + +CMakeFiles/tests.dir/src/shared/array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/array_list.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c -o CMakeFiles/tests.dir/src/shared/array_list.c.s + +CMakeFiles/tests.dir/src/shared/chunk.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/chunk.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c +CMakeFiles/tests.dir/src/shared/chunk.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/tests.dir/src/shared/chunk.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/chunk.c.o -MF CMakeFiles/tests.dir/src/shared/chunk.c.o.d -o CMakeFiles/tests.dir/src/shared/chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c + +CMakeFiles/tests.dir/src/shared/chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/chunk.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c > CMakeFiles/tests.dir/src/shared/chunk.c.i + +CMakeFiles/tests.dir/src/shared/chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/chunk.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c -o CMakeFiles/tests.dir/src/shared/chunk.c.s + +CMakeFiles/tests.dir/src/shared/compression.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/compression.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c +CMakeFiles/tests.dir/src/shared/compression.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/tests.dir/src/shared/compression.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/compression.c.o -MF CMakeFiles/tests.dir/src/shared/compression.c.o.d -o CMakeFiles/tests.dir/src/shared/compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c + +CMakeFiles/tests.dir/src/shared/compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/compression.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c > CMakeFiles/tests.dir/src/shared/compression.c.i + +CMakeFiles/tests.dir/src/shared/compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/compression.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c -o CMakeFiles/tests.dir/src/shared/compression.c.s + +CMakeFiles/tests.dir/src/shared/config.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/config.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c +CMakeFiles/tests.dir/src/shared/config.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/tests.dir/src/shared/config.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/config.c.o -MF CMakeFiles/tests.dir/src/shared/config.c.o.d -o CMakeFiles/tests.dir/src/shared/config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c + +CMakeFiles/tests.dir/src/shared/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/config.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c > CMakeFiles/tests.dir/src/shared/config.c.i + +CMakeFiles/tests.dir/src/shared/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/config.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c -o CMakeFiles/tests.dir/src/shared/config.c.s + +CMakeFiles/tests.dir/src/shared/data.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/data.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c +CMakeFiles/tests.dir/src/shared/data.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/tests.dir/src/shared/data.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/data.c.o -MF CMakeFiles/tests.dir/src/shared/data.c.o.d -o CMakeFiles/tests.dir/src/shared/data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c + +CMakeFiles/tests.dir/src/shared/data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/data.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c > CMakeFiles/tests.dir/src/shared/data.c.i + +CMakeFiles/tests.dir/src/shared/data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/data.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c -o CMakeFiles/tests.dir/src/shared/data.c.s + +CMakeFiles/tests.dir/src/shared/delta.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/delta.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c +CMakeFiles/tests.dir/src/shared/delta.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/tests.dir/src/shared/delta.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/delta.c.o -MF CMakeFiles/tests.dir/src/shared/delta.c.o.d -o CMakeFiles/tests.dir/src/shared/delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c + +CMakeFiles/tests.dir/src/shared/delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/delta.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c > CMakeFiles/tests.dir/src/shared/delta.c.i + +CMakeFiles/tests.dir/src/shared/delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/delta.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c -o CMakeFiles/tests.dir/src/shared/delta.c.s + +CMakeFiles/tests.dir/src/shared/file.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/file.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c +CMakeFiles/tests.dir/src/shared/file.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/tests.dir/src/shared/file.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/file.c.o -MF CMakeFiles/tests.dir/src/shared/file.c.o.d -o CMakeFiles/tests.dir/src/shared/file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c + +CMakeFiles/tests.dir/src/shared/file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/file.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c > CMakeFiles/tests.dir/src/shared/file.c.i + +CMakeFiles/tests.dir/src/shared/file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/file.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c -o CMakeFiles/tests.dir/src/shared/file.c.s + +CMakeFiles/tests.dir/src/shared/log.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/log.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c +CMakeFiles/tests.dir/src/shared/log.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/tests.dir/src/shared/log.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/log.c.o -MF CMakeFiles/tests.dir/src/shared/log.c.o.d -o CMakeFiles/tests.dir/src/shared/log.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c + +CMakeFiles/tests.dir/src/shared/log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/log.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c > CMakeFiles/tests.dir/src/shared/log.c.i + +CMakeFiles/tests.dir/src/shared/log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/log.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c -o CMakeFiles/tests.dir/src/shared/log.c.s + +CMakeFiles/tests.dir/src/shared/metadata.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/metadata.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c +CMakeFiles/tests.dir/src/shared/metadata.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/tests.dir/src/shared/metadata.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/metadata.c.o -MF CMakeFiles/tests.dir/src/shared/metadata.c.o.d -o CMakeFiles/tests.dir/src/shared/metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c + +CMakeFiles/tests.dir/src/shared/metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/metadata.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c > CMakeFiles/tests.dir/src/shared/metadata.c.i + +CMakeFiles/tests.dir/src/shared/metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/metadata.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c -o CMakeFiles/tests.dir/src/shared/metadata.c.s + +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/multiprocessing.c.o -MF CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d -o CMakeFiles/tests.dir/src/shared/multiprocessing.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c + +CMakeFiles/tests.dir/src/shared/multiprocessing.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/multiprocessing.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c > CMakeFiles/tests.dir/src/shared/multiprocessing.c.i + +CMakeFiles/tests.dir/src/shared/multiprocessing.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/multiprocessing.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c -o CMakeFiles/tests.dir/src/shared/multiprocessing.c.s + +CMakeFiles/tests.dir/src/shared/protocol.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/protocol.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c +CMakeFiles/tests.dir/src/shared/protocol.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/tests.dir/src/shared/protocol.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/protocol.c.o -MF CMakeFiles/tests.dir/src/shared/protocol.c.o.d -o CMakeFiles/tests.dir/src/shared/protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c + +CMakeFiles/tests.dir/src/shared/protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/protocol.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c > CMakeFiles/tests.dir/src/shared/protocol.c.i + +CMakeFiles/tests.dir/src/shared/protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/protocol.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c -o CMakeFiles/tests.dir/src/shared/protocol.c.s + +CMakeFiles/tests.dir/src/shared/queue.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/queue.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c +CMakeFiles/tests.dir/src/shared/queue.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/tests.dir/src/shared/queue.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/queue.c.o -MF CMakeFiles/tests.dir/src/shared/queue.c.o.d -o CMakeFiles/tests.dir/src/shared/queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c + +CMakeFiles/tests.dir/src/shared/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/queue.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c > CMakeFiles/tests.dir/src/shared/queue.c.i + +CMakeFiles/tests.dir/src/shared/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/queue.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c -o CMakeFiles/tests.dir/src/shared/queue.c.s + +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/transport_ssh.c.o -MF CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d -o CMakeFiles/tests.dir/src/shared/transport_ssh.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c + +CMakeFiles/tests.dir/src/shared/transport_ssh.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/transport_ssh.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c > CMakeFiles/tests.dir/src/shared/transport_ssh.c.i + +CMakeFiles/tests.dir/src/shared/transport_ssh.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/transport_ssh.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c -o CMakeFiles/tests.dir/src/shared/transport_ssh.c.s + +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building C object CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/transport_tcp.c.o -MF CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d -o CMakeFiles/tests.dir/src/shared/transport_tcp.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c + +CMakeFiles/tests.dir/src/shared/transport_tcp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/transport_tcp.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c > CMakeFiles/tests.dir/src/shared/transport_tcp.c.i + +CMakeFiles/tests.dir/src/shared/transport_tcp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/transport_tcp.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c -o CMakeFiles/tests.dir/src/shared/transport_tcp.c.s + +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building C object CMakeFiles/tests.dir/src/shared/transport_tls.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/transport_tls.c.o -MF CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d -o CMakeFiles/tests.dir/src/shared/transport_tls.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c + +CMakeFiles/tests.dir/src/shared/transport_tls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/transport_tls.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c > CMakeFiles/tests.dir/src/shared/transport_tls.c.i + +CMakeFiles/tests.dir/src/shared/transport_tls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/transport_tls.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c -o CMakeFiles/tests.dir/src/shared/transport_tls.c.s + +CMakeFiles/tests.dir/src/shared/utils.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/utils.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c +CMakeFiles/tests.dir/src/shared/utils.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building C object CMakeFiles/tests.dir/src/shared/utils.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/utils.c.o -MF CMakeFiles/tests.dir/src/shared/utils.c.o.d -o CMakeFiles/tests.dir/src/shared/utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c + +CMakeFiles/tests.dir/src/shared/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/utils.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c > CMakeFiles/tests.dir/src/shared/utils.c.i + +CMakeFiles/tests.dir/src/shared/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/utils.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c -o CMakeFiles/tests.dir/src/shared/utils.c.s + +CMakeFiles/tests.dir/src/client/scanner.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/client/scanner.c.o: /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c +CMakeFiles/tests.dir/src/client/scanner.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building C object CMakeFiles/tests.dir/src/client/scanner.c.o" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/client/scanner.c.o -MF CMakeFiles/tests.dir/src/client/scanner.c.o.d -o CMakeFiles/tests.dir/src/client/scanner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c + +CMakeFiles/tests.dir/src/client/scanner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/client/scanner.c.i" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c > CMakeFiles/tests.dir/src/client/scanner.c.i + +CMakeFiles/tests.dir/src/client/scanner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/client/scanner.c.s" + /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c -o CMakeFiles/tests.dir/src/client/scanner.c.s + +# Object files for target tests +tests_OBJECTS = \ +"CMakeFiles/tests.dir/tests/runner.c.o" \ +"CMakeFiles/tests.dir/tests/test_array_list.c.o" \ +"CMakeFiles/tests.dir/tests/test_chunk.c.o" \ +"CMakeFiles/tests.dir/tests/test_compression.c.o" \ +"CMakeFiles/tests.dir/tests/test_config.c.o" \ +"CMakeFiles/tests.dir/tests/test_data.c.o" \ +"CMakeFiles/tests.dir/tests/test_delta.c.o" \ +"CMakeFiles/tests.dir/tests/test_file.c.o" \ +"CMakeFiles/tests.dir/tests/test_glob.c.o" \ +"CMakeFiles/tests.dir/tests/test_metadata.c.o" \ +"CMakeFiles/tests.dir/tests/test_property.c.o" \ +"CMakeFiles/tests.dir/tests/test_protocol.c.o" \ +"CMakeFiles/tests.dir/tests/test_queue.c.o" \ +"CMakeFiles/tests.dir/tests/test_robustness.c.o" \ +"CMakeFiles/tests.dir/tests/test_scanner.c.o" \ +"CMakeFiles/tests.dir/tests/test_shared_utils.c.o" \ +"CMakeFiles/tests.dir/tests/test_stress.c.o" \ +"CMakeFiles/tests.dir/src/shared/array_list.c.o" \ +"CMakeFiles/tests.dir/src/shared/chunk.c.o" \ +"CMakeFiles/tests.dir/src/shared/compression.c.o" \ +"CMakeFiles/tests.dir/src/shared/config.c.o" \ +"CMakeFiles/tests.dir/src/shared/data.c.o" \ +"CMakeFiles/tests.dir/src/shared/delta.c.o" \ +"CMakeFiles/tests.dir/src/shared/file.c.o" \ +"CMakeFiles/tests.dir/src/shared/log.c.o" \ +"CMakeFiles/tests.dir/src/shared/metadata.c.o" \ +"CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" \ +"CMakeFiles/tests.dir/src/shared/protocol.c.o" \ +"CMakeFiles/tests.dir/src/shared/queue.c.o" \ +"CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" \ +"CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" \ +"CMakeFiles/tests.dir/src/shared/transport_tls.c.o" \ +"CMakeFiles/tests.dir/src/shared/utils.c.o" \ +"CMakeFiles/tests.dir/src/client/scanner.c.o" + +# External object files for target tests +tests_EXTERNAL_OBJECTS = + +tests: CMakeFiles/tests.dir/tests/runner.c.o +tests: CMakeFiles/tests.dir/tests/test_array_list.c.o +tests: CMakeFiles/tests.dir/tests/test_chunk.c.o +tests: CMakeFiles/tests.dir/tests/test_compression.c.o +tests: CMakeFiles/tests.dir/tests/test_config.c.o +tests: CMakeFiles/tests.dir/tests/test_data.c.o +tests: CMakeFiles/tests.dir/tests/test_delta.c.o +tests: CMakeFiles/tests.dir/tests/test_file.c.o +tests: CMakeFiles/tests.dir/tests/test_glob.c.o +tests: CMakeFiles/tests.dir/tests/test_metadata.c.o +tests: CMakeFiles/tests.dir/tests/test_property.c.o +tests: CMakeFiles/tests.dir/tests/test_protocol.c.o +tests: CMakeFiles/tests.dir/tests/test_queue.c.o +tests: CMakeFiles/tests.dir/tests/test_robustness.c.o +tests: CMakeFiles/tests.dir/tests/test_scanner.c.o +tests: CMakeFiles/tests.dir/tests/test_shared_utils.c.o +tests: CMakeFiles/tests.dir/tests/test_stress.c.o +tests: CMakeFiles/tests.dir/src/shared/array_list.c.o +tests: CMakeFiles/tests.dir/src/shared/chunk.c.o +tests: CMakeFiles/tests.dir/src/shared/compression.c.o +tests: CMakeFiles/tests.dir/src/shared/config.c.o +tests: CMakeFiles/tests.dir/src/shared/data.c.o +tests: CMakeFiles/tests.dir/src/shared/delta.c.o +tests: CMakeFiles/tests.dir/src/shared/file.c.o +tests: CMakeFiles/tests.dir/src/shared/log.c.o +tests: CMakeFiles/tests.dir/src/shared/metadata.c.o +tests: CMakeFiles/tests.dir/src/shared/multiprocessing.c.o +tests: CMakeFiles/tests.dir/src/shared/protocol.c.o +tests: CMakeFiles/tests.dir/src/shared/queue.c.o +tests: CMakeFiles/tests.dir/src/shared/transport_ssh.c.o +tests: CMakeFiles/tests.dir/src/shared/transport_tcp.c.o +tests: CMakeFiles/tests.dir/src/shared/transport_tls.c.o +tests: CMakeFiles/tests.dir/src/shared/utils.c.o +tests: CMakeFiles/tests.dir/src/client/scanner.c.o +tests: CMakeFiles/tests.dir/build.make +tests: CMakeFiles/tests.dir/compiler_depend.ts +tests: /nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so +tests: /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so +tests: /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so +tests: _deps/xxhash-build/libxxhash.a +tests: CMakeFiles/tests.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Linking C executable tests" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/tests.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/tests.dir/build: tests +.PHONY : CMakeFiles/tests.dir/build + +CMakeFiles/tests.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/tests.dir/cmake_clean.cmake +.PHONY : CMakeFiles/tests.dir/clean + +CMakeFiles/tests.dir/depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles/tests.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/tests.dir/depend + diff --git a/build3/CMakeFiles/tests.dir/cmake_clean.cmake b/build3/CMakeFiles/tests.dir/cmake_clean.cmake new file mode 100644 index 0000000..8802f7a --- /dev/null +++ b/build3/CMakeFiles/tests.dir/cmake_clean.cmake @@ -0,0 +1,78 @@ +file(REMOVE_RECURSE + "CMakeFiles/tests.dir/link.d" + "CMakeFiles/tests.dir/src/client/scanner.c.o" + "CMakeFiles/tests.dir/src/client/scanner.c.o.d" + "CMakeFiles/tests.dir/src/shared/array_list.c.o" + "CMakeFiles/tests.dir/src/shared/array_list.c.o.d" + "CMakeFiles/tests.dir/src/shared/chunk.c.o" + "CMakeFiles/tests.dir/src/shared/chunk.c.o.d" + "CMakeFiles/tests.dir/src/shared/compression.c.o" + "CMakeFiles/tests.dir/src/shared/compression.c.o.d" + "CMakeFiles/tests.dir/src/shared/config.c.o" + "CMakeFiles/tests.dir/src/shared/config.c.o.d" + "CMakeFiles/tests.dir/src/shared/data.c.o" + "CMakeFiles/tests.dir/src/shared/data.c.o.d" + "CMakeFiles/tests.dir/src/shared/delta.c.o" + "CMakeFiles/tests.dir/src/shared/delta.c.o.d" + "CMakeFiles/tests.dir/src/shared/file.c.o" + "CMakeFiles/tests.dir/src/shared/file.c.o.d" + "CMakeFiles/tests.dir/src/shared/log.c.o" + "CMakeFiles/tests.dir/src/shared/log.c.o.d" + "CMakeFiles/tests.dir/src/shared/metadata.c.o" + "CMakeFiles/tests.dir/src/shared/metadata.c.o.d" + "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" + "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d" + "CMakeFiles/tests.dir/src/shared/protocol.c.o" + "CMakeFiles/tests.dir/src/shared/protocol.c.o.d" + "CMakeFiles/tests.dir/src/shared/queue.c.o" + "CMakeFiles/tests.dir/src/shared/queue.c.o.d" + "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" + "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d" + "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" + "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d" + "CMakeFiles/tests.dir/src/shared/transport_tls.c.o" + "CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d" + "CMakeFiles/tests.dir/src/shared/utils.c.o" + "CMakeFiles/tests.dir/src/shared/utils.c.o.d" + "CMakeFiles/tests.dir/tests/runner.c.o" + "CMakeFiles/tests.dir/tests/runner.c.o.d" + "CMakeFiles/tests.dir/tests/test_array_list.c.o" + "CMakeFiles/tests.dir/tests/test_array_list.c.o.d" + "CMakeFiles/tests.dir/tests/test_chunk.c.o" + "CMakeFiles/tests.dir/tests/test_chunk.c.o.d" + "CMakeFiles/tests.dir/tests/test_compression.c.o" + "CMakeFiles/tests.dir/tests/test_compression.c.o.d" + "CMakeFiles/tests.dir/tests/test_config.c.o" + "CMakeFiles/tests.dir/tests/test_config.c.o.d" + "CMakeFiles/tests.dir/tests/test_data.c.o" + "CMakeFiles/tests.dir/tests/test_data.c.o.d" + "CMakeFiles/tests.dir/tests/test_delta.c.o" + "CMakeFiles/tests.dir/tests/test_delta.c.o.d" + "CMakeFiles/tests.dir/tests/test_file.c.o" + "CMakeFiles/tests.dir/tests/test_file.c.o.d" + "CMakeFiles/tests.dir/tests/test_glob.c.o" + "CMakeFiles/tests.dir/tests/test_glob.c.o.d" + "CMakeFiles/tests.dir/tests/test_metadata.c.o" + "CMakeFiles/tests.dir/tests/test_metadata.c.o.d" + "CMakeFiles/tests.dir/tests/test_property.c.o" + "CMakeFiles/tests.dir/tests/test_property.c.o.d" + "CMakeFiles/tests.dir/tests/test_protocol.c.o" + "CMakeFiles/tests.dir/tests/test_protocol.c.o.d" + "CMakeFiles/tests.dir/tests/test_queue.c.o" + "CMakeFiles/tests.dir/tests/test_queue.c.o.d" + "CMakeFiles/tests.dir/tests/test_robustness.c.o" + "CMakeFiles/tests.dir/tests/test_robustness.c.o.d" + "CMakeFiles/tests.dir/tests/test_scanner.c.o" + "CMakeFiles/tests.dir/tests/test_scanner.c.o.d" + "CMakeFiles/tests.dir/tests/test_shared_utils.c.o" + "CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d" + "CMakeFiles/tests.dir/tests/test_stress.c.o" + "CMakeFiles/tests.dir/tests/test_stress.c.o.d" + "tests" + "tests.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build3/CMakeFiles/tests.dir/compiler_depend.make b/build3/CMakeFiles/tests.dir/compiler_depend.make new file mode 100644 index 0000000..ca49f87 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for tests. +# This may be replaced when dependencies are built. diff --git a/build3/CMakeFiles/tests.dir/compiler_depend.ts b/build3/CMakeFiles/tests.dir/compiler_depend.ts new file mode 100644 index 0000000..0f3f685 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for tests. diff --git a/build3/CMakeFiles/tests.dir/depend.make b/build3/CMakeFiles/tests.dir/depend.make new file mode 100644 index 0000000..e5fa0cd --- /dev/null +++ b/build3/CMakeFiles/tests.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for tests. +# This may be replaced when dependencies are built. diff --git a/build3/CMakeFiles/tests.dir/flags.make b/build3/CMakeFiles/tests.dir/flags.make new file mode 100644 index 0000000..5886533 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc +C_DEFINES = + +C_INCLUDES = -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 + diff --git a/build3/CMakeFiles/tests.dir/link.txt b/build3/CMakeFiles/tests.dir/link.txt new file mode 100644 index 0000000..2c0c5cc --- /dev/null +++ b/build3/CMakeFiles/tests.dir/link.txt @@ -0,0 +1 @@ +/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/tests.dir/link.d CMakeFiles/tests.dir/tests/runner.c.o CMakeFiles/tests.dir/tests/test_array_list.c.o CMakeFiles/tests.dir/tests/test_chunk.c.o CMakeFiles/tests.dir/tests/test_compression.c.o CMakeFiles/tests.dir/tests/test_config.c.o CMakeFiles/tests.dir/tests/test_data.c.o CMakeFiles/tests.dir/tests/test_delta.c.o CMakeFiles/tests.dir/tests/test_file.c.o CMakeFiles/tests.dir/tests/test_glob.c.o CMakeFiles/tests.dir/tests/test_metadata.c.o CMakeFiles/tests.dir/tests/test_property.c.o CMakeFiles/tests.dir/tests/test_protocol.c.o CMakeFiles/tests.dir/tests/test_queue.c.o CMakeFiles/tests.dir/tests/test_robustness.c.o CMakeFiles/tests.dir/tests/test_scanner.c.o CMakeFiles/tests.dir/tests/test_shared_utils.c.o CMakeFiles/tests.dir/tests/test_stress.c.o CMakeFiles/tests.dir/src/shared/array_list.c.o CMakeFiles/tests.dir/src/shared/chunk.c.o CMakeFiles/tests.dir/src/shared/compression.c.o CMakeFiles/tests.dir/src/shared/config.c.o CMakeFiles/tests.dir/src/shared/data.c.o CMakeFiles/tests.dir/src/shared/delta.c.o CMakeFiles/tests.dir/src/shared/file.c.o CMakeFiles/tests.dir/src/shared/log.c.o CMakeFiles/tests.dir/src/shared/metadata.c.o CMakeFiles/tests.dir/src/shared/multiprocessing.c.o CMakeFiles/tests.dir/src/shared/protocol.c.o CMakeFiles/tests.dir/src/shared/queue.c.o CMakeFiles/tests.dir/src/shared/transport_ssh.c.o CMakeFiles/tests.dir/src/shared/transport_tcp.c.o CMakeFiles/tests.dir/src/shared/transport_tls.c.o CMakeFiles/tests.dir/src/shared/utils.c.o CMakeFiles/tests.dir/src/client/scanner.c.o -o tests /nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/lib/libzstd.so /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libssl.so /nix/store/y18pnbvfarnilsmgayswvi1khaw9wbsc-openssl-3.6.2/lib/libcrypto.so _deps/xxhash-build/libxxhash.a diff --git a/build3/CMakeFiles/tests.dir/progress.make b/build3/CMakeFiles/tests.dir/progress.make new file mode 100644 index 0000000..f3178a9 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/progress.make @@ -0,0 +1,36 @@ +CMAKE_PROGRESS_1 = 39 +CMAKE_PROGRESS_2 = 40 +CMAKE_PROGRESS_3 = 41 +CMAKE_PROGRESS_4 = 42 +CMAKE_PROGRESS_5 = 43 +CMAKE_PROGRESS_6 = 44 +CMAKE_PROGRESS_7 = 45 +CMAKE_PROGRESS_8 = 46 +CMAKE_PROGRESS_9 = 47 +CMAKE_PROGRESS_10 = 48 +CMAKE_PROGRESS_11 = 49 +CMAKE_PROGRESS_12 = 50 +CMAKE_PROGRESS_13 = 51 +CMAKE_PROGRESS_14 = 52 +CMAKE_PROGRESS_15 = 53 +CMAKE_PROGRESS_16 = 54 +CMAKE_PROGRESS_17 = 55 +CMAKE_PROGRESS_18 = 56 +CMAKE_PROGRESS_19 = 57 +CMAKE_PROGRESS_20 = 58 +CMAKE_PROGRESS_21 = 59 +CMAKE_PROGRESS_22 = 60 +CMAKE_PROGRESS_23 = 61 +CMAKE_PROGRESS_24 = 62 +CMAKE_PROGRESS_25 = 63 +CMAKE_PROGRESS_26 = 64 +CMAKE_PROGRESS_27 = 65 +CMAKE_PROGRESS_28 = 66 +CMAKE_PROGRESS_29 = 67 +CMAKE_PROGRESS_30 = 68 +CMAKE_PROGRESS_31 = 69 +CMAKE_PROGRESS_32 = 70 +CMAKE_PROGRESS_33 = 71 +CMAKE_PROGRESS_34 = 72 +CMAKE_PROGRESS_35 = 73 + diff --git a/build3/CMakeFiles/tests.dir/tests/runner.c.o b/build3/CMakeFiles/tests.dir/tests/runner.c.o new file mode 100644 index 0000000..d8bc41d Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/runner.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/runner.c.o.d b/build3/CMakeFiles/tests.dir/tests/runner.c.o.d new file mode 100644 index 0000000..7041c25 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/runner.c.o.d @@ -0,0 +1,55 @@ +CMakeFiles/tests.dir/tests/runner.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/runner.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_property.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_array_list.c.o b/build3/CMakeFiles/tests.dir/tests/test_array_list.c.o new file mode 100644 index 0000000..9d829f7 Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/test_array_list.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/test_array_list.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_array_list.c.o.d new file mode 100644 index 0000000..cbaec30 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_array_list.c.o.d @@ -0,0 +1,73 @@ +CMakeFiles/tests.dir/tests/test_array_list.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_chunk.c.o b/build3/CMakeFiles/tests.dir/tests/test_chunk.c.o new file mode 100644 index 0000000..d373895 Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/test_chunk.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/test_chunk.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_chunk.c.o.d new file mode 100644 index 0000000..e036dc2 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_chunk.c.o.d @@ -0,0 +1,94 @@ +CMakeFiles/tests.dir/tests/test_chunk.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_compression.c.o b/build3/CMakeFiles/tests.dir/tests/test_compression.c.o new file mode 100644 index 0000000..83c6179 Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/test_compression.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/test_compression.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_compression.c.o.d new file mode 100644 index 0000000..81a1aab --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_compression.c.o.d @@ -0,0 +1,97 @@ +CMakeFiles/tests.dir/tests/test_compression.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_config.c.o b/build3/CMakeFiles/tests.dir/tests/test_config.c.o new file mode 100644 index 0000000..06a224a Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/test_config.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/test_config.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_config.c.o.d new file mode 100644 index 0000000..083a06e --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_config.c.o.d @@ -0,0 +1,94 @@ +CMakeFiles/tests.dir/tests/test_config.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/threads.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_data.c.o b/build3/CMakeFiles/tests.dir/tests/test_data.c.o new file mode 100644 index 0000000..2f3eda4 Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/test_data.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/test_data.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_data.c.o.d new file mode 100644 index 0000000..b31a0c7 --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_data.c.o.d @@ -0,0 +1,72 @@ +CMakeFiles/tests.dir/tests/test_data.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_delta.c.o b/build3/CMakeFiles/tests.dir/tests/test_delta.c.o new file mode 100644 index 0000000..095a744 Binary files /dev/null and b/build3/CMakeFiles/tests.dir/tests/test_delta.c.o differ diff --git a/build3/CMakeFiles/tests.dir/tests/test_delta.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_delta.c.o.d new file mode 100644 index 0000000..150b0cb --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_delta.c.o.d @@ -0,0 +1,78 @@ +CMakeFiles/tests.dir/tests/test_delta.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h diff --git a/build3/CMakeFiles/tests.dir/tests/test_file.c.o.d b/build3/CMakeFiles/tests.dir/tests/test_file.c.o.d new file mode 100644 index 0000000..71d774f --- /dev/null +++ b/build3/CMakeFiles/tests.dir/tests/test_file.c.o.d @@ -0,0 +1,119 @@ +CMakeFiles/tests.dir/tests/test_file.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdbool.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.h \ + /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.h \ + /root/FastSyncProjects/FastSyncBuilder3/tests/test_utils.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/cookie_io_functions_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/wait.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/signal.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-generic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signum-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sig_atomic_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/siginfo_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/siginfo-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigval_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigevent_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigevent-consts.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigaction.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigcontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/stack_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/ucontext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigstksz.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/ss_flags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_sigstack.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/sigthread.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/signal_ext.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/idtype_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h diff --git a/build3/CPackConfig.cmake b/build3/CPackConfig.cmake new file mode 100644 index 0000000..a427705 --- /dev/null +++ b/build3/CPackConfig.cmake @@ -0,0 +1,81 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_DEB "OFF") +set(CPACK_BINARY_FREEBSD "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_NSIS "OFF") +set(CPACK_BINARY_RPM "OFF") +set(CPACK_BINARY_STGZ "ON") +set(CPACK_BINARY_TBZ2 "OFF") +set(CPACK_BINARY_TGZ "ON") +set(CPACK_BINARY_TXZ "OFF") +set(CPACK_BINARY_TZ "ON") +set(CPACK_BUILD_SOURCE_DIRS "/root/FastSyncProjects/FastSyncBuilder3;/root/FastSyncProjects/FastSyncBuilder3/build3") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_GENERATOR "STGZ;TGZ;TZ") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALL_CMAKE_PROJECTS "/root/FastSyncProjects/FastSyncBuilder3/build3;FastFileTransfer;ALL;/") +set(CPACK_INSTALL_PREFIX "/usr/local") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objcopy") +set(CPACK_OBJDUMP_EXECUTABLE "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objdump") +set(CPACK_OUTPUT_CONFIG_FILE "/root/FastSyncProjects/FastSyncBuilder3/build3/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_PACKAGE_FILE_NAME "FastFileTransfer-0.8.3-Linux") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_NAME "FastFileTransfer") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.8.3") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "8") +set(CPACK_PACKAGE_VERSION_PATCH "3") +set(CPACK_READELF_EXECUTABLE "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/readelf") +set(CPACK_RESOURCE_FILE_LICENSE "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/root/FastSyncProjects/FastSyncBuilder3/build3/CPackSourceConfig.cmake") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/root/FastSyncProjects/FastSyncBuilder3/build3/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/build3/CPackSourceConfig.cmake b/build3/CPackSourceConfig.cmake new file mode 100644 index 0000000..47e238c --- /dev/null +++ b/build3/CPackSourceConfig.cmake @@ -0,0 +1,89 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_DEB "OFF") +set(CPACK_BINARY_FREEBSD "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_NSIS "OFF") +set(CPACK_BINARY_RPM "OFF") +set(CPACK_BINARY_STGZ "ON") +set(CPACK_BINARY_TBZ2 "OFF") +set(CPACK_BINARY_TGZ "ON") +set(CPACK_BINARY_TXZ "OFF") +set(CPACK_BINARY_TZ "ON") +set(CPACK_BUILD_SOURCE_DIRS "/root/FastSyncProjects/FastSyncBuilder3;/root/FastSyncProjects/FastSyncBuilder3/build3") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALLED_DIRECTORIES "/root/FastSyncProjects/FastSyncBuilder3;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/usr/local") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objcopy") +set(CPACK_OBJDUMP_EXECUTABLE "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objdump") +set(CPACK_OUTPUT_CONFIG_FILE "/root/FastSyncProjects/FastSyncBuilder3/build3/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_PACKAGE_FILE_NAME "FastFileTransfer-0.8.3-Source") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_NAME "FastFileTransfer") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.8.3") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "8") +set(CPACK_PACKAGE_VERSION_PATCH "3") +set(CPACK_READELF_EXECUTABLE "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/readelf") +set(CPACK_RESOURCE_FILE_LICENSE "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/root/FastSyncProjects/FastSyncBuilder3;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/root/FastSyncProjects/FastSyncBuilder3/build3/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "FastFileTransfer-0.8.3-Source") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/root/FastSyncProjects/FastSyncBuilder3/build3/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/build3/CTestTestfile.cmake b/build3/CTestTestfile.cmake new file mode 100644 index 0000000..b5dec63 --- /dev/null +++ b/build3/CTestTestfile.cmake @@ -0,0 +1,9 @@ +# CMake generated Testfile for +# Source directory: /root/FastSyncProjects/FastSyncBuilder3 +# Build directory: /root/FastSyncProjects/FastSyncBuilder3/build3 +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test([=[unit_all]=] "/root/FastSyncProjects/FastSyncBuilder3/build3/tests") +set_tests_properties([=[unit_all]=] PROPERTIES _BACKTRACE_TRIPLES "/root/FastSyncProjects/FastSyncBuilder3/CMakeLists.txt;85;add_test;/root/FastSyncProjects/FastSyncBuilder3/CMakeLists.txt;0;") +subdirs("_deps/xxhash-build") diff --git a/build3/Makefile b/build3/Makefile new file mode 100644 index 0000000..090fc33 --- /dev/null +++ b/build3/Makefile @@ -0,0 +1,1341 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cpack --config ./CPackSourceConfig.cmake /root/FastSyncProjects/FastSyncBuilder3/build3/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles /root/FastSyncProjects/FastSyncBuilder3/build3//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named server + +# Build rule for target. +server: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 server +.PHONY : server + +# fast build rule for target. +server/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/build +.PHONY : server/fast + +#============================================================================= +# Target rules for targets named client + +# Build rule for target. +client: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 client +.PHONY : client + +# fast build rule for target. +client/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/build +.PHONY : client/fast + +#============================================================================= +# Target rules for targets named tests + +# Build rule for target. +tests: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests +.PHONY : tests + +# fast build rule for target. +tests/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build +.PHONY : tests/fast + +#============================================================================= +# Target rules for targets named xxhash + +# Build rule for target. +xxhash: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 xxhash +.PHONY : xxhash + +# fast build rule for target. +xxhash/fast: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/build +.PHONY : xxhash/fast + +#============================================================================= +# Target rules for targets named xxhsum + +# Build rule for target. +xxhsum: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 xxhsum +.PHONY : xxhsum + +# fast build rule for target. +xxhsum/fast: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/build +.PHONY : xxhsum/fast + +src/client/client_cli.o: src/client/client_cli.c.o +.PHONY : src/client/client_cli.o + +# target to build an object file +src/client/client_cli.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_cli.c.o +.PHONY : src/client/client_cli.c.o + +src/client/client_cli.i: src/client/client_cli.c.i +.PHONY : src/client/client_cli.i + +# target to preprocess a source file +src/client/client_cli.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_cli.c.i +.PHONY : src/client/client_cli.c.i + +src/client/client_cli.s: src/client/client_cli.c.s +.PHONY : src/client/client_cli.s + +# target to generate assembly for a file +src/client/client_cli.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_cli.c.s +.PHONY : src/client/client_cli.c.s + +src/client/client_send.o: src/client/client_send.c.o +.PHONY : src/client/client_send.o + +# target to build an object file +src/client/client_send.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_send.c.o +.PHONY : src/client/client_send.c.o + +src/client/client_send.i: src/client/client_send.c.i +.PHONY : src/client/client_send.i + +# target to preprocess a source file +src/client/client_send.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_send.c.i +.PHONY : src/client/client_send.c.i + +src/client/client_send.s: src/client/client_send.c.s +.PHONY : src/client/client_send.s + +# target to generate assembly for a file +src/client/client_send.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_send.c.s +.PHONY : src/client/client_send.c.s + +src/client/scanner.o: src/client/scanner.c.o +.PHONY : src/client/scanner.o + +# target to build an object file +src/client/scanner.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/scanner.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/client/scanner.c.o +.PHONY : src/client/scanner.c.o + +src/client/scanner.i: src/client/scanner.c.i +.PHONY : src/client/scanner.i + +# target to preprocess a source file +src/client/scanner.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/scanner.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/client/scanner.c.i +.PHONY : src/client/scanner.c.i + +src/client/scanner.s: src/client/scanner.c.s +.PHONY : src/client/scanner.s + +# target to generate assembly for a file +src/client/scanner.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/scanner.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/client/scanner.c.s +.PHONY : src/client/scanner.c.s + +src/server/server.o: src/server/server.c.o +.PHONY : src/server/server.o + +# target to build an object file +src/server/server.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/server/server.c.o +.PHONY : src/server/server.c.o + +src/server/server.i: src/server/server.c.i +.PHONY : src/server/server.i + +# target to preprocess a source file +src/server/server.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/server/server.c.i +.PHONY : src/server/server.c.i + +src/server/server.s: src/server/server.c.s +.PHONY : src/server/server.s + +# target to generate assembly for a file +src/server/server.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/server/server.c.s +.PHONY : src/server/server.c.s + +src/shared/array_list.o: src/shared/array_list.c.o +.PHONY : src/shared/array_list.o + +# target to build an object file +src/shared/array_list.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/array_list.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/array_list.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/array_list.c.o +.PHONY : src/shared/array_list.c.o + +src/shared/array_list.i: src/shared/array_list.c.i +.PHONY : src/shared/array_list.i + +# target to preprocess a source file +src/shared/array_list.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/array_list.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/array_list.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/array_list.c.i +.PHONY : src/shared/array_list.c.i + +src/shared/array_list.s: src/shared/array_list.c.s +.PHONY : src/shared/array_list.s + +# target to generate assembly for a file +src/shared/array_list.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/array_list.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/array_list.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/array_list.c.s +.PHONY : src/shared/array_list.c.s + +src/shared/chunk.o: src/shared/chunk.c.o +.PHONY : src/shared/chunk.o + +# target to build an object file +src/shared/chunk.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/chunk.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/chunk.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/chunk.c.o +.PHONY : src/shared/chunk.c.o + +src/shared/chunk.i: src/shared/chunk.c.i +.PHONY : src/shared/chunk.i + +# target to preprocess a source file +src/shared/chunk.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/chunk.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/chunk.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/chunk.c.i +.PHONY : src/shared/chunk.c.i + +src/shared/chunk.s: src/shared/chunk.c.s +.PHONY : src/shared/chunk.s + +# target to generate assembly for a file +src/shared/chunk.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/chunk.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/chunk.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/chunk.c.s +.PHONY : src/shared/chunk.c.s + +src/shared/compression.o: src/shared/compression.c.o +.PHONY : src/shared/compression.o + +# target to build an object file +src/shared/compression.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/compression.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/compression.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/compression.c.o +.PHONY : src/shared/compression.c.o + +src/shared/compression.i: src/shared/compression.c.i +.PHONY : src/shared/compression.i + +# target to preprocess a source file +src/shared/compression.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/compression.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/compression.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/compression.c.i +.PHONY : src/shared/compression.c.i + +src/shared/compression.s: src/shared/compression.c.s +.PHONY : src/shared/compression.s + +# target to generate assembly for a file +src/shared/compression.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/compression.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/compression.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/compression.c.s +.PHONY : src/shared/compression.c.s + +src/shared/config.o: src/shared/config.c.o +.PHONY : src/shared/config.o + +# target to build an object file +src/shared/config.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/config.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/config.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/config.c.o +.PHONY : src/shared/config.c.o + +src/shared/config.i: src/shared/config.c.i +.PHONY : src/shared/config.i + +# target to preprocess a source file +src/shared/config.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/config.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/config.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/config.c.i +.PHONY : src/shared/config.c.i + +src/shared/config.s: src/shared/config.c.s +.PHONY : src/shared/config.s + +# target to generate assembly for a file +src/shared/config.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/config.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/config.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/config.c.s +.PHONY : src/shared/config.c.s + +src/shared/data.o: src/shared/data.c.o +.PHONY : src/shared/data.o + +# target to build an object file +src/shared/data.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/data.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/data.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/data.c.o +.PHONY : src/shared/data.c.o + +src/shared/data.i: src/shared/data.c.i +.PHONY : src/shared/data.i + +# target to preprocess a source file +src/shared/data.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/data.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/data.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/data.c.i +.PHONY : src/shared/data.c.i + +src/shared/data.s: src/shared/data.c.s +.PHONY : src/shared/data.s + +# target to generate assembly for a file +src/shared/data.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/data.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/data.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/data.c.s +.PHONY : src/shared/data.c.s + +src/shared/delta.o: src/shared/delta.c.o +.PHONY : src/shared/delta.o + +# target to build an object file +src/shared/delta.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/delta.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/delta.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/delta.c.o +.PHONY : src/shared/delta.c.o + +src/shared/delta.i: src/shared/delta.c.i +.PHONY : src/shared/delta.i + +# target to preprocess a source file +src/shared/delta.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/delta.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/delta.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/delta.c.i +.PHONY : src/shared/delta.c.i + +src/shared/delta.s: src/shared/delta.c.s +.PHONY : src/shared/delta.s + +# target to generate assembly for a file +src/shared/delta.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/delta.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/delta.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/delta.c.s +.PHONY : src/shared/delta.c.s + +src/shared/file.o: src/shared/file.c.o +.PHONY : src/shared/file.o + +# target to build an object file +src/shared/file.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/file.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/file.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/file.c.o +.PHONY : src/shared/file.c.o + +src/shared/file.i: src/shared/file.c.i +.PHONY : src/shared/file.i + +# target to preprocess a source file +src/shared/file.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/file.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/file.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/file.c.i +.PHONY : src/shared/file.c.i + +src/shared/file.s: src/shared/file.c.s +.PHONY : src/shared/file.s + +# target to generate assembly for a file +src/shared/file.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/file.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/file.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/file.c.s +.PHONY : src/shared/file.c.s + +src/shared/log.o: src/shared/log.c.o +.PHONY : src/shared/log.o + +# target to build an object file +src/shared/log.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/log.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/log.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/log.c.o +.PHONY : src/shared/log.c.o + +src/shared/log.i: src/shared/log.c.i +.PHONY : src/shared/log.i + +# target to preprocess a source file +src/shared/log.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/log.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/log.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/log.c.i +.PHONY : src/shared/log.c.i + +src/shared/log.s: src/shared/log.c.s +.PHONY : src/shared/log.s + +# target to generate assembly for a file +src/shared/log.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/log.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/log.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/log.c.s +.PHONY : src/shared/log.c.s + +src/shared/metadata.o: src/shared/metadata.c.o +.PHONY : src/shared/metadata.o + +# target to build an object file +src/shared/metadata.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/metadata.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/metadata.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/metadata.c.o +.PHONY : src/shared/metadata.c.o + +src/shared/metadata.i: src/shared/metadata.c.i +.PHONY : src/shared/metadata.i + +# target to preprocess a source file +src/shared/metadata.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/metadata.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/metadata.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/metadata.c.i +.PHONY : src/shared/metadata.c.i + +src/shared/metadata.s: src/shared/metadata.c.s +.PHONY : src/shared/metadata.s + +# target to generate assembly for a file +src/shared/metadata.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/metadata.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/metadata.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/metadata.c.s +.PHONY : src/shared/metadata.c.s + +src/shared/multiprocessing.o: src/shared/multiprocessing.c.o +.PHONY : src/shared/multiprocessing.o + +# target to build an object file +src/shared/multiprocessing.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/multiprocessing.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/multiprocessing.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/multiprocessing.c.o +.PHONY : src/shared/multiprocessing.c.o + +src/shared/multiprocessing.i: src/shared/multiprocessing.c.i +.PHONY : src/shared/multiprocessing.i + +# target to preprocess a source file +src/shared/multiprocessing.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/multiprocessing.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/multiprocessing.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/multiprocessing.c.i +.PHONY : src/shared/multiprocessing.c.i + +src/shared/multiprocessing.s: src/shared/multiprocessing.c.s +.PHONY : src/shared/multiprocessing.s + +# target to generate assembly for a file +src/shared/multiprocessing.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/multiprocessing.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/multiprocessing.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/multiprocessing.c.s +.PHONY : src/shared/multiprocessing.c.s + +src/shared/protocol.o: src/shared/protocol.c.o +.PHONY : src/shared/protocol.o + +# target to build an object file +src/shared/protocol.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/protocol.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/protocol.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/protocol.c.o +.PHONY : src/shared/protocol.c.o + +src/shared/protocol.i: src/shared/protocol.c.i +.PHONY : src/shared/protocol.i + +# target to preprocess a source file +src/shared/protocol.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/protocol.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/protocol.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/protocol.c.i +.PHONY : src/shared/protocol.c.i + +src/shared/protocol.s: src/shared/protocol.c.s +.PHONY : src/shared/protocol.s + +# target to generate assembly for a file +src/shared/protocol.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/protocol.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/protocol.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/protocol.c.s +.PHONY : src/shared/protocol.c.s + +src/shared/queue.o: src/shared/queue.c.o +.PHONY : src/shared/queue.o + +# target to build an object file +src/shared/queue.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/queue.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/queue.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/queue.c.o +.PHONY : src/shared/queue.c.o + +src/shared/queue.i: src/shared/queue.c.i +.PHONY : src/shared/queue.i + +# target to preprocess a source file +src/shared/queue.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/queue.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/queue.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/queue.c.i +.PHONY : src/shared/queue.c.i + +src/shared/queue.s: src/shared/queue.c.s +.PHONY : src/shared/queue.s + +# target to generate assembly for a file +src/shared/queue.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/queue.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/queue.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/queue.c.s +.PHONY : src/shared/queue.c.s + +src/shared/transport_ssh.o: src/shared/transport_ssh.c.o +.PHONY : src/shared/transport_ssh.o + +# target to build an object file +src/shared/transport_ssh.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_ssh.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_ssh.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_ssh.c.o +.PHONY : src/shared/transport_ssh.c.o + +src/shared/transport_ssh.i: src/shared/transport_ssh.c.i +.PHONY : src/shared/transport_ssh.i + +# target to preprocess a source file +src/shared/transport_ssh.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_ssh.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_ssh.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_ssh.c.i +.PHONY : src/shared/transport_ssh.c.i + +src/shared/transport_ssh.s: src/shared/transport_ssh.c.s +.PHONY : src/shared/transport_ssh.s + +# target to generate assembly for a file +src/shared/transport_ssh.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_ssh.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_ssh.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_ssh.c.s +.PHONY : src/shared/transport_ssh.c.s + +src/shared/transport_tcp.o: src/shared/transport_tcp.c.o +.PHONY : src/shared/transport_tcp.o + +# target to build an object file +src/shared/transport_tcp.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tcp.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tcp.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tcp.c.o +.PHONY : src/shared/transport_tcp.c.o + +src/shared/transport_tcp.i: src/shared/transport_tcp.c.i +.PHONY : src/shared/transport_tcp.i + +# target to preprocess a source file +src/shared/transport_tcp.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tcp.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tcp.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tcp.c.i +.PHONY : src/shared/transport_tcp.c.i + +src/shared/transport_tcp.s: src/shared/transport_tcp.c.s +.PHONY : src/shared/transport_tcp.s + +# target to generate assembly for a file +src/shared/transport_tcp.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tcp.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tcp.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tcp.c.s +.PHONY : src/shared/transport_tcp.c.s + +src/shared/transport_tls.o: src/shared/transport_tls.c.o +.PHONY : src/shared/transport_tls.o + +# target to build an object file +src/shared/transport_tls.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tls.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tls.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tls.c.o +.PHONY : src/shared/transport_tls.c.o + +src/shared/transport_tls.i: src/shared/transport_tls.c.i +.PHONY : src/shared/transport_tls.i + +# target to preprocess a source file +src/shared/transport_tls.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tls.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tls.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tls.c.i +.PHONY : src/shared/transport_tls.c.i + +src/shared/transport_tls.s: src/shared/transport_tls.c.s +.PHONY : src/shared/transport_tls.s + +# target to generate assembly for a file +src/shared/transport_tls.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tls.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tls.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tls.c.s +.PHONY : src/shared/transport_tls.c.s + +src/shared/utils.o: src/shared/utils.c.o +.PHONY : src/shared/utils.o + +# target to build an object file +src/shared/utils.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/utils.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/utils.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/utils.c.o +.PHONY : src/shared/utils.c.o + +src/shared/utils.i: src/shared/utils.c.i +.PHONY : src/shared/utils.i + +# target to preprocess a source file +src/shared/utils.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/utils.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/utils.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/utils.c.i +.PHONY : src/shared/utils.c.i + +src/shared/utils.s: src/shared/utils.c.s +.PHONY : src/shared/utils.s + +# target to generate assembly for a file +src/shared/utils.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/utils.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/utils.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/utils.c.s +.PHONY : src/shared/utils.c.s + +tests/runner.o: tests/runner.c.o +.PHONY : tests/runner.o + +# target to build an object file +tests/runner.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/runner.c.o +.PHONY : tests/runner.c.o + +tests/runner.i: tests/runner.c.i +.PHONY : tests/runner.i + +# target to preprocess a source file +tests/runner.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/runner.c.i +.PHONY : tests/runner.c.i + +tests/runner.s: tests/runner.c.s +.PHONY : tests/runner.s + +# target to generate assembly for a file +tests/runner.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/runner.c.s +.PHONY : tests/runner.c.s + +tests/test_array_list.o: tests/test_array_list.c.o +.PHONY : tests/test_array_list.o + +# target to build an object file +tests/test_array_list.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_array_list.c.o +.PHONY : tests/test_array_list.c.o + +tests/test_array_list.i: tests/test_array_list.c.i +.PHONY : tests/test_array_list.i + +# target to preprocess a source file +tests/test_array_list.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_array_list.c.i +.PHONY : tests/test_array_list.c.i + +tests/test_array_list.s: tests/test_array_list.c.s +.PHONY : tests/test_array_list.s + +# target to generate assembly for a file +tests/test_array_list.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_array_list.c.s +.PHONY : tests/test_array_list.c.s + +tests/test_chunk.o: tests/test_chunk.c.o +.PHONY : tests/test_chunk.o + +# target to build an object file +tests/test_chunk.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_chunk.c.o +.PHONY : tests/test_chunk.c.o + +tests/test_chunk.i: tests/test_chunk.c.i +.PHONY : tests/test_chunk.i + +# target to preprocess a source file +tests/test_chunk.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_chunk.c.i +.PHONY : tests/test_chunk.c.i + +tests/test_chunk.s: tests/test_chunk.c.s +.PHONY : tests/test_chunk.s + +# target to generate assembly for a file +tests/test_chunk.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_chunk.c.s +.PHONY : tests/test_chunk.c.s + +tests/test_compression.o: tests/test_compression.c.o +.PHONY : tests/test_compression.o + +# target to build an object file +tests/test_compression.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_compression.c.o +.PHONY : tests/test_compression.c.o + +tests/test_compression.i: tests/test_compression.c.i +.PHONY : tests/test_compression.i + +# target to preprocess a source file +tests/test_compression.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_compression.c.i +.PHONY : tests/test_compression.c.i + +tests/test_compression.s: tests/test_compression.c.s +.PHONY : tests/test_compression.s + +# target to generate assembly for a file +tests/test_compression.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_compression.c.s +.PHONY : tests/test_compression.c.s + +tests/test_config.o: tests/test_config.c.o +.PHONY : tests/test_config.o + +# target to build an object file +tests/test_config.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_config.c.o +.PHONY : tests/test_config.c.o + +tests/test_config.i: tests/test_config.c.i +.PHONY : tests/test_config.i + +# target to preprocess a source file +tests/test_config.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_config.c.i +.PHONY : tests/test_config.c.i + +tests/test_config.s: tests/test_config.c.s +.PHONY : tests/test_config.s + +# target to generate assembly for a file +tests/test_config.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_config.c.s +.PHONY : tests/test_config.c.s + +tests/test_data.o: tests/test_data.c.o +.PHONY : tests/test_data.o + +# target to build an object file +tests/test_data.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_data.c.o +.PHONY : tests/test_data.c.o + +tests/test_data.i: tests/test_data.c.i +.PHONY : tests/test_data.i + +# target to preprocess a source file +tests/test_data.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_data.c.i +.PHONY : tests/test_data.c.i + +tests/test_data.s: tests/test_data.c.s +.PHONY : tests/test_data.s + +# target to generate assembly for a file +tests/test_data.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_data.c.s +.PHONY : tests/test_data.c.s + +tests/test_delta.o: tests/test_delta.c.o +.PHONY : tests/test_delta.o + +# target to build an object file +tests/test_delta.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_delta.c.o +.PHONY : tests/test_delta.c.o + +tests/test_delta.i: tests/test_delta.c.i +.PHONY : tests/test_delta.i + +# target to preprocess a source file +tests/test_delta.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_delta.c.i +.PHONY : tests/test_delta.c.i + +tests/test_delta.s: tests/test_delta.c.s +.PHONY : tests/test_delta.s + +# target to generate assembly for a file +tests/test_delta.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_delta.c.s +.PHONY : tests/test_delta.c.s + +tests/test_file.o: tests/test_file.c.o +.PHONY : tests/test_file.o + +# target to build an object file +tests/test_file.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_file.c.o +.PHONY : tests/test_file.c.o + +tests/test_file.i: tests/test_file.c.i +.PHONY : tests/test_file.i + +# target to preprocess a source file +tests/test_file.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_file.c.i +.PHONY : tests/test_file.c.i + +tests/test_file.s: tests/test_file.c.s +.PHONY : tests/test_file.s + +# target to generate assembly for a file +tests/test_file.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_file.c.s +.PHONY : tests/test_file.c.s + +tests/test_glob.o: tests/test_glob.c.o +.PHONY : tests/test_glob.o + +# target to build an object file +tests/test_glob.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_glob.c.o +.PHONY : tests/test_glob.c.o + +tests/test_glob.i: tests/test_glob.c.i +.PHONY : tests/test_glob.i + +# target to preprocess a source file +tests/test_glob.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_glob.c.i +.PHONY : tests/test_glob.c.i + +tests/test_glob.s: tests/test_glob.c.s +.PHONY : tests/test_glob.s + +# target to generate assembly for a file +tests/test_glob.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_glob.c.s +.PHONY : tests/test_glob.c.s + +tests/test_metadata.o: tests/test_metadata.c.o +.PHONY : tests/test_metadata.o + +# target to build an object file +tests/test_metadata.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_metadata.c.o +.PHONY : tests/test_metadata.c.o + +tests/test_metadata.i: tests/test_metadata.c.i +.PHONY : tests/test_metadata.i + +# target to preprocess a source file +tests/test_metadata.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_metadata.c.i +.PHONY : tests/test_metadata.c.i + +tests/test_metadata.s: tests/test_metadata.c.s +.PHONY : tests/test_metadata.s + +# target to generate assembly for a file +tests/test_metadata.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_metadata.c.s +.PHONY : tests/test_metadata.c.s + +tests/test_property.o: tests/test_property.c.o +.PHONY : tests/test_property.o + +# target to build an object file +tests/test_property.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_property.c.o +.PHONY : tests/test_property.c.o + +tests/test_property.i: tests/test_property.c.i +.PHONY : tests/test_property.i + +# target to preprocess a source file +tests/test_property.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_property.c.i +.PHONY : tests/test_property.c.i + +tests/test_property.s: tests/test_property.c.s +.PHONY : tests/test_property.s + +# target to generate assembly for a file +tests/test_property.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_property.c.s +.PHONY : tests/test_property.c.s + +tests/test_protocol.o: tests/test_protocol.c.o +.PHONY : tests/test_protocol.o + +# target to build an object file +tests/test_protocol.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_protocol.c.o +.PHONY : tests/test_protocol.c.o + +tests/test_protocol.i: tests/test_protocol.c.i +.PHONY : tests/test_protocol.i + +# target to preprocess a source file +tests/test_protocol.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_protocol.c.i +.PHONY : tests/test_protocol.c.i + +tests/test_protocol.s: tests/test_protocol.c.s +.PHONY : tests/test_protocol.s + +# target to generate assembly for a file +tests/test_protocol.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_protocol.c.s +.PHONY : tests/test_protocol.c.s + +tests/test_queue.o: tests/test_queue.c.o +.PHONY : tests/test_queue.o + +# target to build an object file +tests/test_queue.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_queue.c.o +.PHONY : tests/test_queue.c.o + +tests/test_queue.i: tests/test_queue.c.i +.PHONY : tests/test_queue.i + +# target to preprocess a source file +tests/test_queue.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_queue.c.i +.PHONY : tests/test_queue.c.i + +tests/test_queue.s: tests/test_queue.c.s +.PHONY : tests/test_queue.s + +# target to generate assembly for a file +tests/test_queue.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_queue.c.s +.PHONY : tests/test_queue.c.s + +tests/test_robustness.o: tests/test_robustness.c.o +.PHONY : tests/test_robustness.o + +# target to build an object file +tests/test_robustness.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_robustness.c.o +.PHONY : tests/test_robustness.c.o + +tests/test_robustness.i: tests/test_robustness.c.i +.PHONY : tests/test_robustness.i + +# target to preprocess a source file +tests/test_robustness.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_robustness.c.i +.PHONY : tests/test_robustness.c.i + +tests/test_robustness.s: tests/test_robustness.c.s +.PHONY : tests/test_robustness.s + +# target to generate assembly for a file +tests/test_robustness.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_robustness.c.s +.PHONY : tests/test_robustness.c.s + +tests/test_scanner.o: tests/test_scanner.c.o +.PHONY : tests/test_scanner.o + +# target to build an object file +tests/test_scanner.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_scanner.c.o +.PHONY : tests/test_scanner.c.o + +tests/test_scanner.i: tests/test_scanner.c.i +.PHONY : tests/test_scanner.i + +# target to preprocess a source file +tests/test_scanner.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_scanner.c.i +.PHONY : tests/test_scanner.c.i + +tests/test_scanner.s: tests/test_scanner.c.s +.PHONY : tests/test_scanner.s + +# target to generate assembly for a file +tests/test_scanner.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_scanner.c.s +.PHONY : tests/test_scanner.c.s + +tests/test_shared_utils.o: tests/test_shared_utils.c.o +.PHONY : tests/test_shared_utils.o + +# target to build an object file +tests/test_shared_utils.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_shared_utils.c.o +.PHONY : tests/test_shared_utils.c.o + +tests/test_shared_utils.i: tests/test_shared_utils.c.i +.PHONY : tests/test_shared_utils.i + +# target to preprocess a source file +tests/test_shared_utils.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_shared_utils.c.i +.PHONY : tests/test_shared_utils.c.i + +tests/test_shared_utils.s: tests/test_shared_utils.c.s +.PHONY : tests/test_shared_utils.s + +# target to generate assembly for a file +tests/test_shared_utils.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_shared_utils.c.s +.PHONY : tests/test_shared_utils.c.s + +tests/test_stress.o: tests/test_stress.c.o +.PHONY : tests/test_stress.o + +# target to build an object file +tests/test_stress.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_stress.c.o +.PHONY : tests/test_stress.c.o + +tests/test_stress.i: tests/test_stress.c.i +.PHONY : tests/test_stress.i + +# target to preprocess a source file +tests/test_stress.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_stress.c.i +.PHONY : tests/test_stress.c.i + +tests/test_stress.s: tests/test_stress.c.s +.PHONY : tests/test_stress.s + +# target to generate assembly for a file +tests/test_stress.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_stress.c.s +.PHONY : tests/test_stress.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... test" + @echo "... client" + @echo "... server" + @echo "... tests" + @echo "... xxhash" + @echo "... xxhsum" + @echo "... src/client/client_cli.o" + @echo "... src/client/client_cli.i" + @echo "... src/client/client_cli.s" + @echo "... src/client/client_send.o" + @echo "... src/client/client_send.i" + @echo "... src/client/client_send.s" + @echo "... src/client/scanner.o" + @echo "... src/client/scanner.i" + @echo "... src/client/scanner.s" + @echo "... src/server/server.o" + @echo "... src/server/server.i" + @echo "... src/server/server.s" + @echo "... src/shared/array_list.o" + @echo "... src/shared/array_list.i" + @echo "... src/shared/array_list.s" + @echo "... src/shared/chunk.o" + @echo "... src/shared/chunk.i" + @echo "... src/shared/chunk.s" + @echo "... src/shared/compression.o" + @echo "... src/shared/compression.i" + @echo "... src/shared/compression.s" + @echo "... src/shared/config.o" + @echo "... src/shared/config.i" + @echo "... src/shared/config.s" + @echo "... src/shared/data.o" + @echo "... src/shared/data.i" + @echo "... src/shared/data.s" + @echo "... src/shared/delta.o" + @echo "... src/shared/delta.i" + @echo "... src/shared/delta.s" + @echo "... src/shared/file.o" + @echo "... src/shared/file.i" + @echo "... src/shared/file.s" + @echo "... src/shared/log.o" + @echo "... src/shared/log.i" + @echo "... src/shared/log.s" + @echo "... src/shared/metadata.o" + @echo "... src/shared/metadata.i" + @echo "... src/shared/metadata.s" + @echo "... src/shared/multiprocessing.o" + @echo "... src/shared/multiprocessing.i" + @echo "... src/shared/multiprocessing.s" + @echo "... src/shared/protocol.o" + @echo "... src/shared/protocol.i" + @echo "... src/shared/protocol.s" + @echo "... src/shared/queue.o" + @echo "... src/shared/queue.i" + @echo "... src/shared/queue.s" + @echo "... src/shared/transport_ssh.o" + @echo "... src/shared/transport_ssh.i" + @echo "... src/shared/transport_ssh.s" + @echo "... src/shared/transport_tcp.o" + @echo "... src/shared/transport_tcp.i" + @echo "... src/shared/transport_tcp.s" + @echo "... src/shared/transport_tls.o" + @echo "... src/shared/transport_tls.i" + @echo "... src/shared/transport_tls.s" + @echo "... src/shared/utils.o" + @echo "... src/shared/utils.i" + @echo "... src/shared/utils.s" + @echo "... tests/runner.o" + @echo "... tests/runner.i" + @echo "... tests/runner.s" + @echo "... tests/test_array_list.o" + @echo "... tests/test_array_list.i" + @echo "... tests/test_array_list.s" + @echo "... tests/test_chunk.o" + @echo "... tests/test_chunk.i" + @echo "... tests/test_chunk.s" + @echo "... tests/test_compression.o" + @echo "... tests/test_compression.i" + @echo "... tests/test_compression.s" + @echo "... tests/test_config.o" + @echo "... tests/test_config.i" + @echo "... tests/test_config.s" + @echo "... tests/test_data.o" + @echo "... tests/test_data.i" + @echo "... tests/test_data.s" + @echo "... tests/test_delta.o" + @echo "... tests/test_delta.i" + @echo "... tests/test_delta.s" + @echo "... tests/test_file.o" + @echo "... tests/test_file.i" + @echo "... tests/test_file.s" + @echo "... tests/test_glob.o" + @echo "... tests/test_glob.i" + @echo "... tests/test_glob.s" + @echo "... tests/test_metadata.o" + @echo "... tests/test_metadata.i" + @echo "... tests/test_metadata.s" + @echo "... tests/test_property.o" + @echo "... tests/test_property.i" + @echo "... tests/test_property.s" + @echo "... tests/test_protocol.o" + @echo "... tests/test_protocol.i" + @echo "... tests/test_protocol.s" + @echo "... tests/test_queue.o" + @echo "... tests/test_queue.i" + @echo "... tests/test_queue.s" + @echo "... tests/test_robustness.o" + @echo "... tests/test_robustness.i" + @echo "... tests/test_robustness.s" + @echo "... tests/test_scanner.o" + @echo "... tests/test_scanner.i" + @echo "... tests/test_scanner.s" + @echo "... tests/test_shared_utils.o" + @echo "... tests/test_shared_utils.i" + @echo "... tests/test_shared_utils.s" + @echo "... tests/test_stress.o" + @echo "... tests/test_stress.i" + @echo "... tests/test_stress.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build3/_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake b/build3/_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..01ab485 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/root/FastSyncProjects/FastSyncBuilder3") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/root/FastSyncProjects/FastSyncBuilder3/build3") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build3/_deps/xxhash-build/CMakeFiles/progress.marks b/build3/_deps/xxhash-build/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake new file mode 100644 index 0000000..1749581 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c" "_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o new file mode 100644 index 0000000..faadb18 Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d new file mode 100644 index 0000000..d7573bd --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d @@ -0,0 +1,75 @@ +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/build.make b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/build.make new file mode 100644 index 0000000..7d238e4 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/build.make @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +# Include any dependencies generated for this target. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make + +_deps/xxhash-build/CMakeFiles/xxhash.dir/codegen: +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/codegen + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-src/xxhash.c +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o -MF CMakeFiles/xxhash.dir/__/xxhash.c.o.d -o CMakeFiles/xxhash.dir/__/xxhash.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhash.dir/__/xxhash.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c > CMakeFiles/xxhash.dir/__/xxhash.c.i + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhash.dir/__/xxhash.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c -o CMakeFiles/xxhash.dir/__/xxhash.c.s + +# Object files for target xxhash +xxhash_OBJECTS = \ +"CMakeFiles/xxhash.dir/__/xxhash.c.o" + +# External object files for target xxhash +xxhash_EXTERNAL_OBJECTS = + +_deps/xxhash-build/libxxhash.a: _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o +_deps/xxhash-build/libxxhash.a: _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make +_deps/xxhash-build/libxxhash.a: _deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libxxhash.a" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && $(CMAKE_COMMAND) -P CMakeFiles/xxhash.dir/cmake_clean_target.cmake + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/xxhash.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/build: _deps/xxhash-build/libxxhash.a +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/build + +_deps/xxhash-build/CMakeFiles/xxhash.dir/clean: + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && $(CMAKE_COMMAND) -P CMakeFiles/xxhash.dir/cmake_clean.cmake +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/clean + +_deps/xxhash-build/CMakeFiles/xxhash.dir/depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/depend + diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean.cmake b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean.cmake new file mode 100644 index 0000000..1d5f62a --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/xxhash.dir/__/xxhash.c.o" + "CMakeFiles/xxhash.dir/__/xxhash.c.o.d" + "libxxhash.a" + "libxxhash.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/xxhash.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean_target.cmake b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..1bb705c --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libxxhash.a" +) diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.internal b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.internal new file mode 100644 index 0000000..9def91e --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.internal @@ -0,0 +1,79 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.h + diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make new file mode 100644 index 0000000..5345989 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make @@ -0,0 +1,226 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-src/xxhash.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h \ + _deps/xxhash-src/xxhash.h + + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/xmmintrin.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/syslimits.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mmintrin.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/mm_malloc.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/emmintrin.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/select.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_mutex.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes-arch.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/local_lim.h: + +_deps/xxhash-src/xxhash.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/limits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/limits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/uintn-identity.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix2_lim.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min-dynamic.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select-decl.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthreadtypes.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/pthread_stack_min.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/strings.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/alloca.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/atomic_wide_counter.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/byteswap.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timeval.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/select2.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/strings_fortified.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h: + +_deps/xxhash-src/xxhash.c: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/locale_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/sigset_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_rwlock.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitflags.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__locale_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__sigset_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/limits.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/thread-shared-types.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/waitstatus.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix1_lim.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/endian.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h: + +/nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h: diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts new file mode 100644 index 0000000..90ad722 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for xxhash. diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make new file mode 100644 index 0000000..46ed4f0 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for xxhash. +# This may be replaced when dependencies are built. diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make new file mode 100644 index 0000000..80848a5 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc +C_DEFINES = + +C_INCLUDES = -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 + diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt new file mode 100644 index 0000000..b753166 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt @@ -0,0 +1,2 @@ +/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ar qc libxxhash.a CMakeFiles/xxhash.dir/__/xxhash.c.o +/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/ranlib libxxhash.a diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make new file mode 100644 index 0000000..ccea904 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 74 +CMAKE_PROGRESS_2 = 75 + diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake new file mode 100644 index 0000000..94c477c --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake @@ -0,0 +1,29 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d" + "" "_deps/xxhash-build/xxhsum" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o new file mode 100644 index 0000000..96e406e Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d new file mode 100644 index 0000000..08b69c2 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d @@ -0,0 +1,3 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o new file mode 100644 index 0000000..116fcb1 Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d new file mode 100644 index 0000000..fd155f2 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d @@ -0,0 +1,75 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_config.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/../xxhash.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/assert.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clock_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_tm.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_timespec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endian.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/endianness.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/clockid_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/timer_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_itimerspec.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o new file mode 100644 index 0000000..685b584 Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d new file mode 100644 index 0000000..4e11b6f --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d @@ -0,0 +1,51 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_config.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/time_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stat.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/struct_stat.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o new file mode 100644 index 0000000..04f4910 Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d new file mode 100644 index 0000000..bb078bd --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d @@ -0,0 +1,48 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_config.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o new file mode 100644 index 0000000..2da2df0 Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d new file mode 100644 index 0000000..306d7d5 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d @@ -0,0 +1,44 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_config.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/../xxhash.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/assert.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o new file mode 100644 index 0000000..aa77905 Binary files /dev/null and b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o differ diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d new file mode 100644 index 0000000..0f8aaca --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d @@ -0,0 +1,65 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdc-predef.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_config.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/features-time64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wordsize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/timesize.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/sys/cdefs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/long-double.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/gnu/stubs-64.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/posix_opt.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/environments.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/typesizes.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/time64.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stddef.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/confname.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_posix.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/getopt_core.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/unistd_ext.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdint.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/libc-header-start.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/wchar.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-intn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-uintn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdint-least.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdio.h \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/include/stdarg.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__mbstate_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__fpos64_t.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/__FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/types/struct_FILE.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio_lim.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/floatn-common.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2-decl.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdio2.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-bsearch.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib-float.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/stdlib.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/string.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/string_fortified.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/assert.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/bits/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/linux/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno.h \ + /nix/store/15h9askp4k1lx44d9871wid23j2a8ijp-glibc-2.42-61-dev/include/asm-generic/errno-base.h \ + /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/../xxhash.h diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make new file mode 100644 index 0000000..6c8f935 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make @@ -0,0 +1,195 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +# Include any dependencies generated for this target. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/codegen: +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/codegen + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: _deps/xxhash-src/cli/xxhsum.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c > CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c -o CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: _deps/xxhash-src/cli/xsum_arch.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c > CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: _deps/xxhash-src/cli/xsum_os_specific.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c > CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: _deps/xxhash-src/cli/xsum_output.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c > CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: _deps/xxhash-src/cli/xsum_sanity_check.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c > CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: _deps/xxhash-src/cli/xsum_bench.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c > CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s + +# Object files for target xxhsum +xxhsum_OBJECTS = \ +"CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" + +# External object files for target xxhsum +xxhsum_EXTERNAL_OBJECTS = + +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts +_deps/xxhash-build/xxhsum: _deps/xxhash-build/libxxhash.a +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking C executable xxhsum" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/xxhsum.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/build: _deps/xxhash-build/xxhsum +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/build + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/clean: + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && $(CMAKE_COMMAND) -P CMakeFiles/xxhsum.dir/cmake_clean.cmake +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /root/FastSyncProjects/FastSyncBuilder3 /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial /root/FastSyncProjects/FastSyncBuilder3/build3 /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/depend + diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/cmake_clean.cmake b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/cmake_clean.cmake new file mode 100644 index 0000000..a394397 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/cmake_clean.cmake @@ -0,0 +1,22 @@ +file(REMOVE_RECURSE + "CMakeFiles/xxhsum.dir/link.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d" + "xxhsum" + "xxhsum.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/xxhsum.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make new file mode 100644 index 0000000..6a10a0c --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for xxhsum. +# This may be replaced when dependencies are built. diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts new file mode 100644 index 0000000..24a536b --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for xxhsum. diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make new file mode 100644 index 0000000..db7b829 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for xxhsum. +# This may be replaced when dependencies are built. diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make new file mode 100644 index 0000000..80848a5 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# compile C with /nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc +C_DEFINES = + +C_INCLUDES = -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 + diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.d b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.d new file mode 100644 index 0000000..d2b86d0 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.d @@ -0,0 +1,94 @@ +xxhsum: \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o \ + CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o \ + CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o \ + CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o \ + CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o \ + CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o \ + CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o \ + libxxhash.a \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so.1 \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so.6 \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc_nonshared.a \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so \ + /nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so.1 \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a \ + /nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o \ + /nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2 + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/Scrt1.o: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crti.o: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtbeginS.o: + +CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: + +CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: + +CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: + +CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: + +CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: + +CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: + +libxxhash.a: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so.1: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc.so.6: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/libc_nonshared.a: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so: + +/nix/store/chqq8mpmpyfi9kgsngya71akv5xicn03-gcc-15.2.0-lib/lib/libgcc_s.so.1: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/libgcc.a: + +/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/lib/gcc/x86_64-unknown-linux-gnu/15.2.0/crtendS.o: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/crtn.o: + +/nix/store/57iz36553175g3178pvxjij8z5rcsd4n-glibc-2.42-61/lib/ld-linux-x86-64.so.2: diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt new file mode 100644 index 0000000..459334e --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt @@ -0,0 +1 @@ +/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/xxhsum.dir/link.d CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -o xxhsum libxxhash.a diff --git a/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make new file mode 100644 index 0000000..c27fe19 --- /dev/null +++ b/build3/_deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make @@ -0,0 +1,8 @@ +CMAKE_PROGRESS_1 = 76 +CMAKE_PROGRESS_2 = 77 +CMAKE_PROGRESS_3 = 78 +CMAKE_PROGRESS_4 = 79 +CMAKE_PROGRESS_5 = 80 +CMAKE_PROGRESS_6 = 81 +CMAKE_PROGRESS_7 = 82 + diff --git a/build3/_deps/xxhash-build/Makefile b/build3/_deps/xxhash-build/Makefile new file mode 100644 index 0000000..971d955 --- /dev/null +++ b/build3/_deps/xxhash-build/Makefile @@ -0,0 +1,392 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3 + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..." + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..." + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cpack --config ./CPackSourceConfig.cmake /root/FastSyncProjects/FastSyncBuilder3/build3/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/ctest $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build//CMakeFiles/progress.marks + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/rule: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhash.dir/rule +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/rule + +# Convenience name for target. +xxhash: _deps/xxhash-build/CMakeFiles/xxhash.dir/rule +.PHONY : xxhash + +# fast build rule for target. +xxhash/fast: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/build +.PHONY : xxhash/fast + +# Convenience name for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/rule: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule + +# Convenience name for target. +xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule +.PHONY : xxhsum + +# fast build rule for target. +xxhsum/fast: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/build +.PHONY : xxhsum/fast + +__/cli/xsum_arch.o: __/cli/xsum_arch.c.o +.PHONY : __/cli/xsum_arch.o + +# target to build an object file +__/cli/xsum_arch.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o +.PHONY : __/cli/xsum_arch.c.o + +__/cli/xsum_arch.i: __/cli/xsum_arch.c.i +.PHONY : __/cli/xsum_arch.i + +# target to preprocess a source file +__/cli/xsum_arch.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i +.PHONY : __/cli/xsum_arch.c.i + +__/cli/xsum_arch.s: __/cli/xsum_arch.c.s +.PHONY : __/cli/xsum_arch.s + +# target to generate assembly for a file +__/cli/xsum_arch.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s +.PHONY : __/cli/xsum_arch.c.s + +__/cli/xsum_bench.o: __/cli/xsum_bench.c.o +.PHONY : __/cli/xsum_bench.o + +# target to build an object file +__/cli/xsum_bench.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o +.PHONY : __/cli/xsum_bench.c.o + +__/cli/xsum_bench.i: __/cli/xsum_bench.c.i +.PHONY : __/cli/xsum_bench.i + +# target to preprocess a source file +__/cli/xsum_bench.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i +.PHONY : __/cli/xsum_bench.c.i + +__/cli/xsum_bench.s: __/cli/xsum_bench.c.s +.PHONY : __/cli/xsum_bench.s + +# target to generate assembly for a file +__/cli/xsum_bench.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s +.PHONY : __/cli/xsum_bench.c.s + +__/cli/xsum_os_specific.o: __/cli/xsum_os_specific.c.o +.PHONY : __/cli/xsum_os_specific.o + +# target to build an object file +__/cli/xsum_os_specific.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o +.PHONY : __/cli/xsum_os_specific.c.o + +__/cli/xsum_os_specific.i: __/cli/xsum_os_specific.c.i +.PHONY : __/cli/xsum_os_specific.i + +# target to preprocess a source file +__/cli/xsum_os_specific.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i +.PHONY : __/cli/xsum_os_specific.c.i + +__/cli/xsum_os_specific.s: __/cli/xsum_os_specific.c.s +.PHONY : __/cli/xsum_os_specific.s + +# target to generate assembly for a file +__/cli/xsum_os_specific.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s +.PHONY : __/cli/xsum_os_specific.c.s + +__/cli/xsum_output.o: __/cli/xsum_output.c.o +.PHONY : __/cli/xsum_output.o + +# target to build an object file +__/cli/xsum_output.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o +.PHONY : __/cli/xsum_output.c.o + +__/cli/xsum_output.i: __/cli/xsum_output.c.i +.PHONY : __/cli/xsum_output.i + +# target to preprocess a source file +__/cli/xsum_output.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i +.PHONY : __/cli/xsum_output.c.i + +__/cli/xsum_output.s: __/cli/xsum_output.c.s +.PHONY : __/cli/xsum_output.s + +# target to generate assembly for a file +__/cli/xsum_output.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s +.PHONY : __/cli/xsum_output.c.s + +__/cli/xsum_sanity_check.o: __/cli/xsum_sanity_check.c.o +.PHONY : __/cli/xsum_sanity_check.o + +# target to build an object file +__/cli/xsum_sanity_check.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o +.PHONY : __/cli/xsum_sanity_check.c.o + +__/cli/xsum_sanity_check.i: __/cli/xsum_sanity_check.c.i +.PHONY : __/cli/xsum_sanity_check.i + +# target to preprocess a source file +__/cli/xsum_sanity_check.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i +.PHONY : __/cli/xsum_sanity_check.c.i + +__/cli/xsum_sanity_check.s: __/cli/xsum_sanity_check.c.s +.PHONY : __/cli/xsum_sanity_check.s + +# target to generate assembly for a file +__/cli/xsum_sanity_check.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s +.PHONY : __/cli/xsum_sanity_check.c.s + +__/cli/xxhsum.o: __/cli/xxhsum.c.o +.PHONY : __/cli/xxhsum.o + +# target to build an object file +__/cli/xxhsum.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o +.PHONY : __/cli/xxhsum.c.o + +__/cli/xxhsum.i: __/cli/xxhsum.c.i +.PHONY : __/cli/xxhsum.i + +# target to preprocess a source file +__/cli/xxhsum.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i +.PHONY : __/cli/xxhsum.c.i + +__/cli/xxhsum.s: __/cli/xxhsum.c.s +.PHONY : __/cli/xxhsum.s + +# target to generate assembly for a file +__/cli/xxhsum.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s +.PHONY : __/cli/xxhsum.c.s + +__/xxhash.o: __/xxhash.c.o +.PHONY : __/xxhash.o + +# target to build an object file +__/xxhash.c.o: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o +.PHONY : __/xxhash.c.o + +__/xxhash.i: __/xxhash.c.i +.PHONY : __/xxhash.i + +# target to preprocess a source file +__/xxhash.c.i: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.i +.PHONY : __/xxhash.c.i + +__/xxhash.s: __/xxhash.c.s +.PHONY : __/xxhash.s + +# target to generate assembly for a file +__/xxhash.c.s: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.s +.PHONY : __/xxhash.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... test" + @echo "... xxhash" + @echo "... xxhsum" + @echo "... __/cli/xsum_arch.o" + @echo "... __/cli/xsum_arch.i" + @echo "... __/cli/xsum_arch.s" + @echo "... __/cli/xsum_bench.o" + @echo "... __/cli/xsum_bench.i" + @echo "... __/cli/xsum_bench.s" + @echo "... __/cli/xsum_os_specific.o" + @echo "... __/cli/xsum_os_specific.i" + @echo "... __/cli/xsum_os_specific.s" + @echo "... __/cli/xsum_output.o" + @echo "... __/cli/xsum_output.i" + @echo "... __/cli/xsum_output.s" + @echo "... __/cli/xsum_sanity_check.o" + @echo "... __/cli/xsum_sanity_check.i" + @echo "... __/cli/xsum_sanity_check.s" + @echo "... __/cli/xxhsum.o" + @echo "... __/cli/xxhsum.i" + @echo "... __/cli/xxhsum.s" + @echo "... __/xxhash.o" + @echo "... __/xxhash.i" + @echo "... __/xxhash.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /root/FastSyncProjects/FastSyncBuilder3/build3 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build3/_deps/xxhash-build/cmake_install.cmake b/build3/_deps/xxhash-build/cmake_install.cmake new file mode 100644 index 0000000..dacbf86 --- /dev/null +++ b/build3/_deps/xxhash-build/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objdump") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build3/_deps/xxhash-build/libxxhash.a b/build3/_deps/xxhash-build/libxxhash.a new file mode 100644 index 0000000..851c313 Binary files /dev/null and b/build3/_deps/xxhash-build/libxxhash.a differ diff --git a/build3/_deps/xxhash-build/xxhsum b/build3/_deps/xxhash-build/xxhsum new file mode 100755 index 0000000..0b1fddc Binary files /dev/null and b/build3/_deps/xxhash-build/xxhsum differ diff --git a/build3/_deps/xxhash-src b/build3/_deps/xxhash-src new file mode 160000 index 0000000..e626a72 --- /dev/null +++ b/build3/_deps/xxhash-src @@ -0,0 +1 @@ +Subproject commit e626a72bc2321cd320e953a0ccf1584cad60f363 diff --git a/build3/_deps/xxhash-subbuild/CMakeCache.txt b/build3/_deps/xxhash-subbuild/CMakeCache.txt new file mode 100644 index 0000000..12a1c0d --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeCache.txt @@ -0,0 +1,120 @@ +# This is the CMakeCache file. +# For build in directory: /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild +# It was generated by CMake: /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:FILEPATH=/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/make + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=xxhash-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +xxhash-populate_BINARY_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +//Value Computed by CMake +xxhash-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +xxhash-populate_SOURCE_DIR:STATIC=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=1 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/ctest +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/4.1.2/CMakeSystem.cmake b/build3/_deps/xxhash-subbuild/CMakeFiles/4.1.2/CMakeSystem.cmake new file mode 100644 index 0000000..23f87dc --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/4.1.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.18.33") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.18.33") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.18.33") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.18.33") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..1e7ef61 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,119 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:16 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/" + - "/root/FastSyncProjects/FastSyncBuilder3/build/" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin/" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin/" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin/" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin/" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin/" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin/" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin/" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin/" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin/" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin/" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin/" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin/" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin/" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin/" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin/" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin/" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin/" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin/" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin/" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin/" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin/" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin/" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin/" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin/" + - "/run/wrappers/bin/" + - "/root/.nix-profile/bin/" + - "/nix/profile/bin/" + - "/root/.local/state/nix/profile/bin/" + - "/etc/profiles/per-user/root/bin/" + - "/nix/var/nix/profiles/default/bin/" + - "/run/current-system/sw/bin/" + searched_directories: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin/uname" + - "/root/FastSyncProjects/FastSyncBuilder3/build/uname" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin/uname" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/uname" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin/uname" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin/uname" + found: "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin/uname" + search_context: + ENV{PATH}: + - "/nix/store/4w7fshi3jlwjxsij52q4yyl4sfxvfl92-ripgrep-15.1.0/bin" + - "/root/FastSyncProjects/FastSyncBuilder3/build" + - "/nix/store/cgjr3kj3hs7ngznyws5qfg16c8scpys0-bash-interactive-5.3p9/bin" + - "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin" + - "/nix/store/qxaq7jz61a6zkr2mq49i0zvqip2m2jj8-gcc-15.2.0/bin" + - "/nix/store/bsh7n2nx8ndmm1mmww6v2h4851nalj13-glibc-2.42-61-bin/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/mbyy19mdwnfvfwmdi0gqgggx0njvpl1w-binutils-wrapper-2.46/bin" + - "/nix/store/s2946bl9ciwzhafd66jhansrmxq9xhqm-binutils-2.46/bin" + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin" + - "/nix/store/d3bwqm6bymhy3pdgbvf7vxjqfp31m3j1-gnumake-4.4.1/bin" + - "/nix/store/1m05k7xgfnw6jc21xxk5681ni3ar97wf-pkg-config-wrapper-0.29.2/bin" + - "/nix/store/yv00h32n0cyqkk0chs93gn5x5jiyvbjc-docker-29.5.2/bin" + - "/nix/store/vzqla9g8dy8c3bphqa0ahrwg4yhamdp1-tea-0.14.0/bin" + - "/nix/store/ilblcn1dkvzghcr2yk3av6jxn5rk1iqw-patchelf-0.15.2/bin" + - "/nix/store/cwj48a5jfy5srxgq45p4dg37zqdlhzba-zstd-1.5.7-bin/bin" + - "/nix/store/gd74vdpqzq0qmmikvmrf3r3kghhhnf50-zstd-1.5.7/bin" + - "/nix/store/zyrxhd7nwmkcs11m144jagxcmddw2i41-openssl-3.6.2-bin/bin" + - "/nix/store/qrcs6vxmamyhkcd81ph2wjhrh487kipw-python3-3.13.13-env/bin" + - "/nix/store/9ypz3flqsrl5xl495mm8h645gadjsxi1-coreutils-9.11/bin" + - "/nix/store/c1cjgg6p8m8fssivzrc2p13mwwml3p3v-findutils-4.10.0/bin" + - "/nix/store/ww555mznia5v7sz2w85lblg4amvhkhv1-diffutils-3.12/bin" + - "/nix/store/kgxafhycw2kybbqih759ykc2043qyi5j-gnused-4.9/bin" + - "/nix/store/gn94gpcp5q08x4v6g8mvw8v4r65rcjzk-gnugrep-3.12/bin" + - "/nix/store/wp1cshqv98i8abs8rcx91s54igqgll0f-gawk-5.4.0/bin" + - "/nix/store/k5akwnrn9x2afaj2va7g4a2zpdim8l43-gnutar-1.35/bin" + - "/nix/store/ndpbjk6jhw0da5h272dqqnyxa35a9gmx-gzip-1.14/bin" + - "/nix/store/3y3kzc5njlj7nwj1s78am0yzjnpicv9x-bzip2-1.0.8-bin/bin" + - "/nix/store/vlq7nnw39j7rwk0pp68w1fcwzpxahm9h-gnumake-4.4.1/bin" + - "/nix/store/gik3rh1vz2jlgnifb9dh6vc6sxwwz9jj-bash-5.3p9/bin" + - "/nix/store/wgvplwp0faqhqr92w0ma8bxaxk202ama-patch-2.8/bin" + - "/nix/store/csra6zhdjw7rjzv98fycz7qjalyv55k2-xz-5.8.3-bin/bin" + - "/nix/store/kyz3mm5snbb8998kbkm28jps1phk9509-file-5.47/bin" + - "/run/wrappers/bin" + - "/root/.nix-profile/bin" + - "/nix/profile/bin" + - "/root/.local/state/nix/profile/bin" + - "/etc/profiles/per-user/root/bin" + - "/nix/var/nix/profiles/default/bin" + - "/run/current-system/sw/bin" + - + kind: "message-v1" + backtrace: + - "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Linux - 6.18.33 - x86_64 +... diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake b/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..5ac1912 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeRuleHashes.txt b/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..a77227b --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,11 @@ +# Hashes of file build rules. +8175fca132254d29af11df4e08f895b8 CMakeFiles/xxhash-populate +d1df65fa1458ae27debb9abe39e64f0c CMakeFiles/xxhash-populate-complete +e7a369bc8e3802f372b6685078dceae6 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build +7a23ffff60b7bd3b578f1865b47f93c9 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure +a1fbbc5b245d00b27a52c84f75cfa18b xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download +b65df86b2e281728deb20fb10fd0e45a xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +c5fd025de83367dd22d0566865ac1eff xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir +0c198ad9fa633218271324c40ccdc13b xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch +4c3caf8e0b4c53b808af86614e3a16cb xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test +59058f3af4f45cbcf203376c722abb11 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/InstallScripts.json b/build3/_deps/xxhash-subbuild/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..26e44de --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/InstallScripts.json @@ -0,0 +1,7 @@ +{ + "InstallScripts" : + [ + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/Makefile.cmake b/build3/_deps/xxhash-subbuild/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..45e0e44 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/Makefile.cmake @@ -0,0 +1,55 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeGenericSystem.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeInitializeConfigs.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeSystem.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeSystemSpecificInformation.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/CMakeSystemSpecificInitialize.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/PatchInfo.txt.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/RepositoryInfo.txt.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/UpdateInfo.txt.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/cfgcmd.txt.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/gitclone.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/gitupdate.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/mkdirs.cmake.in" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/ExternalProject/shared_internal_commands.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux-Initialize.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/Linux.cmake" + "/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/share/cmake-4.1/Modules/Platform/UnixPaths.cmake" + "CMakeFiles/4.1.2/CMakeSystem.cmake" + "CMakeLists.txt" + "xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/4.1.2/CMakeSystem.cmake" + "xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake" + "xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt" + "xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt" + "xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/xxhash-populate.dir/DependInfo.cmake" + ) diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/Makefile2 b/build3/_deps/xxhash-subbuild/CMakeFiles/Makefile2 new file mode 100644 index 0000000..2cecbd9 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/Makefile2 @@ -0,0 +1,122 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/xxhash-populate.dir/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/xxhash-populate.dir/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/xxhash-populate.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/xxhash-populate.dir + +# All Build rule for target. +CMakeFiles/xxhash-populate.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target xxhash-populate" +.PHONY : CMakeFiles/xxhash-populate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/xxhash-populate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles 9 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/xxhash-populate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles 0 +.PHONY : CMakeFiles/xxhash-populate.dir/rule + +# Convenience name for target. +xxhash-populate: CMakeFiles/xxhash-populate.dir/rule +.PHONY : xxhash-populate + +# codegen rule for target. +CMakeFiles/xxhash-populate.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Finished codegen for target xxhash-populate" +.PHONY : CMakeFiles/xxhash-populate.dir/codegen + +# clean rule for target. +CMakeFiles/xxhash-populate.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/clean +.PHONY : CMakeFiles/xxhash-populate.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/TargetDirectories.txt b/build3/_deps/xxhash-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..2998240 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/edit_cache.dir +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/cmake.check_cache b/build3/_deps/xxhash-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/progress.marks b/build3/_deps/xxhash-subbuild/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.json b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.json new file mode 100644 index 0000000..21dd1e0 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test.rule" + }, + { + "file" : "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "xxhash-populate" + ], + "name" : "xxhash-populate" + } +} \ No newline at end of file diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.txt b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.txt new file mode 100644 index 0000000..c1a71e5 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + xxhash-populate +# Source files and their labels +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test.rule +/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update.rule diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/build.make b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/build.make new file mode 100644 index 0000000..9402c81 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/build.make @@ -0,0 +1,162 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +# Utility rule file for xxhash-populate. + +# Include any custom commands dependencies for this target. +include CMakeFiles/xxhash-populate.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/xxhash-populate.dir/progress.make + +CMakeFiles/xxhash-populate: CMakeFiles/xxhash-populate-complete + +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'xxhash-populate'" + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E make_directory /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-done + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: +.PHONY : xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'xxhash-populate'" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo_append + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure: xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'xxhash-populate'" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo_append + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'xxhash-populate'" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'xxhash-populate'" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo_append + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'xxhash-populate'" + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -Dcfgdir= -P /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'xxhash-populate'" + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo_append + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: +.PHONY : xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'xxhash-populate'" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo_append + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E touch /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'xxhash-populate'" + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src && /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -Dcan_fetch=YES -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake + +CMakeFiles/xxhash-populate.dir/codegen: +.PHONY : CMakeFiles/xxhash-populate.dir/codegen + +xxhash-populate: CMakeFiles/xxhash-populate +xxhash-populate: CMakeFiles/xxhash-populate-complete +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update +xxhash-populate: CMakeFiles/xxhash-populate.dir/build.make +.PHONY : xxhash-populate + +# Rule to build all files generated by this target. +CMakeFiles/xxhash-populate.dir/build: xxhash-populate +.PHONY : CMakeFiles/xxhash-populate.dir/build + +CMakeFiles/xxhash-populate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/xxhash-populate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/xxhash-populate.dir/clean + +CMakeFiles/xxhash-populate.dir/depend: + cd /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/xxhash-populate.dir/depend + diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/cmake_clean.cmake b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/cmake_clean.cmake new file mode 100644 index 0000000..e54134c --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/xxhash-populate" + "CMakeFiles/xxhash-populate-complete" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/xxhash-populate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.make b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.make new file mode 100644 index 0000000..298c474 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for xxhash-populate. +# This may be replaced when dependencies are built. diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.ts b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.ts new file mode 100644 index 0000000..ff9dfc3 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for xxhash-populate. diff --git a/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/progress.make b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/progress.make new file mode 100644 index 0000000..d4f6ce3 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/progress.make @@ -0,0 +1,10 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 + diff --git a/build3/_deps/xxhash-subbuild/CMakeLists.txt b/build3/_deps/xxhash-subbuild/CMakeLists.txt new file mode 100644 index 0000000..459dbce --- /dev/null +++ b/build3/_deps/xxhash-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file LICENSE.rst or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 4.1.2) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(xxhash-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[/run/current-system/sw/bin/git]==]) +set(GIT_VERSION_STRING [==[2.54.0]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[/run/current-system/sw/bin/git;2.54.0]==] +) + + +include(ExternalProject) +ExternalProject_Add(xxhash-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/Cyan4973/xxHash" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "v0.8.3" "SOURCE_SUBDIR" "cmake_unofficial" + SOURCE_DIR "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + BINARY_DIR "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/build3/_deps/xxhash-subbuild/Makefile b/build3/_deps/xxhash-subbuild/Makefile new file mode 100644 index 0000000..aea48b4 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/Makefile @@ -0,0 +1,162 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.1 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake + +# The command to remove a file. +RM = /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles 0 +.PHONY : all + +# The main codegen target +codegen: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 codegen + $(CMAKE_COMMAND) -E cmake_progress_start /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/CMakeFiles 0 +.PHONY : codegen + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named xxhash-populate + +# Build rule for target. +xxhash-populate: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 xxhash-populate +.PHONY : xxhash-populate + +# fast build rule for target. +xxhash-populate/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/build +.PHONY : xxhash-populate/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... codegen" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... xxhash-populate" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build3/_deps/xxhash-subbuild/cmake_install.cmake b/build3/_deps/xxhash-subbuild/cmake_install.cmake new file mode 100644 index 0000000..eb1b915 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/cmake_install.cmake @@ -0,0 +1,61 @@ +# Install script for directory: /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-done b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-done new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt new file mode 100644 index 0000000..03d41af --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake +source_dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src +work_dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps +repository=https://github.com/Cyan4973/xxHash +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt new file mode 100644 index 0000000..03d41af --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake +source_dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src +work_dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps +repository=https://github.com/Cyan4973/xxHash +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test new file mode 100644 index 0000000..e69de29 diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt new file mode 100644 index 0000000..431cd08 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake +command (disconnected)=/nix/store/r9941n32g4wyvggz2703dlplbdq8a6rd-cmake-4.1.2/bin/cmake;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake +work_dir=/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake new file mode 100644 index 0000000..ae59383 --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake @@ -0,0 +1,87 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file LICENSE.rst or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake + +if(EXISTS "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt" AND EXISTS "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt" AND + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt" IS_NEWER_THAN "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt") + message(VERBOSE + "Avoiding repeated git clone, stamp file is up to date: " + "'/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: '/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "/run/current-system/sw/bin/git" + clone --no-checkout --config "advice.detachedHead=false" "https://github.com/Cyan4973/xxHash" "xxhash-src" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(NOTICE "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/Cyan4973/xxHash'") +endif() + +execute_process( + COMMAND "/run/current-system/sw/bin/git" + checkout "v0.8.3" -- + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'v0.8.3'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "/run/current-system/sw/bin/git" + submodule update --recursive --init + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt" "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt'") +endif() diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake new file mode 100644 index 0000000..22bc04f --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake @@ -0,0 +1,317 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file LICENSE.rst or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL LAST + ${maybe_show_command} + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + +if("${can_fetch}" STREQUAL "") + set(can_fetch "YES") +endif() + +execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git show-ref "v0.8.3" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v0.8.3") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("v0.8.3" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: v0.8.3") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v0.8.3") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/v0.8.3") + +else() + get_hash_for_ref("v0.8.3" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"v0.8.3\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(DEBUG "${error_msg}") + endif() + do_fetch() + set(checkout_name "v0.8.3") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "v0.8.3") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git status --porcelain + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +else() + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git rebase --abort + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + ${maybe_show_command} + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + ${maybe_show_command} + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: '/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "/run/current-system/sw/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + ${maybe_show_command} + ) + message(FATAL_ERROR "\nFailed to unstash changes in: '/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "/run/current-system/sw/bin/git" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() diff --git a/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake new file mode 100644 index 0000000..f96823d --- /dev/null +++ b/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file LICENSE.rst or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src") + file(MAKE_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src") +endif() +file(MAKE_DIRECTORY + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src" + "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/build3/cmake_install.cmake b/build3/cmake_install.cmake new file mode 100644 index 0000000..f3c110f --- /dev/null +++ b/build3/cmake_install.cmake @@ -0,0 +1,71 @@ +# Install script for directory: /root/FastSyncProjects/FastSyncBuilder3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/root/FastSyncProjects/FastSyncBuilder3/build3/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/root/FastSyncProjects/FastSyncBuilder3/build3/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build3/compile_commands.json b/build3/compile_commands.json new file mode 100644 index 0000000..78107b3 --- /dev/null +++ b/build3/compile_commands.json @@ -0,0 +1,464 @@ +[ +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/server/server.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/server/server.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/server/server.c", + "output": "CMakeFiles/server.dir/src/server/server.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c", + "output": "CMakeFiles/server.dir/src/shared/array_list.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c", + "output": "CMakeFiles/server.dir/src/shared/chunk.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c", + "output": "CMakeFiles/server.dir/src/shared/compression.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c", + "output": "CMakeFiles/server.dir/src/shared/config.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c", + "output": "CMakeFiles/server.dir/src/shared/data.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c", + "output": "CMakeFiles/server.dir/src/shared/delta.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c", + "output": "CMakeFiles/server.dir/src/shared/file.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/log.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c", + "output": "CMakeFiles/server.dir/src/shared/log.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c", + "output": "CMakeFiles/server.dir/src/shared/metadata.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/multiprocessing.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c", + "output": "CMakeFiles/server.dir/src/shared/multiprocessing.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c", + "output": "CMakeFiles/server.dir/src/shared/protocol.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c", + "output": "CMakeFiles/server.dir/src/shared/queue.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/transport_ssh.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c", + "output": "CMakeFiles/server.dir/src/shared/transport_ssh.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/transport_tcp.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c", + "output": "CMakeFiles/server.dir/src/shared/transport_tcp.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/transport_tls.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c", + "output": "CMakeFiles/server.dir/src/shared/transport_tls.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/server.dir/src/shared/utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c", + "output": "CMakeFiles/server.dir/src/shared/utils.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/client/client_cli.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/client/client_cli.c", + "output": "CMakeFiles/client.dir/src/client/client_cli.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/client/client_send.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/client/client_send.c", + "output": "CMakeFiles/client.dir/src/client/client_send.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/client/scanner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c", + "output": "CMakeFiles/client.dir/src/client/scanner.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c", + "output": "CMakeFiles/client.dir/src/shared/array_list.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c", + "output": "CMakeFiles/client.dir/src/shared/chunk.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c", + "output": "CMakeFiles/client.dir/src/shared/compression.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c", + "output": "CMakeFiles/client.dir/src/shared/config.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c", + "output": "CMakeFiles/client.dir/src/shared/data.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c", + "output": "CMakeFiles/client.dir/src/shared/delta.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c", + "output": "CMakeFiles/client.dir/src/shared/file.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/log.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c", + "output": "CMakeFiles/client.dir/src/shared/log.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c", + "output": "CMakeFiles/client.dir/src/shared/metadata.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/multiprocessing.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c", + "output": "CMakeFiles/client.dir/src/shared/multiprocessing.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c", + "output": "CMakeFiles/client.dir/src/shared/protocol.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c", + "output": "CMakeFiles/client.dir/src/shared/queue.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/transport_ssh.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c", + "output": "CMakeFiles/client.dir/src/shared/transport_ssh.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/transport_tcp.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c", + "output": "CMakeFiles/client.dir/src/shared/transport_tcp.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/transport_tls.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c", + "output": "CMakeFiles/client.dir/src/shared/transport_tls.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/client.dir/src/shared/utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c", + "output": "CMakeFiles/client.dir/src/shared/utils.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/runner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/runner.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/runner.c", + "output": "CMakeFiles/tests.dir/tests/runner.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_array_list.c", + "output": "CMakeFiles/tests.dir/tests/test_array_list.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_chunk.c", + "output": "CMakeFiles/tests.dir/tests/test_chunk.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_compression.c", + "output": "CMakeFiles/tests.dir/tests/test_compression.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_config.c", + "output": "CMakeFiles/tests.dir/tests/test_config.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_data.c", + "output": "CMakeFiles/tests.dir/tests/test_data.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_delta.c", + "output": "CMakeFiles/tests.dir/tests/test_delta.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_file.c", + "output": "CMakeFiles/tests.dir/tests/test_file.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_glob.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_glob.c", + "output": "CMakeFiles/tests.dir/tests/test_glob.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_metadata.c", + "output": "CMakeFiles/tests.dir/tests/test_metadata.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_property.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_property.c", + "output": "CMakeFiles/tests.dir/tests/test_property.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_protocol.c", + "output": "CMakeFiles/tests.dir/tests/test_protocol.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_queue.c", + "output": "CMakeFiles/tests.dir/tests/test_queue.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_robustness.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_robustness.c", + "output": "CMakeFiles/tests.dir/tests/test_robustness.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_scanner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_scanner.c", + "output": "CMakeFiles/tests.dir/tests/test_scanner.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_shared_utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_shared_utils.c", + "output": "CMakeFiles/tests.dir/tests/test_shared_utils.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/tests/test_stress.c.o -c /root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/tests/test_stress.c", + "output": "CMakeFiles/tests.dir/tests/test_stress.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/array_list.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/array_list.c", + "output": "CMakeFiles/tests.dir/src/shared/array_list.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/chunk.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/chunk.c", + "output": "CMakeFiles/tests.dir/src/shared/chunk.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/compression.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/compression.c", + "output": "CMakeFiles/tests.dir/src/shared/compression.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/config.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/config.c", + "output": "CMakeFiles/tests.dir/src/shared/config.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/data.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/data.c", + "output": "CMakeFiles/tests.dir/src/shared/data.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/delta.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/delta.c", + "output": "CMakeFiles/tests.dir/src/shared/delta.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/file.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/file.c", + "output": "CMakeFiles/tests.dir/src/shared/file.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/log.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/log.c", + "output": "CMakeFiles/tests.dir/src/shared/log.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/metadata.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/metadata.c", + "output": "CMakeFiles/tests.dir/src/shared/metadata.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/multiprocessing.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/multiprocessing.c", + "output": "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/protocol.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/protocol.c", + "output": "CMakeFiles/tests.dir/src/shared/protocol.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/queue.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/queue.c", + "output": "CMakeFiles/tests.dir/src/shared/queue.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/transport_ssh.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_ssh.c", + "output": "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/transport_tcp.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tcp.c", + "output": "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/transport_tls.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/transport_tls.c", + "output": "CMakeFiles/tests.dir/src/shared/transport_tls.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/shared/utils.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/shared/utils.c", + "output": "CMakeFiles/tests.dir/src/shared/utils.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/tests -I/root/FastSyncProjects/FastSyncBuilder3/src/shared -I/root/FastSyncProjects/FastSyncBuilder3/src/server -I/root/FastSyncProjects/FastSyncBuilder3/src/client -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/tests.dir/src/client/scanner.c.o -c /root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/src/client/scanner.c", + "output": "CMakeFiles/tests.dir/src/client/scanner.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhash.dir/__/xxhash.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/xxhash.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xxhsum.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_arch.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_os_specific.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_output.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_sanity_check.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" +}, +{ + "directory": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-build", + "command": "/nix/store/788mx070y81zjlg5ipcl0cra3afviw9k-gcc-wrapper-15.2.0/bin/gcc -I/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -c /root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c", + "file": "/root/FastSyncProjects/FastSyncBuilder3/build3/_deps/xxhash-src/cli/xsum_bench.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" +} +] \ No newline at end of file diff --git a/build_docker2/CMakeCache.txt b/build_docker2/CMakeCache.txt new file mode 100644 index 0000000..bdc7ebc --- /dev/null +++ b/build_docker2/CMakeCache.txt @@ -0,0 +1,588 @@ +# This is the CMakeCache file. +# For build in directory: /workspace/build_docker2 +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Project build type +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/workspace/build_docker2/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=FastFileTransfer + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.8.3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=8 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable to build Debian packages +CPACK_BINARY_DEB:BOOL=OFF + +//Enable to build FreeBSD packages +CPACK_BINARY_FREEBSD:BOOL=OFF + +//Enable to build IFW packages +CPACK_BINARY_IFW:BOOL=OFF + +//Enable to build NSIS packages +CPACK_BINARY_NSIS:BOOL=OFF + +//Enable to build RPM packages +CPACK_BINARY_RPM:BOOL=OFF + +//Enable to build STGZ packages +CPACK_BINARY_STGZ:BOOL=ON + +//Enable to build TBZ2 packages +CPACK_BINARY_TBZ2:BOOL=OFF + +//Enable to build TGZ packages +CPACK_BINARY_TGZ:BOOL=ON + +//Enable to build TXZ packages +CPACK_BINARY_TXZ:BOOL=OFF + +//Enable to build TZ packages +CPACK_BINARY_TZ:BOOL=ON + +//Enable to build RPM source packages +CPACK_SOURCE_RPM:BOOL=OFF + +//Enable to build TBZ2 source packages +CPACK_SOURCE_TBZ2:BOOL=ON + +//Enable to build TGZ source packages +CPACK_SOURCE_TGZ:BOOL=ON + +//Enable to build TXZ source packages +CPACK_SOURCE_TXZ:BOOL=ON + +//Enable to build TZ source packages +CPACK_SOURCE_TZ:BOOL=ON + +//Enable to build ZIP source packages +CPACK_SOURCE_ZIP:BOOL=OFF + +//Enable gcov coverage +ENABLE_COVERAGE:BOOL=OFF + +//Build fuzz targets (requires clang) +ENABLE_FUZZ:BOOL=OFF + +//Directory under which to collect all populated content +FETCHCONTENT_BASE_DIR:PATH=/workspace/build_docker2/_deps + +//Disables all attempts to download or update content and assumes +// source dirs already exist +FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF + +//Enables QUIET option for all content population +FETCHCONTENT_QUIET:BOOL=ON + +//When not empty, overrides where to find pre-populated content +// for xxhash +FETCHCONTENT_SOURCE_DIR_XXHASH:PATH= + +//Enables UPDATE_DISCONNECTED behavior for all content population +FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of xxhash +FETCHCONTENT_UPDATES_DISCONNECTED_XXHASH:BOOL=OFF + +//Value Computed by CMake +FastFileTransfer_BINARY_DIR:STATIC=/workspace/build_docker2 + +//Value Computed by CMake +FastFileTransfer_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +FastFileTransfer_SOURCE_DIR:STATIC=/workspace + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//Path to a library. +OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so + +//Path to a file. +OPENSSL_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=PKG_CONFIG_EXECUTABLE-NOTFOUND + +//Sanitizer to enable (address, thread, undefined, none) +SANITIZER:STRING=none + +//Enable strict warnings (Wextra, Wpedantic, Werror) +STRICT_WARNINGS:BOOL=ON + +//Build the xxhsum binary +XXHASH_BUILD_XXHSUM:BOOL=ON + +XXHASH_BUNDLED_MODE:BOOL=ON + +//Path to a library. +ZSTD_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libzstd.so + +//Value Computed by CMake +xxHash_BINARY_DIR:STATIC=/workspace/build_docker2/_deps/xxhash-build + +//Value Computed by CMake +xxHash_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +xxHash_SOURCE_DIR:STATIC=/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial + + +######################## +# INTERNAL cache entries +######################## + +//Build shared libraries +BUILD_SHARED_LIBS:INTERNAL=ON +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//STRINGS property for variable: CMAKE_BUILD_TYPE +CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Debug;Release;RelWithDebInfo;MinSizeRel +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/workspace/build_docker2 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/workspace +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_DEB +CPACK_BINARY_DEB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_FREEBSD +CPACK_BINARY_FREEBSD-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_IFW +CPACK_BINARY_IFW-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NSIS +CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_RPM +CPACK_BINARY_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_STGZ +CPACK_BINARY_STGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TBZ2 +CPACK_BINARY_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TGZ +CPACK_BINARY_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TXZ +CPACK_BINARY_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TZ +CPACK_BINARY_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_RPM +CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TBZ2 +CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TGZ +CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TXZ +CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_TZ +CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_ZIP +CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 +//Details about finding OpenSSL +FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcrypto.so][/usr/include][c ][v3.0.13()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARY +OPENSSL_CRYPTO_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENSSL_INCLUDE_DIR +OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENSSL_SSL_LIBRARY +OPENSSL_SSL_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +//STRINGS property for variable: SANITIZER +SANITIZER-STRINGS:INTERNAL=address;thread;undefined;none +//ADVANCED property for variable: XXHASH_BUNDLED_MODE +XXHASH_BUNDLED_MODE-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +_OPENSSL_CFLAGS:INTERNAL= +_OPENSSL_CFLAGS_I:INTERNAL= +_OPENSSL_CFLAGS_OTHER:INTERNAL= +_OPENSSL_FOUND:INTERNAL= +_OPENSSL_INCLUDEDIR:INTERNAL= +_OPENSSL_LIBDIR:INTERNAL= +_OPENSSL_LIBS:INTERNAL= +_OPENSSL_LIBS_L:INTERNAL= +_OPENSSL_LIBS_OTHER:INTERNAL= +_OPENSSL_LIBS_PATHS:INTERNAL= +_OPENSSL_MODULE_NAME:INTERNAL= +_OPENSSL_PREFIX:INTERNAL= +_OPENSSL_STATIC_CFLAGS:INTERNAL= +_OPENSSL_STATIC_CFLAGS_I:INTERNAL= +_OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL= +_OPENSSL_STATIC_LIBDIR:INTERNAL= +_OPENSSL_STATIC_LIBS:INTERNAL= +_OPENSSL_STATIC_LIBS_L:INTERNAL= +_OPENSSL_STATIC_LIBS_OTHER:INTERNAL= +_OPENSSL_STATIC_LIBS_PATHS:INTERNAL= +_OPENSSL_VERSION:INTERNAL= +__pkg_config_checked__OPENSSL:INTERNAL=1 + diff --git a/build_docker2/CMakeFiles/3.28.3/CMakeCCompiler.cmake b/build_docker2/CMakeFiles/3.28.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..3766fe1 --- /dev/null +++ b/build_docker2/CMakeFiles/3.28.3/CMakeCCompiler.cmake @@ -0,0 +1,74 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.3.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-13") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build_docker2/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake b/build_docker2/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..8dbc9d3 --- /dev/null +++ b/build_docker2/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.3.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-13") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build_docker2/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin b/build_docker2/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..abaa3e3 Binary files /dev/null and b/build_docker2/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/build_docker2/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin b/build_docker2/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..631c9ac Binary files /dev/null and b/build_docker2/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build_docker2/CMakeFiles/3.28.3/CMakeSystem.cmake b/build_docker2/CMakeFiles/3.28.3/CMakeSystem.cmake new file mode 100644 index 0000000..23f87dc --- /dev/null +++ b/build_docker2/CMakeFiles/3.28.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.18.33") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.18.33") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.18.33") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.18.33") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build_docker2/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c b/build_docker2/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..0a0ec9b --- /dev/null +++ b/build_docker2/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,880 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build_docker2/CMakeFiles/3.28.3/CompilerIdC/a.out b/build_docker2/CMakeFiles/3.28.3/CompilerIdC/a.out new file mode 100755 index 0000000..f1ada88 Binary files /dev/null and b/build_docker2/CMakeFiles/3.28.3/CompilerIdC/a.out differ diff --git a/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9c9c90e --- /dev/null +++ b/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,869 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/a.out b/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/a.out new file mode 100755 index 0000000..e926ed9 Binary files /dev/null and b/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/a.out differ diff --git a/build_docker2/CMakeFiles/CMakeConfigureLog.yaml b/build_docker2/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..d26c43b --- /dev/null +++ b/build_docker2/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,565 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" + - "CMakeLists.txt:3 (project)" + message: | + The system is: Linux - 6.18.33 - x86_64 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /workspace/build_docker2/CMakeFiles/3.28.3/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /workspace/build_docker2/CMakeFiles/3.28.3/CompilerIdCXX/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1" + binary: "/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_e1291/fast + /usr/bin/gmake -f CMakeFiles/cmTC_e1291.dir/build.make CMakeFiles/cmTC_e1291.dir/build + gmake[1]: Entering directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1' + Building C object CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -v -o CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_e1291.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e1291.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccY4xFH7.s + GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu) + compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/13/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + Compiler executable checksum: b220a7f1a1f69970d969d254ad9ec166 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_e1291.dir/' + as -v --64 -o CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o /tmp/ccY4xFH7.s + GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_e1291 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e1291.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o -o cmTC_e1291 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e1291' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_e1291.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSjSrqu.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e1291 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e1291' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_e1291.' + gmake[1]: Leaving directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_e1291/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_e1291.dir/build.make CMakeFiles/cmTC_e1291.dir/build] + ignore line: [gmake[1]: Entering directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-HWNPN1'] + ignore line: [Building C object CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_e1291.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e1291.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccY4xFH7.s] + ignore line: [GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: b220a7f1a1f69970d969d254ad9ec166] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_e1291.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o /tmp/ccY4xFH7.s] + ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_e1291] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e1291.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o -o cmTC_e1291 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e1291' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_e1291.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSjSrqu.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e1291 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccSjSrqu.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e1291] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] + arg [CMakeFiles/cmTC_e1291.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT" + binary: "/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_732c6/fast + /usr/bin/gmake -f CMakeFiles/cmTC_732c6.dir/build.make CMakeFiles/cmTC_732c6.dir/build + gmake[1]: Entering directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT' + Building CXX object CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -v -o CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_732c6.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_732c6.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccwljyn5.s + GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu) + compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/13 + /usr/include/x86_64-linux-gnu/c++/13 + /usr/include/c++/13/backward + /usr/lib/gcc/x86_64-linux-gnu/13/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + Compiler executable checksum: 7896445e4990772fdae9dc0659a99266 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_732c6.dir/' + as -v --64 -o CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccwljyn5.s + GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_732c6 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_732c6.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_732c6 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_732c6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_732c6.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cciVuqWi.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_732c6 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_732c6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_732c6.' + gmake[1]: Leaving directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/13] + add: [/usr/include/x86_64-linux-gnu/c++/13] + add: [/usr/include/c++/13/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/13] ==> [/usr/include/c++/13] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/13] ==> [/usr/include/x86_64-linux-gnu/c++/13] + collapse include dir [/usr/include/c++/13/backward] ==> [/usr/include/c++/13/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_732c6/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_732c6.dir/build.make CMakeFiles/cmTC_732c6.dir/build] + ignore line: [gmake[1]: Entering directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-Aa1YlT'] + ignore line: [Building CXX object CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_732c6.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_732c6.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccwljyn5.s] + ignore line: [GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/13] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/13] + ignore line: [ /usr/include/c++/13/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 7896445e4990772fdae9dc0659a99266] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_732c6.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccwljyn5.s] + ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_732c6] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_732c6.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_732c6 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_732c6' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_732c6.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cciVuqWi.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_732c6 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cciVuqWi.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_732c6] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] + arg [CMakeFiles/cmTC_732c6.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/usr/share/cmake-3.28/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "/usr/share/cmake-3.28/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "/usr/share/cmake-3.28/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "CMakeLists.txt:51 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-YGAY7T" + binary: "/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-YGAY7T" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-YGAY7T' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_58bcb/fast + /usr/bin/gmake -f CMakeFiles/cmTC_58bcb.dir/build.make CMakeFiles/cmTC_58bcb.dir/build + gmake[1]: Entering directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-YGAY7T' + Building C object CMakeFiles/cmTC_58bcb.dir/src.c.o + /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu11 -o CMakeFiles/cmTC_58bcb.dir/src.c.o -c /workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-YGAY7T/src.c + Linking C executable cmTC_58bcb + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58bcb.dir/link.txt --verbose=1 + /usr/bin/cc CMakeFiles/cmTC_58bcb.dir/src.c.o -o cmTC_58bcb + gmake[1]: Leaving directory '/workspace/build_docker2/CMakeFiles/CMakeScratch/TryCompile-YGAY7T' + + exitCode: 0 +... diff --git a/build_docker2/CMakeFiles/CMakeDirectoryInformation.cmake b/build_docker2/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..04f4546 --- /dev/null +++ b/build_docker2/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/workspace") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/workspace/build_docker2") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build_docker2/CMakeFiles/Makefile.cmake b/build_docker2/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..8a1b879 --- /dev/null +++ b/build_docker2/CMakeFiles/Makefile.cmake @@ -0,0 +1,160 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/usr/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.28/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDependentOption.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.28/Modules/CPack.cmake" + "/usr/share/cmake-3.28/Modules/CPackComponent.cmake" + "/usr/share/cmake-3.28/Modules/CheckCCompilerFlag.cmake" + "/usr/share/cmake-3.28/Modules/CheckCSourceCompiles.cmake" + "/usr/share/cmake-3.28/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake-3.28/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/ExternalProject/shared_internal_commands.cmake" + "/usr/share/cmake-3.28/Modules/FetchContent.cmake" + "/usr/share/cmake-3.28/Modules/FetchContent/CMakeLists.cmake.in" + "/usr/share/cmake-3.28/Modules/FindGit.cmake" + "/usr/share/cmake-3.28/Modules/FindOpenSSL.cmake" + "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.28/Modules/FindPkgConfig.cmake" + "/usr/share/cmake-3.28/Modules/FindThreads.cmake" + "/usr/share/cmake-3.28/Modules/Internal/CheckCompilerFlag.cmake" + "/usr/share/cmake-3.28/Modules/Internal/CheckFlagCommonConfig.cmake" + "/usr/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake" + "/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.28/Templates/CPackConfig.cmake.in" + "/workspace/CMakeLists.txt" + "CMakeFiles/3.28.3/CMakeCCompiler.cmake" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "_deps/xxhash-src/cmake_unofficial/CMakeLists.txt" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "CMakeFiles/3.28.3/CMakeCCompiler.cmake" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.28.3/CMakeCCompiler.cmake" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "_deps/xxhash-subbuild/CMakeLists.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "CPackConfig.cmake" + "CPackSourceConfig.cmake" + "_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/server.dir/DependInfo.cmake" + "CMakeFiles/client.dir/DependInfo.cmake" + "CMakeFiles/tests.dir/DependInfo.cmake" + "_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake" + "_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake" + ) diff --git a/build_docker2/CMakeFiles/Makefile2 b/build_docker2/CMakeFiles/Makefile2 new file mode 100644 index 0000000..c668fe1 --- /dev/null +++ b/build_docker2/CMakeFiles/Makefile2 @@ -0,0 +1,239 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/server.dir/all +all: CMakeFiles/client.dir/all +all: CMakeFiles/tests.dir/all +all: _deps/xxhash-build/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: _deps/xxhash-build/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/server.dir/clean +clean: CMakeFiles/client.dir/clean +clean: CMakeFiles/tests.dir/clean +clean: _deps/xxhash-build/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory _deps/xxhash-build + +# Recursive "all" directory target. +_deps/xxhash-build/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all +_deps/xxhash-build/all: _deps/xxhash-build/CMakeFiles/xxhsum.dir/all +.PHONY : _deps/xxhash-build/all + +# Recursive "preinstall" directory target. +_deps/xxhash-build/preinstall: +.PHONY : _deps/xxhash-build/preinstall + +# Recursive "clean" directory target. +_deps/xxhash-build/clean: _deps/xxhash-build/CMakeFiles/xxhash.dir/clean +_deps/xxhash-build/clean: _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean +.PHONY : _deps/xxhash-build/clean + +#============================================================================= +# Target rules for target CMakeFiles/server.dir + +# All Build rule for target. +CMakeFiles/server.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 "Built target server" +.PHONY : CMakeFiles/server.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/server.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 20 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/server.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : CMakeFiles/server.dir/rule + +# Convenience name for target. +server: CMakeFiles/server.dir/rule +.PHONY : server + +# clean rule for target. +CMakeFiles/server.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/clean +.PHONY : CMakeFiles/server.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/client.dir + +# All Build rule for target. +CMakeFiles/client.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 "Built target client" +.PHONY : CMakeFiles/client.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/client.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 22 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/client.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : CMakeFiles/client.dir/rule + +# Convenience name for target. +client: CMakeFiles/client.dir/rule +.PHONY : client + +# clean rule for target. +CMakeFiles/client.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/clean +.PHONY : CMakeFiles/client.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/tests.dir + +# All Build rule for target. +CMakeFiles/tests.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Built target tests" +.PHONY : CMakeFiles/tests.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/tests.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 37 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/tests.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : CMakeFiles/tests.dir/rule + +# Convenience name for target. +tests: CMakeFiles/tests.dir/rule +.PHONY : tests + +# clean rule for target. +CMakeFiles/tests.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/clean +.PHONY : CMakeFiles/tests.dir/clean + +#============================================================================= +# Target rules for target _deps/xxhash-build/CMakeFiles/xxhash.dir + +# All Build rule for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/all: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=74,75 "Built target xxhash" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/all + +# Build rule for subdir invocation for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/rule + +# Convenience name for target. +xxhash: _deps/xxhash-build/CMakeFiles/xxhash.dir/rule +.PHONY : xxhash + +# clean rule for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/clean +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/clean + +#============================================================================= +# Target rules for target _deps/xxhash-build/CMakeFiles/xxhsum.dir + +# All Build rule for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/all: _deps/xxhash-build/CMakeFiles/xxhash.dir/all + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/depend + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=76,77,78,79,80,81,82 "Built target xxhsum" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/all + +# Build rule for subdir invocation for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 9 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhsum.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule + +# Convenience name for target. +xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule +.PHONY : xxhsum + +# clean rule for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/clean: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build_docker2/CMakeFiles/TargetDirectories.txt b/build_docker2/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..e16f1d1 --- /dev/null +++ b/build_docker2/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,15 @@ +/workspace/build_docker2/CMakeFiles/server.dir +/workspace/build_docker2/CMakeFiles/client.dir +/workspace/build_docker2/CMakeFiles/tests.dir +/workspace/build_docker2/CMakeFiles/package.dir +/workspace/build_docker2/CMakeFiles/package_source.dir +/workspace/build_docker2/CMakeFiles/test.dir +/workspace/build_docker2/CMakeFiles/edit_cache.dir +/workspace/build_docker2/CMakeFiles/rebuild_cache.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/package.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/package_source.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/test.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/edit_cache.dir +/workspace/build_docker2/_deps/xxhash-build/CMakeFiles/rebuild_cache.dir diff --git a/build_docker2/CMakeFiles/client.dir/DependInfo.cmake b/build_docker2/CMakeFiles/client.dir/DependInfo.cmake new file mode 100644 index 0000000..cb549a8 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/DependInfo.cmake @@ -0,0 +1,41 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/workspace/src/client/client_cli.c" "CMakeFiles/client.dir/src/client/client_cli.c.o" "gcc" "CMakeFiles/client.dir/src/client/client_cli.c.o.d" + "/workspace/src/client/client_send.c" "CMakeFiles/client.dir/src/client/client_send.c.o" "gcc" "CMakeFiles/client.dir/src/client/client_send.c.o.d" + "/workspace/src/client/scanner.c" "CMakeFiles/client.dir/src/client/scanner.c.o" "gcc" "CMakeFiles/client.dir/src/client/scanner.c.o.d" + "/workspace/src/shared/array_list.c" "CMakeFiles/client.dir/src/shared/array_list.c.o" "gcc" "CMakeFiles/client.dir/src/shared/array_list.c.o.d" + "/workspace/src/shared/chunk.c" "CMakeFiles/client.dir/src/shared/chunk.c.o" "gcc" "CMakeFiles/client.dir/src/shared/chunk.c.o.d" + "/workspace/src/shared/compression.c" "CMakeFiles/client.dir/src/shared/compression.c.o" "gcc" "CMakeFiles/client.dir/src/shared/compression.c.o.d" + "/workspace/src/shared/config.c" "CMakeFiles/client.dir/src/shared/config.c.o" "gcc" "CMakeFiles/client.dir/src/shared/config.c.o.d" + "/workspace/src/shared/data.c" "CMakeFiles/client.dir/src/shared/data.c.o" "gcc" "CMakeFiles/client.dir/src/shared/data.c.o.d" + "/workspace/src/shared/delta.c" "CMakeFiles/client.dir/src/shared/delta.c.o" "gcc" "CMakeFiles/client.dir/src/shared/delta.c.o.d" + "/workspace/src/shared/file.c" "CMakeFiles/client.dir/src/shared/file.c.o" "gcc" "CMakeFiles/client.dir/src/shared/file.c.o.d" + "/workspace/src/shared/log.c" "CMakeFiles/client.dir/src/shared/log.c.o" "gcc" "CMakeFiles/client.dir/src/shared/log.c.o.d" + "/workspace/src/shared/metadata.c" "CMakeFiles/client.dir/src/shared/metadata.c.o" "gcc" "CMakeFiles/client.dir/src/shared/metadata.c.o.d" + "/workspace/src/shared/multiprocessing.c" "CMakeFiles/client.dir/src/shared/multiprocessing.c.o" "gcc" "CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d" + "/workspace/src/shared/protocol.c" "CMakeFiles/client.dir/src/shared/protocol.c.o" "gcc" "CMakeFiles/client.dir/src/shared/protocol.c.o.d" + "/workspace/src/shared/queue.c" "CMakeFiles/client.dir/src/shared/queue.c.o" "gcc" "CMakeFiles/client.dir/src/shared/queue.c.o.d" + "/workspace/src/shared/transport_ssh.c" "CMakeFiles/client.dir/src/shared/transport_ssh.c.o" "gcc" "CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d" + "/workspace/src/shared/transport_tcp.c" "CMakeFiles/client.dir/src/shared/transport_tcp.c.o" "gcc" "CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d" + "/workspace/src/shared/transport_tls.c" "CMakeFiles/client.dir/src/shared/transport_tls.c.o" "gcc" "CMakeFiles/client.dir/src/shared/transport_tls.c.o.d" + "/workspace/src/shared/utils.c" "CMakeFiles/client.dir/src/shared/utils.c.o" "gcc" "CMakeFiles/client.dir/src/shared/utils.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build_docker2/CMakeFiles/client.dir/build.make b/build_docker2/CMakeFiles/client.dir/build.make new file mode 100644 index 0000000..8d847e5 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/build.make @@ -0,0 +1,402 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +# Include any dependencies generated for this target. +include CMakeFiles/client.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/client.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/client.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/client.dir/flags.make + +CMakeFiles/client.dir/src/client/client_cli.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/client/client_cli.c.o: /workspace/src/client/client_cli.c +CMakeFiles/client.dir/src/client/client_cli.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/client.dir/src/client/client_cli.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/client/client_cli.c.o -MF CMakeFiles/client.dir/src/client/client_cli.c.o.d -o CMakeFiles/client.dir/src/client/client_cli.c.o -c /workspace/src/client/client_cli.c + +CMakeFiles/client.dir/src/client/client_cli.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/client/client_cli.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/client/client_cli.c > CMakeFiles/client.dir/src/client/client_cli.c.i + +CMakeFiles/client.dir/src/client/client_cli.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/client/client_cli.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/client/client_cli.c -o CMakeFiles/client.dir/src/client/client_cli.c.s + +CMakeFiles/client.dir/src/client/client_send.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/client/client_send.c.o: /workspace/src/client/client_send.c +CMakeFiles/client.dir/src/client/client_send.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/client.dir/src/client/client_send.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/client/client_send.c.o -MF CMakeFiles/client.dir/src/client/client_send.c.o.d -o CMakeFiles/client.dir/src/client/client_send.c.o -c /workspace/src/client/client_send.c + +CMakeFiles/client.dir/src/client/client_send.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/client/client_send.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/client/client_send.c > CMakeFiles/client.dir/src/client/client_send.c.i + +CMakeFiles/client.dir/src/client/client_send.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/client/client_send.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/client/client_send.c -o CMakeFiles/client.dir/src/client/client_send.c.s + +CMakeFiles/client.dir/src/client/scanner.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/client/scanner.c.o: /workspace/src/client/scanner.c +CMakeFiles/client.dir/src/client/scanner.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/client.dir/src/client/scanner.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/client/scanner.c.o -MF CMakeFiles/client.dir/src/client/scanner.c.o.d -o CMakeFiles/client.dir/src/client/scanner.c.o -c /workspace/src/client/scanner.c + +CMakeFiles/client.dir/src/client/scanner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/client/scanner.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/client/scanner.c > CMakeFiles/client.dir/src/client/scanner.c.i + +CMakeFiles/client.dir/src/client/scanner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/client/scanner.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/client/scanner.c -o CMakeFiles/client.dir/src/client/scanner.c.s + +CMakeFiles/client.dir/src/shared/array_list.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/array_list.c.o: /workspace/src/shared/array_list.c +CMakeFiles/client.dir/src/shared/array_list.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/client.dir/src/shared/array_list.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/array_list.c.o -MF CMakeFiles/client.dir/src/shared/array_list.c.o.d -o CMakeFiles/client.dir/src/shared/array_list.c.o -c /workspace/src/shared/array_list.c + +CMakeFiles/client.dir/src/shared/array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/array_list.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/array_list.c > CMakeFiles/client.dir/src/shared/array_list.c.i + +CMakeFiles/client.dir/src/shared/array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/array_list.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/array_list.c -o CMakeFiles/client.dir/src/shared/array_list.c.s + +CMakeFiles/client.dir/src/shared/chunk.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/chunk.c.o: /workspace/src/shared/chunk.c +CMakeFiles/client.dir/src/shared/chunk.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/client.dir/src/shared/chunk.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/chunk.c.o -MF CMakeFiles/client.dir/src/shared/chunk.c.o.d -o CMakeFiles/client.dir/src/shared/chunk.c.o -c /workspace/src/shared/chunk.c + +CMakeFiles/client.dir/src/shared/chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/chunk.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/chunk.c > CMakeFiles/client.dir/src/shared/chunk.c.i + +CMakeFiles/client.dir/src/shared/chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/chunk.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/chunk.c -o CMakeFiles/client.dir/src/shared/chunk.c.s + +CMakeFiles/client.dir/src/shared/compression.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/compression.c.o: /workspace/src/shared/compression.c +CMakeFiles/client.dir/src/shared/compression.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/client.dir/src/shared/compression.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/compression.c.o -MF CMakeFiles/client.dir/src/shared/compression.c.o.d -o CMakeFiles/client.dir/src/shared/compression.c.o -c /workspace/src/shared/compression.c + +CMakeFiles/client.dir/src/shared/compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/compression.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/compression.c > CMakeFiles/client.dir/src/shared/compression.c.i + +CMakeFiles/client.dir/src/shared/compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/compression.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/compression.c -o CMakeFiles/client.dir/src/shared/compression.c.s + +CMakeFiles/client.dir/src/shared/config.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/config.c.o: /workspace/src/shared/config.c +CMakeFiles/client.dir/src/shared/config.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/client.dir/src/shared/config.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/config.c.o -MF CMakeFiles/client.dir/src/shared/config.c.o.d -o CMakeFiles/client.dir/src/shared/config.c.o -c /workspace/src/shared/config.c + +CMakeFiles/client.dir/src/shared/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/config.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/config.c > CMakeFiles/client.dir/src/shared/config.c.i + +CMakeFiles/client.dir/src/shared/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/config.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/config.c -o CMakeFiles/client.dir/src/shared/config.c.s + +CMakeFiles/client.dir/src/shared/data.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/data.c.o: /workspace/src/shared/data.c +CMakeFiles/client.dir/src/shared/data.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/client.dir/src/shared/data.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/data.c.o -MF CMakeFiles/client.dir/src/shared/data.c.o.d -o CMakeFiles/client.dir/src/shared/data.c.o -c /workspace/src/shared/data.c + +CMakeFiles/client.dir/src/shared/data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/data.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/data.c > CMakeFiles/client.dir/src/shared/data.c.i + +CMakeFiles/client.dir/src/shared/data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/data.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/data.c -o CMakeFiles/client.dir/src/shared/data.c.s + +CMakeFiles/client.dir/src/shared/delta.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/delta.c.o: /workspace/src/shared/delta.c +CMakeFiles/client.dir/src/shared/delta.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/client.dir/src/shared/delta.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/delta.c.o -MF CMakeFiles/client.dir/src/shared/delta.c.o.d -o CMakeFiles/client.dir/src/shared/delta.c.o -c /workspace/src/shared/delta.c + +CMakeFiles/client.dir/src/shared/delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/delta.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/delta.c > CMakeFiles/client.dir/src/shared/delta.c.i + +CMakeFiles/client.dir/src/shared/delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/delta.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/delta.c -o CMakeFiles/client.dir/src/shared/delta.c.s + +CMakeFiles/client.dir/src/shared/file.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/file.c.o: /workspace/src/shared/file.c +CMakeFiles/client.dir/src/shared/file.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/client.dir/src/shared/file.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/file.c.o -MF CMakeFiles/client.dir/src/shared/file.c.o.d -o CMakeFiles/client.dir/src/shared/file.c.o -c /workspace/src/shared/file.c + +CMakeFiles/client.dir/src/shared/file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/file.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/file.c > CMakeFiles/client.dir/src/shared/file.c.i + +CMakeFiles/client.dir/src/shared/file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/file.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/file.c -o CMakeFiles/client.dir/src/shared/file.c.s + +CMakeFiles/client.dir/src/shared/log.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/log.c.o: /workspace/src/shared/log.c +CMakeFiles/client.dir/src/shared/log.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/client.dir/src/shared/log.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/log.c.o -MF CMakeFiles/client.dir/src/shared/log.c.o.d -o CMakeFiles/client.dir/src/shared/log.c.o -c /workspace/src/shared/log.c + +CMakeFiles/client.dir/src/shared/log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/log.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/log.c > CMakeFiles/client.dir/src/shared/log.c.i + +CMakeFiles/client.dir/src/shared/log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/log.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/log.c -o CMakeFiles/client.dir/src/shared/log.c.s + +CMakeFiles/client.dir/src/shared/metadata.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/metadata.c.o: /workspace/src/shared/metadata.c +CMakeFiles/client.dir/src/shared/metadata.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/client.dir/src/shared/metadata.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/metadata.c.o -MF CMakeFiles/client.dir/src/shared/metadata.c.o.d -o CMakeFiles/client.dir/src/shared/metadata.c.o -c /workspace/src/shared/metadata.c + +CMakeFiles/client.dir/src/shared/metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/metadata.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/metadata.c > CMakeFiles/client.dir/src/shared/metadata.c.i + +CMakeFiles/client.dir/src/shared/metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/metadata.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/metadata.c -o CMakeFiles/client.dir/src/shared/metadata.c.s + +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: /workspace/src/shared/multiprocessing.c +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/client.dir/src/shared/multiprocessing.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/multiprocessing.c.o -MF CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d -o CMakeFiles/client.dir/src/shared/multiprocessing.c.o -c /workspace/src/shared/multiprocessing.c + +CMakeFiles/client.dir/src/shared/multiprocessing.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/multiprocessing.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/multiprocessing.c > CMakeFiles/client.dir/src/shared/multiprocessing.c.i + +CMakeFiles/client.dir/src/shared/multiprocessing.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/multiprocessing.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/multiprocessing.c -o CMakeFiles/client.dir/src/shared/multiprocessing.c.s + +CMakeFiles/client.dir/src/shared/protocol.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/protocol.c.o: /workspace/src/shared/protocol.c +CMakeFiles/client.dir/src/shared/protocol.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/client.dir/src/shared/protocol.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/protocol.c.o -MF CMakeFiles/client.dir/src/shared/protocol.c.o.d -o CMakeFiles/client.dir/src/shared/protocol.c.o -c /workspace/src/shared/protocol.c + +CMakeFiles/client.dir/src/shared/protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/protocol.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/protocol.c > CMakeFiles/client.dir/src/shared/protocol.c.i + +CMakeFiles/client.dir/src/shared/protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/protocol.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/protocol.c -o CMakeFiles/client.dir/src/shared/protocol.c.s + +CMakeFiles/client.dir/src/shared/queue.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/queue.c.o: /workspace/src/shared/queue.c +CMakeFiles/client.dir/src/shared/queue.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/client.dir/src/shared/queue.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/queue.c.o -MF CMakeFiles/client.dir/src/shared/queue.c.o.d -o CMakeFiles/client.dir/src/shared/queue.c.o -c /workspace/src/shared/queue.c + +CMakeFiles/client.dir/src/shared/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/queue.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/queue.c > CMakeFiles/client.dir/src/shared/queue.c.i + +CMakeFiles/client.dir/src/shared/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/queue.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/queue.c -o CMakeFiles/client.dir/src/shared/queue.c.s + +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: /workspace/src/shared/transport_ssh.c +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/client.dir/src/shared/transport_ssh.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/transport_ssh.c.o -MF CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d -o CMakeFiles/client.dir/src/shared/transport_ssh.c.o -c /workspace/src/shared/transport_ssh.c + +CMakeFiles/client.dir/src/shared/transport_ssh.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/transport_ssh.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_ssh.c > CMakeFiles/client.dir/src/shared/transport_ssh.c.i + +CMakeFiles/client.dir/src/shared/transport_ssh.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/transport_ssh.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_ssh.c -o CMakeFiles/client.dir/src/shared/transport_ssh.c.s + +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: /workspace/src/shared/transport_tcp.c +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/client.dir/src/shared/transport_tcp.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/transport_tcp.c.o -MF CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d -o CMakeFiles/client.dir/src/shared/transport_tcp.c.o -c /workspace/src/shared/transport_tcp.c + +CMakeFiles/client.dir/src/shared/transport_tcp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/transport_tcp.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_tcp.c > CMakeFiles/client.dir/src/shared/transport_tcp.c.i + +CMakeFiles/client.dir/src/shared/transport_tcp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/transport_tcp.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_tcp.c -o CMakeFiles/client.dir/src/shared/transport_tcp.c.s + +CMakeFiles/client.dir/src/shared/transport_tls.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/transport_tls.c.o: /workspace/src/shared/transport_tls.c +CMakeFiles/client.dir/src/shared/transport_tls.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/client.dir/src/shared/transport_tls.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/transport_tls.c.o -MF CMakeFiles/client.dir/src/shared/transport_tls.c.o.d -o CMakeFiles/client.dir/src/shared/transport_tls.c.o -c /workspace/src/shared/transport_tls.c + +CMakeFiles/client.dir/src/shared/transport_tls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/transport_tls.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_tls.c > CMakeFiles/client.dir/src/shared/transport_tls.c.i + +CMakeFiles/client.dir/src/shared/transport_tls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/transport_tls.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_tls.c -o CMakeFiles/client.dir/src/shared/transport_tls.c.s + +CMakeFiles/client.dir/src/shared/utils.c.o: CMakeFiles/client.dir/flags.make +CMakeFiles/client.dir/src/shared/utils.c.o: /workspace/src/shared/utils.c +CMakeFiles/client.dir/src/shared/utils.c.o: CMakeFiles/client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/client.dir/src/shared/utils.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/client.dir/src/shared/utils.c.o -MF CMakeFiles/client.dir/src/shared/utils.c.o.d -o CMakeFiles/client.dir/src/shared/utils.c.o -c /workspace/src/shared/utils.c + +CMakeFiles/client.dir/src/shared/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/client.dir/src/shared/utils.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/utils.c > CMakeFiles/client.dir/src/shared/utils.c.i + +CMakeFiles/client.dir/src/shared/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/client.dir/src/shared/utils.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/utils.c -o CMakeFiles/client.dir/src/shared/utils.c.s + +# Object files for target client +client_OBJECTS = \ +"CMakeFiles/client.dir/src/client/client_cli.c.o" \ +"CMakeFiles/client.dir/src/client/client_send.c.o" \ +"CMakeFiles/client.dir/src/client/scanner.c.o" \ +"CMakeFiles/client.dir/src/shared/array_list.c.o" \ +"CMakeFiles/client.dir/src/shared/chunk.c.o" \ +"CMakeFiles/client.dir/src/shared/compression.c.o" \ +"CMakeFiles/client.dir/src/shared/config.c.o" \ +"CMakeFiles/client.dir/src/shared/data.c.o" \ +"CMakeFiles/client.dir/src/shared/delta.c.o" \ +"CMakeFiles/client.dir/src/shared/file.c.o" \ +"CMakeFiles/client.dir/src/shared/log.c.o" \ +"CMakeFiles/client.dir/src/shared/metadata.c.o" \ +"CMakeFiles/client.dir/src/shared/multiprocessing.c.o" \ +"CMakeFiles/client.dir/src/shared/protocol.c.o" \ +"CMakeFiles/client.dir/src/shared/queue.c.o" \ +"CMakeFiles/client.dir/src/shared/transport_ssh.c.o" \ +"CMakeFiles/client.dir/src/shared/transport_tcp.c.o" \ +"CMakeFiles/client.dir/src/shared/transport_tls.c.o" \ +"CMakeFiles/client.dir/src/shared/utils.c.o" + +# External object files for target client +client_EXTERNAL_OBJECTS = + +client: CMakeFiles/client.dir/src/client/client_cli.c.o +client: CMakeFiles/client.dir/src/client/client_send.c.o +client: CMakeFiles/client.dir/src/client/scanner.c.o +client: CMakeFiles/client.dir/src/shared/array_list.c.o +client: CMakeFiles/client.dir/src/shared/chunk.c.o +client: CMakeFiles/client.dir/src/shared/compression.c.o +client: CMakeFiles/client.dir/src/shared/config.c.o +client: CMakeFiles/client.dir/src/shared/data.c.o +client: CMakeFiles/client.dir/src/shared/delta.c.o +client: CMakeFiles/client.dir/src/shared/file.c.o +client: CMakeFiles/client.dir/src/shared/log.c.o +client: CMakeFiles/client.dir/src/shared/metadata.c.o +client: CMakeFiles/client.dir/src/shared/multiprocessing.c.o +client: CMakeFiles/client.dir/src/shared/protocol.c.o +client: CMakeFiles/client.dir/src/shared/queue.c.o +client: CMakeFiles/client.dir/src/shared/transport_ssh.c.o +client: CMakeFiles/client.dir/src/shared/transport_tcp.c.o +client: CMakeFiles/client.dir/src/shared/transport_tls.c.o +client: CMakeFiles/client.dir/src/shared/utils.c.o +client: CMakeFiles/client.dir/build.make +client: /usr/lib/x86_64-linux-gnu/libzstd.so +client: /usr/lib/x86_64-linux-gnu/libssl.so +client: /usr/lib/x86_64-linux-gnu/libcrypto.so +client: _deps/xxhash-build/libxxhash.a +client: CMakeFiles/client.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Linking C executable client" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/client.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/client.dir/build: client +.PHONY : CMakeFiles/client.dir/build + +CMakeFiles/client.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/client.dir/cmake_clean.cmake +.PHONY : CMakeFiles/client.dir/clean + +CMakeFiles/client.dir/depend: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace /workspace /workspace/build_docker2 /workspace/build_docker2 /workspace/build_docker2/CMakeFiles/client.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/client.dir/depend + diff --git a/build_docker2/CMakeFiles/client.dir/cmake_clean.cmake b/build_docker2/CMakeFiles/client.dir/cmake_clean.cmake new file mode 100644 index 0000000..10488ab --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/cmake_clean.cmake @@ -0,0 +1,47 @@ +file(REMOVE_RECURSE + "CMakeFiles/client.dir/src/client/client_cli.c.o" + "CMakeFiles/client.dir/src/client/client_cli.c.o.d" + "CMakeFiles/client.dir/src/client/client_send.c.o" + "CMakeFiles/client.dir/src/client/client_send.c.o.d" + "CMakeFiles/client.dir/src/client/scanner.c.o" + "CMakeFiles/client.dir/src/client/scanner.c.o.d" + "CMakeFiles/client.dir/src/shared/array_list.c.o" + "CMakeFiles/client.dir/src/shared/array_list.c.o.d" + "CMakeFiles/client.dir/src/shared/chunk.c.o" + "CMakeFiles/client.dir/src/shared/chunk.c.o.d" + "CMakeFiles/client.dir/src/shared/compression.c.o" + "CMakeFiles/client.dir/src/shared/compression.c.o.d" + "CMakeFiles/client.dir/src/shared/config.c.o" + "CMakeFiles/client.dir/src/shared/config.c.o.d" + "CMakeFiles/client.dir/src/shared/data.c.o" + "CMakeFiles/client.dir/src/shared/data.c.o.d" + "CMakeFiles/client.dir/src/shared/delta.c.o" + "CMakeFiles/client.dir/src/shared/delta.c.o.d" + "CMakeFiles/client.dir/src/shared/file.c.o" + "CMakeFiles/client.dir/src/shared/file.c.o.d" + "CMakeFiles/client.dir/src/shared/log.c.o" + "CMakeFiles/client.dir/src/shared/log.c.o.d" + "CMakeFiles/client.dir/src/shared/metadata.c.o" + "CMakeFiles/client.dir/src/shared/metadata.c.o.d" + "CMakeFiles/client.dir/src/shared/multiprocessing.c.o" + "CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d" + "CMakeFiles/client.dir/src/shared/protocol.c.o" + "CMakeFiles/client.dir/src/shared/protocol.c.o.d" + "CMakeFiles/client.dir/src/shared/queue.c.o" + "CMakeFiles/client.dir/src/shared/queue.c.o.d" + "CMakeFiles/client.dir/src/shared/transport_ssh.c.o" + "CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d" + "CMakeFiles/client.dir/src/shared/transport_tcp.c.o" + "CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d" + "CMakeFiles/client.dir/src/shared/transport_tls.c.o" + "CMakeFiles/client.dir/src/shared/transport_tls.c.o.d" + "CMakeFiles/client.dir/src/shared/utils.c.o" + "CMakeFiles/client.dir/src/shared/utils.c.o.d" + "client" + "client.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/client.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build_docker2/CMakeFiles/client.dir/compiler_depend.make b/build_docker2/CMakeFiles/client.dir/compiler_depend.make new file mode 100644 index 0000000..690122a --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for client. +# This may be replaced when dependencies are built. diff --git a/build_docker2/CMakeFiles/client.dir/compiler_depend.ts b/build_docker2/CMakeFiles/client.dir/compiler_depend.ts new file mode 100644 index 0000000..d3a74eb --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for client. diff --git a/build_docker2/CMakeFiles/client.dir/depend.make b/build_docker2/CMakeFiles/client.dir/depend.make new file mode 100644 index 0000000..8a28b9f --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for client. +# This may be replaced when dependencies are built. diff --git a/build_docker2/CMakeFiles/client.dir/flags.make b/build_docker2/CMakeFiles/client.dir/flags.make new file mode 100644 index 0000000..43b8b36 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror + diff --git a/build_docker2/CMakeFiles/client.dir/link.txt b/build_docker2/CMakeFiles/client.dir/link.txt new file mode 100644 index 0000000..24dac30 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -O3 -DNDEBUG CMakeFiles/client.dir/src/client/client_cli.c.o CMakeFiles/client.dir/src/client/client_send.c.o CMakeFiles/client.dir/src/client/scanner.c.o CMakeFiles/client.dir/src/shared/array_list.c.o CMakeFiles/client.dir/src/shared/chunk.c.o CMakeFiles/client.dir/src/shared/compression.c.o CMakeFiles/client.dir/src/shared/config.c.o CMakeFiles/client.dir/src/shared/data.c.o CMakeFiles/client.dir/src/shared/delta.c.o CMakeFiles/client.dir/src/shared/file.c.o CMakeFiles/client.dir/src/shared/log.c.o CMakeFiles/client.dir/src/shared/metadata.c.o CMakeFiles/client.dir/src/shared/multiprocessing.c.o CMakeFiles/client.dir/src/shared/protocol.c.o CMakeFiles/client.dir/src/shared/queue.c.o CMakeFiles/client.dir/src/shared/transport_ssh.c.o CMakeFiles/client.dir/src/shared/transport_tcp.c.o CMakeFiles/client.dir/src/shared/transport_tls.c.o CMakeFiles/client.dir/src/shared/utils.c.o -o client /usr/lib/x86_64-linux-gnu/libzstd.so /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so _deps/xxhash-build/libxxhash.a diff --git a/build_docker2/CMakeFiles/client.dir/progress.make b/build_docker2/CMakeFiles/client.dir/progress.make new file mode 100644 index 0000000..a923c4b --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/progress.make @@ -0,0 +1,21 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 +CMAKE_PROGRESS_19 = 19 +CMAKE_PROGRESS_20 = 20 + diff --git a/build_docker2/CMakeFiles/client.dir/src/client/client_cli.c.o b/build_docker2/CMakeFiles/client.dir/src/client/client_cli.c.o new file mode 100644 index 0000000..026837a Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/client/client_cli.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/client/client_cli.c.o.d b/build_docker2/CMakeFiles/client.dir/src/client/client_cli.c.o.d new file mode 100644 index 0000000..8562b00 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/client/client_cli.c.o.d @@ -0,0 +1,107 @@ +CMakeFiles/client.dir/src/client/client_cli.c.o: \ + /workspace/src/client/client_cli.c /usr/include/stdc-predef.h \ + /workspace/src/client/client_send.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/config.h /workspace/src/shared/transport_tcp.h \ + /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h /workspace/src/shared/delta.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/transport_tls.h \ + /workspace/src/shared/transport_tcp.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/client.dir/src/client/client_send.c.o b/build_docker2/CMakeFiles/client.dir/src/client/client_send.c.o new file mode 100644 index 0000000..63c5fdf Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/client/client_send.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/client/client_send.c.o.d b/build_docker2/CMakeFiles/client.dir/src/client/client_send.c.o.d new file mode 100644 index 0000000..0dd711c --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/client/client_send.c.o.d @@ -0,0 +1,121 @@ +CMakeFiles/client.dir/src/client/client_send.c.o: \ + /workspace/src/client/client_send.c /usr/include/stdc-predef.h \ + /workspace/src/client/client_send.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/config.h /workspace/src/shared/transport_tcp.h \ + /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/compression.h \ + /workspace/src/shared/data.h /workspace/src/shared/delta.h \ + /workspace/src/shared/file.h /workspace/src/shared/metadata.h \ + /workspace/src/shared/log.h /workspace/src/shared/multiprocessing.h \ + /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/queue.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/queue.h \ + /workspace/src/client/scanner.h /usr/include/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ + /workspace/src/shared/transport_ssh.h \ + /workspace/src/shared/transport_tcp.h \ + /workspace/src/shared/transport_tls.h /workspace/src/shared/utils.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/client/scanner.c.o b/build_docker2/CMakeFiles/client.dir/src/client/scanner.c.o new file mode 100644 index 0000000..cb9f7da Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/client/scanner.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/client/scanner.c.o.d b/build_docker2/CMakeFiles/client.dir/src/client/scanner.c.o.d new file mode 100644 index 0000000..af5c017 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/client/scanner.c.o.d @@ -0,0 +1,94 @@ +CMakeFiles/client.dir/src/client/scanner.c.o: \ + /workspace/src/client/scanner.c /usr/include/stdc-predef.h \ + /workspace/src/client/scanner.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/file.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/array_list.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/array_list.c.o new file mode 100644 index 0000000..882626e Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/array_list.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/array_list.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/array_list.c.o.d new file mode 100644 index 0000000..6bd9758 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/array_list.c.o.d @@ -0,0 +1,64 @@ +CMakeFiles/client.dir/src/shared/array_list.c.o: \ + /workspace/src/shared/array_list.c /usr/include/stdc-predef.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/chunk.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/chunk.c.o new file mode 100644 index 0000000..7ffe906 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/chunk.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/chunk.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/chunk.c.o.d new file mode 100644 index 0000000..91929ef --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/chunk.c.o.d @@ -0,0 +1,75 @@ +CMakeFiles/client.dir/src/shared/chunk.c.o: /workspace/src/shared/chunk.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/compression.h /workspace/src/shared/log.h \ + /workspace/src/shared/metadata.h /workspace/src/shared/protocol.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/compression.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/compression.c.o new file mode 100644 index 0000000..e7bd4df Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/compression.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/compression.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/compression.c.o.d new file mode 100644 index 0000000..77c4bfb --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/compression.c.o.d @@ -0,0 +1,62 @@ +CMakeFiles/client.dir/src/shared/compression.c.o: \ + /workspace/src/shared/compression.c /usr/include/stdc-predef.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/zstd.h /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/config.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/config.c.o new file mode 100644 index 0000000..c0d13b8 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/config.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/config.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/config.c.o.d new file mode 100644 index 0000000..0d1b60e --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/config.c.o.d @@ -0,0 +1,71 @@ +CMakeFiles/client.dir/src/shared/config.c.o: \ + /workspace/src/shared/config.c /usr/include/stdc-predef.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/delta.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/log.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/data.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/data.c.o new file mode 100644 index 0000000..c291e94 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/data.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/data.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/data.c.o.d new file mode 100644 index 0000000..dfa9e89 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/data.c.o.d @@ -0,0 +1,46 @@ +CMakeFiles/client.dir/src/shared/data.c.o: /workspace/src/shared/data.c \ + /usr/include/stdc-predef.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/log.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/delta.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/delta.c.o new file mode 100644 index 0000000..ab4174d Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/delta.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/delta.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/delta.c.o.d new file mode 100644 index 0000000..cfb0140 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/delta.c.o.d @@ -0,0 +1,70 @@ +CMakeFiles/client.dir/src/shared/delta.c.o: /workspace/src/shared/delta.c \ + /usr/include/stdc-predef.h /workspace/src/shared/delta.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/log.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/../xxhash.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/file.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/file.c.o new file mode 100644 index 0000000..85ac9a3 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/file.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/file.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/file.c.o.d new file mode 100644 index 0000000..d22d690 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/file.c.o.d @@ -0,0 +1,96 @@ +CMakeFiles/client.dir/src/shared/file.c.o: /workspace/src/shared/file.c \ + /usr/include/stdc-predef.h /usr/include/dirent.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/libgen.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/sendfile.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/delta.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/log.h /workspace/src/shared/config.h \ + /workspace/src/shared/file.h /workspace/src/shared/metadata.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/log.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/log.c.o new file mode 100644 index 0000000..a81acec Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/log.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/log.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/log.c.o.d new file mode 100644 index 0000000..6430446 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/log.c.o.d @@ -0,0 +1,40 @@ +CMakeFiles/client.dir/src/shared/log.c.o: /workspace/src/shared/log.c \ + /usr/include/stdc-predef.h /workspace/src/shared/log.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/metadata.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/metadata.c.o new file mode 100644 index 0000000..41d7f04 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/metadata.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/metadata.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/metadata.c.o.d new file mode 100644 index 0000000..773fe38 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/metadata.c.o.d @@ -0,0 +1,79 @@ +CMakeFiles/client.dir/src/shared/metadata.c.o: \ + /workspace/src/shared/metadata.c /usr/include/stdc-predef.h \ + /workspace/src/shared/metadata.h /workspace/src/shared/file.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/multiprocessing.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/multiprocessing.c.o new file mode 100644 index 0000000..d86779a Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/multiprocessing.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d new file mode 100644 index 0000000..92352ae --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/multiprocessing.c.o.d @@ -0,0 +1,80 @@ +CMakeFiles/client.dir/src/shared/multiprocessing.c.o: \ + /workspace/src/shared/multiprocessing.c /usr/include/stdc-predef.h \ + /workspace/src/shared/multiprocessing.h /usr/include/threads.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/file.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/protocol.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/protocol.c.o new file mode 100644 index 0000000..27c5ec3 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/protocol.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/protocol.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/protocol.c.o.d new file mode 100644 index 0000000..9bc8a93 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/protocol.c.o.d @@ -0,0 +1,136 @@ +CMakeFiles/client.dir/src/shared/protocol.c.o: \ + /workspace/src/shared/protocol.c /usr/include/stdc-predef.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ + /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ + /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ + /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ + /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ + /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ + /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ + /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ + /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ + /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ + /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ + /usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \ + /usr/include/x86_64-linux-gnu/bits/poll.h \ + /usr/include/x86_64-linux-gnu/bits/poll2.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/queue.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/queue.c.o new file mode 100644 index 0000000..b1ec05f Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/queue.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/queue.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/queue.c.o.d new file mode 100644 index 0000000..0fc1b4f --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/queue.c.o.d @@ -0,0 +1,68 @@ +CMakeFiles/client.dir/src/shared/queue.c.o: /workspace/src/shared/queue.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /workspace/src/shared/queue.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/transport_ssh.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/transport_ssh.c.o new file mode 100644 index 0000000..08bb1e4 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/transport_ssh.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d new file mode 100644 index 0000000..ee43184 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/transport_ssh.c.o.d @@ -0,0 +1,120 @@ +CMakeFiles/client.dir/src/shared/transport_ssh.c.o: \ + /workspace/src/shared/transport_ssh.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_ssh.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/transport_tcp.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tcp.c.o new file mode 100644 index 0000000..e7e189f Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tcp.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d new file mode 100644 index 0000000..c5cd862 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tcp.c.o.d @@ -0,0 +1,171 @@ +CMakeFiles/client.dir/src/shared/transport_tcp.c.o: \ + /workspace/src/shared/transport_tcp.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/arpa/inet.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ + /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ + /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ + /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ + /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ + /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ + /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ + /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ + /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ + /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ + /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ + /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/transport_tls.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tls.c.o new file mode 100644 index 0000000..b631633 Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tls.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/transport_tls.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tls.c.o.d new file mode 100644 index 0000000..64f7783 --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/transport_tls.c.o.d @@ -0,0 +1,174 @@ +CMakeFiles/client.dir/src/shared/transport_tls.c.o: \ + /workspace/src/shared/transport_tls.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_tls.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/arpa/inet.h \ + /usr/include/openssl/err.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/bio.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/lhash.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/pkcs7.h /usr/include/openssl/pkcs7err.h \ + /usr/include/openssl/http.h /usr/include/openssl/conf.h \ + /usr/include/openssl/conferr.h /usr/include/openssl/conftypes.h \ + /usr/include/openssl/pem.h /usr/include/openssl/pemerr.h \ + /usr/include/openssl/hmac.h /usr/include/openssl/async.h \ + /usr/include/openssl/asyncerr.h /usr/include/openssl/ct.h \ + /usr/include/openssl/cterr.h /usr/include/openssl/sslerr.h \ + /usr/include/openssl/sslerr_legacy.h /usr/include/openssl/prov_ssl.h \ + /usr/include/openssl/ssl2.h /usr/include/openssl/ssl3.h \ + /usr/include/openssl/tls1.h /usr/include/openssl/dtls1.h \ + /usr/include/openssl/srtp.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/utils.c.o b/build_docker2/CMakeFiles/client.dir/src/shared/utils.c.o new file mode 100644 index 0000000..e3221eb Binary files /dev/null and b/build_docker2/CMakeFiles/client.dir/src/shared/utils.c.o differ diff --git a/build_docker2/CMakeFiles/client.dir/src/shared/utils.c.o.d b/build_docker2/CMakeFiles/client.dir/src/shared/utils.c.o.d new file mode 100644 index 0000000..2dc63ac --- /dev/null +++ b/build_docker2/CMakeFiles/client.dir/src/shared/utils.c.o.d @@ -0,0 +1,86 @@ +CMakeFiles/client.dir/src/shared/utils.c.o: /workspace/src/shared/utils.c \ + /usr/include/stdc-predef.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/libgen.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/cmake.check_cache b/build_docker2/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build_docker2/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build_docker2/CMakeFiles/progress.marks b/build_docker2/CMakeFiles/progress.marks new file mode 100644 index 0000000..dde92dd --- /dev/null +++ b/build_docker2/CMakeFiles/progress.marks @@ -0,0 +1 @@ +82 diff --git a/build_docker2/CMakeFiles/server.dir/DependInfo.cmake b/build_docker2/CMakeFiles/server.dir/DependInfo.cmake new file mode 100644 index 0000000..8f1e22f --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/DependInfo.cmake @@ -0,0 +1,39 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/workspace/src/server/server.c" "CMakeFiles/server.dir/src/server/server.c.o" "gcc" "CMakeFiles/server.dir/src/server/server.c.o.d" + "/workspace/src/shared/array_list.c" "CMakeFiles/server.dir/src/shared/array_list.c.o" "gcc" "CMakeFiles/server.dir/src/shared/array_list.c.o.d" + "/workspace/src/shared/chunk.c" "CMakeFiles/server.dir/src/shared/chunk.c.o" "gcc" "CMakeFiles/server.dir/src/shared/chunk.c.o.d" + "/workspace/src/shared/compression.c" "CMakeFiles/server.dir/src/shared/compression.c.o" "gcc" "CMakeFiles/server.dir/src/shared/compression.c.o.d" + "/workspace/src/shared/config.c" "CMakeFiles/server.dir/src/shared/config.c.o" "gcc" "CMakeFiles/server.dir/src/shared/config.c.o.d" + "/workspace/src/shared/data.c" "CMakeFiles/server.dir/src/shared/data.c.o" "gcc" "CMakeFiles/server.dir/src/shared/data.c.o.d" + "/workspace/src/shared/delta.c" "CMakeFiles/server.dir/src/shared/delta.c.o" "gcc" "CMakeFiles/server.dir/src/shared/delta.c.o.d" + "/workspace/src/shared/file.c" "CMakeFiles/server.dir/src/shared/file.c.o" "gcc" "CMakeFiles/server.dir/src/shared/file.c.o.d" + "/workspace/src/shared/log.c" "CMakeFiles/server.dir/src/shared/log.c.o" "gcc" "CMakeFiles/server.dir/src/shared/log.c.o.d" + "/workspace/src/shared/metadata.c" "CMakeFiles/server.dir/src/shared/metadata.c.o" "gcc" "CMakeFiles/server.dir/src/shared/metadata.c.o.d" + "/workspace/src/shared/multiprocessing.c" "CMakeFiles/server.dir/src/shared/multiprocessing.c.o" "gcc" "CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d" + "/workspace/src/shared/protocol.c" "CMakeFiles/server.dir/src/shared/protocol.c.o" "gcc" "CMakeFiles/server.dir/src/shared/protocol.c.o.d" + "/workspace/src/shared/queue.c" "CMakeFiles/server.dir/src/shared/queue.c.o" "gcc" "CMakeFiles/server.dir/src/shared/queue.c.o.d" + "/workspace/src/shared/transport_ssh.c" "CMakeFiles/server.dir/src/shared/transport_ssh.c.o" "gcc" "CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d" + "/workspace/src/shared/transport_tcp.c" "CMakeFiles/server.dir/src/shared/transport_tcp.c.o" "gcc" "CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d" + "/workspace/src/shared/transport_tls.c" "CMakeFiles/server.dir/src/shared/transport_tls.c.o" "gcc" "CMakeFiles/server.dir/src/shared/transport_tls.c.o.d" + "/workspace/src/shared/utils.c" "CMakeFiles/server.dir/src/shared/utils.c.o" "gcc" "CMakeFiles/server.dir/src/shared/utils.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build_docker2/CMakeFiles/server.dir/build.make b/build_docker2/CMakeFiles/server.dir/build.make new file mode 100644 index 0000000..edd76fc --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/build.make @@ -0,0 +1,370 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +# Include any dependencies generated for this target. +include CMakeFiles/server.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/server.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/server.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/server.dir/flags.make + +CMakeFiles/server.dir/src/server/server.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/server/server.c.o: /workspace/src/server/server.c +CMakeFiles/server.dir/src/server/server.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/server.dir/src/server/server.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/server/server.c.o -MF CMakeFiles/server.dir/src/server/server.c.o.d -o CMakeFiles/server.dir/src/server/server.c.o -c /workspace/src/server/server.c + +CMakeFiles/server.dir/src/server/server.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/server/server.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/server/server.c > CMakeFiles/server.dir/src/server/server.c.i + +CMakeFiles/server.dir/src/server/server.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/server/server.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/server/server.c -o CMakeFiles/server.dir/src/server/server.c.s + +CMakeFiles/server.dir/src/shared/array_list.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/array_list.c.o: /workspace/src/shared/array_list.c +CMakeFiles/server.dir/src/shared/array_list.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/server.dir/src/shared/array_list.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/array_list.c.o -MF CMakeFiles/server.dir/src/shared/array_list.c.o.d -o CMakeFiles/server.dir/src/shared/array_list.c.o -c /workspace/src/shared/array_list.c + +CMakeFiles/server.dir/src/shared/array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/array_list.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/array_list.c > CMakeFiles/server.dir/src/shared/array_list.c.i + +CMakeFiles/server.dir/src/shared/array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/array_list.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/array_list.c -o CMakeFiles/server.dir/src/shared/array_list.c.s + +CMakeFiles/server.dir/src/shared/chunk.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/chunk.c.o: /workspace/src/shared/chunk.c +CMakeFiles/server.dir/src/shared/chunk.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/server.dir/src/shared/chunk.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/chunk.c.o -MF CMakeFiles/server.dir/src/shared/chunk.c.o.d -o CMakeFiles/server.dir/src/shared/chunk.c.o -c /workspace/src/shared/chunk.c + +CMakeFiles/server.dir/src/shared/chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/chunk.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/chunk.c > CMakeFiles/server.dir/src/shared/chunk.c.i + +CMakeFiles/server.dir/src/shared/chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/chunk.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/chunk.c -o CMakeFiles/server.dir/src/shared/chunk.c.s + +CMakeFiles/server.dir/src/shared/compression.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/compression.c.o: /workspace/src/shared/compression.c +CMakeFiles/server.dir/src/shared/compression.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/server.dir/src/shared/compression.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/compression.c.o -MF CMakeFiles/server.dir/src/shared/compression.c.o.d -o CMakeFiles/server.dir/src/shared/compression.c.o -c /workspace/src/shared/compression.c + +CMakeFiles/server.dir/src/shared/compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/compression.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/compression.c > CMakeFiles/server.dir/src/shared/compression.c.i + +CMakeFiles/server.dir/src/shared/compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/compression.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/compression.c -o CMakeFiles/server.dir/src/shared/compression.c.s + +CMakeFiles/server.dir/src/shared/config.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/config.c.o: /workspace/src/shared/config.c +CMakeFiles/server.dir/src/shared/config.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/server.dir/src/shared/config.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/config.c.o -MF CMakeFiles/server.dir/src/shared/config.c.o.d -o CMakeFiles/server.dir/src/shared/config.c.o -c /workspace/src/shared/config.c + +CMakeFiles/server.dir/src/shared/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/config.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/config.c > CMakeFiles/server.dir/src/shared/config.c.i + +CMakeFiles/server.dir/src/shared/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/config.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/config.c -o CMakeFiles/server.dir/src/shared/config.c.s + +CMakeFiles/server.dir/src/shared/data.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/data.c.o: /workspace/src/shared/data.c +CMakeFiles/server.dir/src/shared/data.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/server.dir/src/shared/data.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/data.c.o -MF CMakeFiles/server.dir/src/shared/data.c.o.d -o CMakeFiles/server.dir/src/shared/data.c.o -c /workspace/src/shared/data.c + +CMakeFiles/server.dir/src/shared/data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/data.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/data.c > CMakeFiles/server.dir/src/shared/data.c.i + +CMakeFiles/server.dir/src/shared/data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/data.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/data.c -o CMakeFiles/server.dir/src/shared/data.c.s + +CMakeFiles/server.dir/src/shared/delta.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/delta.c.o: /workspace/src/shared/delta.c +CMakeFiles/server.dir/src/shared/delta.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/server.dir/src/shared/delta.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/delta.c.o -MF CMakeFiles/server.dir/src/shared/delta.c.o.d -o CMakeFiles/server.dir/src/shared/delta.c.o -c /workspace/src/shared/delta.c + +CMakeFiles/server.dir/src/shared/delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/delta.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/delta.c > CMakeFiles/server.dir/src/shared/delta.c.i + +CMakeFiles/server.dir/src/shared/delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/delta.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/delta.c -o CMakeFiles/server.dir/src/shared/delta.c.s + +CMakeFiles/server.dir/src/shared/file.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/file.c.o: /workspace/src/shared/file.c +CMakeFiles/server.dir/src/shared/file.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/server.dir/src/shared/file.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/file.c.o -MF CMakeFiles/server.dir/src/shared/file.c.o.d -o CMakeFiles/server.dir/src/shared/file.c.o -c /workspace/src/shared/file.c + +CMakeFiles/server.dir/src/shared/file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/file.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/file.c > CMakeFiles/server.dir/src/shared/file.c.i + +CMakeFiles/server.dir/src/shared/file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/file.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/file.c -o CMakeFiles/server.dir/src/shared/file.c.s + +CMakeFiles/server.dir/src/shared/log.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/log.c.o: /workspace/src/shared/log.c +CMakeFiles/server.dir/src/shared/log.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/server.dir/src/shared/log.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/log.c.o -MF CMakeFiles/server.dir/src/shared/log.c.o.d -o CMakeFiles/server.dir/src/shared/log.c.o -c /workspace/src/shared/log.c + +CMakeFiles/server.dir/src/shared/log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/log.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/log.c > CMakeFiles/server.dir/src/shared/log.c.i + +CMakeFiles/server.dir/src/shared/log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/log.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/log.c -o CMakeFiles/server.dir/src/shared/log.c.s + +CMakeFiles/server.dir/src/shared/metadata.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/metadata.c.o: /workspace/src/shared/metadata.c +CMakeFiles/server.dir/src/shared/metadata.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/server.dir/src/shared/metadata.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/metadata.c.o -MF CMakeFiles/server.dir/src/shared/metadata.c.o.d -o CMakeFiles/server.dir/src/shared/metadata.c.o -c /workspace/src/shared/metadata.c + +CMakeFiles/server.dir/src/shared/metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/metadata.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/metadata.c > CMakeFiles/server.dir/src/shared/metadata.c.i + +CMakeFiles/server.dir/src/shared/metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/metadata.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/metadata.c -o CMakeFiles/server.dir/src/shared/metadata.c.s + +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: /workspace/src/shared/multiprocessing.c +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/server.dir/src/shared/multiprocessing.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/multiprocessing.c.o -MF CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d -o CMakeFiles/server.dir/src/shared/multiprocessing.c.o -c /workspace/src/shared/multiprocessing.c + +CMakeFiles/server.dir/src/shared/multiprocessing.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/multiprocessing.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/multiprocessing.c > CMakeFiles/server.dir/src/shared/multiprocessing.c.i + +CMakeFiles/server.dir/src/shared/multiprocessing.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/multiprocessing.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/multiprocessing.c -o CMakeFiles/server.dir/src/shared/multiprocessing.c.s + +CMakeFiles/server.dir/src/shared/protocol.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/protocol.c.o: /workspace/src/shared/protocol.c +CMakeFiles/server.dir/src/shared/protocol.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/server.dir/src/shared/protocol.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/protocol.c.o -MF CMakeFiles/server.dir/src/shared/protocol.c.o.d -o CMakeFiles/server.dir/src/shared/protocol.c.o -c /workspace/src/shared/protocol.c + +CMakeFiles/server.dir/src/shared/protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/protocol.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/protocol.c > CMakeFiles/server.dir/src/shared/protocol.c.i + +CMakeFiles/server.dir/src/shared/protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/protocol.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/protocol.c -o CMakeFiles/server.dir/src/shared/protocol.c.s + +CMakeFiles/server.dir/src/shared/queue.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/queue.c.o: /workspace/src/shared/queue.c +CMakeFiles/server.dir/src/shared/queue.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/server.dir/src/shared/queue.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/queue.c.o -MF CMakeFiles/server.dir/src/shared/queue.c.o.d -o CMakeFiles/server.dir/src/shared/queue.c.o -c /workspace/src/shared/queue.c + +CMakeFiles/server.dir/src/shared/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/queue.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/queue.c > CMakeFiles/server.dir/src/shared/queue.c.i + +CMakeFiles/server.dir/src/shared/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/queue.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/queue.c -o CMakeFiles/server.dir/src/shared/queue.c.s + +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: /workspace/src/shared/transport_ssh.c +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/server.dir/src/shared/transport_ssh.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/transport_ssh.c.o -MF CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d -o CMakeFiles/server.dir/src/shared/transport_ssh.c.o -c /workspace/src/shared/transport_ssh.c + +CMakeFiles/server.dir/src/shared/transport_ssh.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/transport_ssh.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_ssh.c > CMakeFiles/server.dir/src/shared/transport_ssh.c.i + +CMakeFiles/server.dir/src/shared/transport_ssh.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/transport_ssh.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_ssh.c -o CMakeFiles/server.dir/src/shared/transport_ssh.c.s + +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: /workspace/src/shared/transport_tcp.c +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/server.dir/src/shared/transport_tcp.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/transport_tcp.c.o -MF CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d -o CMakeFiles/server.dir/src/shared/transport_tcp.c.o -c /workspace/src/shared/transport_tcp.c + +CMakeFiles/server.dir/src/shared/transport_tcp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/transport_tcp.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_tcp.c > CMakeFiles/server.dir/src/shared/transport_tcp.c.i + +CMakeFiles/server.dir/src/shared/transport_tcp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/transport_tcp.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_tcp.c -o CMakeFiles/server.dir/src/shared/transport_tcp.c.s + +CMakeFiles/server.dir/src/shared/transport_tls.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/transport_tls.c.o: /workspace/src/shared/transport_tls.c +CMakeFiles/server.dir/src/shared/transport_tls.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/server.dir/src/shared/transport_tls.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/transport_tls.c.o -MF CMakeFiles/server.dir/src/shared/transport_tls.c.o.d -o CMakeFiles/server.dir/src/shared/transport_tls.c.o -c /workspace/src/shared/transport_tls.c + +CMakeFiles/server.dir/src/shared/transport_tls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/transport_tls.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_tls.c > CMakeFiles/server.dir/src/shared/transport_tls.c.i + +CMakeFiles/server.dir/src/shared/transport_tls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/transport_tls.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_tls.c -o CMakeFiles/server.dir/src/shared/transport_tls.c.s + +CMakeFiles/server.dir/src/shared/utils.c.o: CMakeFiles/server.dir/flags.make +CMakeFiles/server.dir/src/shared/utils.c.o: /workspace/src/shared/utils.c +CMakeFiles/server.dir/src/shared/utils.c.o: CMakeFiles/server.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/server.dir/src/shared/utils.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/shared/utils.c.o -MF CMakeFiles/server.dir/src/shared/utils.c.o.d -o CMakeFiles/server.dir/src/shared/utils.c.o -c /workspace/src/shared/utils.c + +CMakeFiles/server.dir/src/shared/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/shared/utils.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/utils.c > CMakeFiles/server.dir/src/shared/utils.c.i + +CMakeFiles/server.dir/src/shared/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/shared/utils.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/utils.c -o CMakeFiles/server.dir/src/shared/utils.c.s + +# Object files for target server +server_OBJECTS = \ +"CMakeFiles/server.dir/src/server/server.c.o" \ +"CMakeFiles/server.dir/src/shared/array_list.c.o" \ +"CMakeFiles/server.dir/src/shared/chunk.c.o" \ +"CMakeFiles/server.dir/src/shared/compression.c.o" \ +"CMakeFiles/server.dir/src/shared/config.c.o" \ +"CMakeFiles/server.dir/src/shared/data.c.o" \ +"CMakeFiles/server.dir/src/shared/delta.c.o" \ +"CMakeFiles/server.dir/src/shared/file.c.o" \ +"CMakeFiles/server.dir/src/shared/log.c.o" \ +"CMakeFiles/server.dir/src/shared/metadata.c.o" \ +"CMakeFiles/server.dir/src/shared/multiprocessing.c.o" \ +"CMakeFiles/server.dir/src/shared/protocol.c.o" \ +"CMakeFiles/server.dir/src/shared/queue.c.o" \ +"CMakeFiles/server.dir/src/shared/transport_ssh.c.o" \ +"CMakeFiles/server.dir/src/shared/transport_tcp.c.o" \ +"CMakeFiles/server.dir/src/shared/transport_tls.c.o" \ +"CMakeFiles/server.dir/src/shared/utils.c.o" + +# External object files for target server +server_EXTERNAL_OBJECTS = + +server: CMakeFiles/server.dir/src/server/server.c.o +server: CMakeFiles/server.dir/src/shared/array_list.c.o +server: CMakeFiles/server.dir/src/shared/chunk.c.o +server: CMakeFiles/server.dir/src/shared/compression.c.o +server: CMakeFiles/server.dir/src/shared/config.c.o +server: CMakeFiles/server.dir/src/shared/data.c.o +server: CMakeFiles/server.dir/src/shared/delta.c.o +server: CMakeFiles/server.dir/src/shared/file.c.o +server: CMakeFiles/server.dir/src/shared/log.c.o +server: CMakeFiles/server.dir/src/shared/metadata.c.o +server: CMakeFiles/server.dir/src/shared/multiprocessing.c.o +server: CMakeFiles/server.dir/src/shared/protocol.c.o +server: CMakeFiles/server.dir/src/shared/queue.c.o +server: CMakeFiles/server.dir/src/shared/transport_ssh.c.o +server: CMakeFiles/server.dir/src/shared/transport_tcp.c.o +server: CMakeFiles/server.dir/src/shared/transport_tls.c.o +server: CMakeFiles/server.dir/src/shared/utils.c.o +server: CMakeFiles/server.dir/build.make +server: /usr/lib/x86_64-linux-gnu/libzstd.so +server: /usr/lib/x86_64-linux-gnu/libssl.so +server: /usr/lib/x86_64-linux-gnu/libcrypto.so +server: _deps/xxhash-build/libxxhash.a +server: CMakeFiles/server.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Linking C executable server" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/server.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/server.dir/build: server +.PHONY : CMakeFiles/server.dir/build + +CMakeFiles/server.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/server.dir/cmake_clean.cmake +.PHONY : CMakeFiles/server.dir/clean + +CMakeFiles/server.dir/depend: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace /workspace /workspace/build_docker2 /workspace/build_docker2 /workspace/build_docker2/CMakeFiles/server.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/server.dir/depend + diff --git a/build_docker2/CMakeFiles/server.dir/cmake_clean.cmake b/build_docker2/CMakeFiles/server.dir/cmake_clean.cmake new file mode 100644 index 0000000..47da779 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/cmake_clean.cmake @@ -0,0 +1,43 @@ +file(REMOVE_RECURSE + "CMakeFiles/server.dir/src/server/server.c.o" + "CMakeFiles/server.dir/src/server/server.c.o.d" + "CMakeFiles/server.dir/src/shared/array_list.c.o" + "CMakeFiles/server.dir/src/shared/array_list.c.o.d" + "CMakeFiles/server.dir/src/shared/chunk.c.o" + "CMakeFiles/server.dir/src/shared/chunk.c.o.d" + "CMakeFiles/server.dir/src/shared/compression.c.o" + "CMakeFiles/server.dir/src/shared/compression.c.o.d" + "CMakeFiles/server.dir/src/shared/config.c.o" + "CMakeFiles/server.dir/src/shared/config.c.o.d" + "CMakeFiles/server.dir/src/shared/data.c.o" + "CMakeFiles/server.dir/src/shared/data.c.o.d" + "CMakeFiles/server.dir/src/shared/delta.c.o" + "CMakeFiles/server.dir/src/shared/delta.c.o.d" + "CMakeFiles/server.dir/src/shared/file.c.o" + "CMakeFiles/server.dir/src/shared/file.c.o.d" + "CMakeFiles/server.dir/src/shared/log.c.o" + "CMakeFiles/server.dir/src/shared/log.c.o.d" + "CMakeFiles/server.dir/src/shared/metadata.c.o" + "CMakeFiles/server.dir/src/shared/metadata.c.o.d" + "CMakeFiles/server.dir/src/shared/multiprocessing.c.o" + "CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d" + "CMakeFiles/server.dir/src/shared/protocol.c.o" + "CMakeFiles/server.dir/src/shared/protocol.c.o.d" + "CMakeFiles/server.dir/src/shared/queue.c.o" + "CMakeFiles/server.dir/src/shared/queue.c.o.d" + "CMakeFiles/server.dir/src/shared/transport_ssh.c.o" + "CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d" + "CMakeFiles/server.dir/src/shared/transport_tcp.c.o" + "CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d" + "CMakeFiles/server.dir/src/shared/transport_tls.c.o" + "CMakeFiles/server.dir/src/shared/transport_tls.c.o.d" + "CMakeFiles/server.dir/src/shared/utils.c.o" + "CMakeFiles/server.dir/src/shared/utils.c.o.d" + "server" + "server.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/server.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build_docker2/CMakeFiles/server.dir/compiler_depend.make b/build_docker2/CMakeFiles/server.dir/compiler_depend.make new file mode 100644 index 0000000..6ab6af9 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for server. +# This may be replaced when dependencies are built. diff --git a/build_docker2/CMakeFiles/server.dir/compiler_depend.ts b/build_docker2/CMakeFiles/server.dir/compiler_depend.ts new file mode 100644 index 0000000..2d625f2 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for server. diff --git a/build_docker2/CMakeFiles/server.dir/depend.make b/build_docker2/CMakeFiles/server.dir/depend.make new file mode 100644 index 0000000..519938d --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for server. +# This may be replaced when dependencies are built. diff --git a/build_docker2/CMakeFiles/server.dir/flags.make b/build_docker2/CMakeFiles/server.dir/flags.make new file mode 100644 index 0000000..43b8b36 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror + diff --git a/build_docker2/CMakeFiles/server.dir/link.txt b/build_docker2/CMakeFiles/server.dir/link.txt new file mode 100644 index 0000000..47a3493 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -O3 -DNDEBUG CMakeFiles/server.dir/src/server/server.c.o CMakeFiles/server.dir/src/shared/array_list.c.o CMakeFiles/server.dir/src/shared/chunk.c.o CMakeFiles/server.dir/src/shared/compression.c.o CMakeFiles/server.dir/src/shared/config.c.o CMakeFiles/server.dir/src/shared/data.c.o CMakeFiles/server.dir/src/shared/delta.c.o CMakeFiles/server.dir/src/shared/file.c.o CMakeFiles/server.dir/src/shared/log.c.o CMakeFiles/server.dir/src/shared/metadata.c.o CMakeFiles/server.dir/src/shared/multiprocessing.c.o CMakeFiles/server.dir/src/shared/protocol.c.o CMakeFiles/server.dir/src/shared/queue.c.o CMakeFiles/server.dir/src/shared/transport_ssh.c.o CMakeFiles/server.dir/src/shared/transport_tcp.c.o CMakeFiles/server.dir/src/shared/transport_tls.c.o CMakeFiles/server.dir/src/shared/utils.c.o -o server /usr/lib/x86_64-linux-gnu/libzstd.so /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so _deps/xxhash-build/libxxhash.a diff --git a/build_docker2/CMakeFiles/server.dir/progress.make b/build_docker2/CMakeFiles/server.dir/progress.make new file mode 100644 index 0000000..83ee35c --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/progress.make @@ -0,0 +1,19 @@ +CMAKE_PROGRESS_1 = 21 +CMAKE_PROGRESS_2 = 22 +CMAKE_PROGRESS_3 = 23 +CMAKE_PROGRESS_4 = 24 +CMAKE_PROGRESS_5 = 25 +CMAKE_PROGRESS_6 = 26 +CMAKE_PROGRESS_7 = 27 +CMAKE_PROGRESS_8 = 28 +CMAKE_PROGRESS_9 = 29 +CMAKE_PROGRESS_10 = 30 +CMAKE_PROGRESS_11 = 31 +CMAKE_PROGRESS_12 = 32 +CMAKE_PROGRESS_13 = 33 +CMAKE_PROGRESS_14 = 34 +CMAKE_PROGRESS_15 = 35 +CMAKE_PROGRESS_16 = 36 +CMAKE_PROGRESS_17 = 37 +CMAKE_PROGRESS_18 = 38 + diff --git a/build_docker2/CMakeFiles/server.dir/src/server/server.c.o b/build_docker2/CMakeFiles/server.dir/src/server/server.c.o new file mode 100644 index 0000000..44be47a Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/server/server.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/server/server.c.o.d b/build_docker2/CMakeFiles/server.dir/src/server/server.c.o.d new file mode 100644 index 0000000..b056988 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/server/server.c.o.d @@ -0,0 +1,131 @@ +CMakeFiles/server.dir/src/server/server.c.o: \ + /workspace/src/server/server.c /usr/include/stdc-predef.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/config.h /workspace/src/shared/data.h \ + /workspace/src/shared/file.h /workspace/src/shared/log.h \ + /workspace/src/shared/multiprocessing.h /usr/include/threads.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/queue.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/queue.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /workspace/src/shared/transport_tls.h \ + /workspace/src/shared/transport_tcp.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /workspace/src/shared/utils.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/array_list.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/array_list.c.o new file mode 100644 index 0000000..882626e Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/array_list.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/array_list.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/array_list.c.o.d new file mode 100644 index 0000000..265f1c4 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/array_list.c.o.d @@ -0,0 +1,64 @@ +CMakeFiles/server.dir/src/shared/array_list.c.o: \ + /workspace/src/shared/array_list.c /usr/include/stdc-predef.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/chunk.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/chunk.c.o new file mode 100644 index 0000000..7ffe906 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/chunk.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/chunk.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/chunk.c.o.d new file mode 100644 index 0000000..1bafb93 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/chunk.c.o.d @@ -0,0 +1,75 @@ +CMakeFiles/server.dir/src/shared/chunk.c.o: /workspace/src/shared/chunk.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/compression.h /workspace/src/shared/log.h \ + /workspace/src/shared/metadata.h /workspace/src/shared/protocol.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/compression.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/compression.c.o new file mode 100644 index 0000000..e7bd4df Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/compression.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/compression.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/compression.c.o.d new file mode 100644 index 0000000..a5a4d99 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/compression.c.o.d @@ -0,0 +1,62 @@ +CMakeFiles/server.dir/src/shared/compression.c.o: \ + /workspace/src/shared/compression.c /usr/include/stdc-predef.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/zstd.h /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/config.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/config.c.o new file mode 100644 index 0000000..c0d13b8 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/config.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/config.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/config.c.o.d new file mode 100644 index 0000000..5d4ba3b --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/config.c.o.d @@ -0,0 +1,71 @@ +CMakeFiles/server.dir/src/shared/config.c.o: \ + /workspace/src/shared/config.c /usr/include/stdc-predef.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/delta.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/log.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/data.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/data.c.o new file mode 100644 index 0000000..c291e94 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/data.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/data.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/data.c.o.d new file mode 100644 index 0000000..7d8c108 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/data.c.o.d @@ -0,0 +1,46 @@ +CMakeFiles/server.dir/src/shared/data.c.o: /workspace/src/shared/data.c \ + /usr/include/stdc-predef.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/log.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/delta.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/delta.c.o new file mode 100644 index 0000000..ab4174d Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/delta.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/delta.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/delta.c.o.d new file mode 100644 index 0000000..95f406e --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/delta.c.o.d @@ -0,0 +1,70 @@ +CMakeFiles/server.dir/src/shared/delta.c.o: /workspace/src/shared/delta.c \ + /usr/include/stdc-predef.h /workspace/src/shared/delta.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/log.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/../xxhash.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/file.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/file.c.o new file mode 100644 index 0000000..85ac9a3 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/file.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/file.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/file.c.o.d new file mode 100644 index 0000000..13c46bc --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/file.c.o.d @@ -0,0 +1,96 @@ +CMakeFiles/server.dir/src/shared/file.c.o: /workspace/src/shared/file.c \ + /usr/include/stdc-predef.h /usr/include/dirent.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/libgen.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/sendfile.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/delta.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/log.h /workspace/src/shared/config.h \ + /workspace/src/shared/file.h /workspace/src/shared/metadata.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/log.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/log.c.o new file mode 100644 index 0000000..a81acec Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/log.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/log.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/log.c.o.d new file mode 100644 index 0000000..9935a37 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/log.c.o.d @@ -0,0 +1,40 @@ +CMakeFiles/server.dir/src/shared/log.c.o: /workspace/src/shared/log.c \ + /usr/include/stdc-predef.h /workspace/src/shared/log.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/metadata.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/metadata.c.o new file mode 100644 index 0000000..41d7f04 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/metadata.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/metadata.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/metadata.c.o.d new file mode 100644 index 0000000..aec8196 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/metadata.c.o.d @@ -0,0 +1,79 @@ +CMakeFiles/server.dir/src/shared/metadata.c.o: \ + /workspace/src/shared/metadata.c /usr/include/stdc-predef.h \ + /workspace/src/shared/metadata.h /workspace/src/shared/file.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/multiprocessing.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/multiprocessing.c.o new file mode 100644 index 0000000..d86779a Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/multiprocessing.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d new file mode 100644 index 0000000..f8721a8 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/multiprocessing.c.o.d @@ -0,0 +1,80 @@ +CMakeFiles/server.dir/src/shared/multiprocessing.c.o: \ + /workspace/src/shared/multiprocessing.c /usr/include/stdc-predef.h \ + /workspace/src/shared/multiprocessing.h /usr/include/threads.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/file.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/protocol.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/protocol.c.o new file mode 100644 index 0000000..27c5ec3 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/protocol.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/protocol.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/protocol.c.o.d new file mode 100644 index 0000000..fb34a23 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/protocol.c.o.d @@ -0,0 +1,136 @@ +CMakeFiles/server.dir/src/shared/protocol.c.o: \ + /workspace/src/shared/protocol.c /usr/include/stdc-predef.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ + /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ + /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ + /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ + /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ + /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ + /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ + /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ + /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ + /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ + /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ + /usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \ + /usr/include/x86_64-linux-gnu/bits/poll.h \ + /usr/include/x86_64-linux-gnu/bits/poll2.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/queue.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/queue.c.o new file mode 100644 index 0000000..b1ec05f Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/queue.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/queue.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/queue.c.o.d new file mode 100644 index 0000000..eae7e37 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/queue.c.o.d @@ -0,0 +1,68 @@ +CMakeFiles/server.dir/src/shared/queue.c.o: /workspace/src/shared/queue.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /workspace/src/shared/queue.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/transport_ssh.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/transport_ssh.c.o new file mode 100644 index 0000000..08bb1e4 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/transport_ssh.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d new file mode 100644 index 0000000..fcde240 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/transport_ssh.c.o.d @@ -0,0 +1,120 @@ +CMakeFiles/server.dir/src/shared/transport_ssh.c.o: \ + /workspace/src/shared/transport_ssh.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_ssh.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/transport_tcp.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tcp.c.o new file mode 100644 index 0000000..e7e189f Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tcp.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d new file mode 100644 index 0000000..60847e6 --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tcp.c.o.d @@ -0,0 +1,171 @@ +CMakeFiles/server.dir/src/shared/transport_tcp.c.o: \ + /workspace/src/shared/transport_tcp.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/arpa/inet.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ + /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ + /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ + /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ + /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ + /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ + /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ + /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ + /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ + /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ + /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ + /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/transport_tls.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tls.c.o new file mode 100644 index 0000000..b631633 Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tls.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/transport_tls.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tls.c.o.d new file mode 100644 index 0000000..4cb811a --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/transport_tls.c.o.d @@ -0,0 +1,174 @@ +CMakeFiles/server.dir/src/shared/transport_tls.c.o: \ + /workspace/src/shared/transport_tls.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_tls.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/arpa/inet.h \ + /usr/include/openssl/err.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/bio.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/lhash.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/pkcs7.h /usr/include/openssl/pkcs7err.h \ + /usr/include/openssl/http.h /usr/include/openssl/conf.h \ + /usr/include/openssl/conferr.h /usr/include/openssl/conftypes.h \ + /usr/include/openssl/pem.h /usr/include/openssl/pemerr.h \ + /usr/include/openssl/hmac.h /usr/include/openssl/async.h \ + /usr/include/openssl/asyncerr.h /usr/include/openssl/ct.h \ + /usr/include/openssl/cterr.h /usr/include/openssl/sslerr.h \ + /usr/include/openssl/sslerr_legacy.h /usr/include/openssl/prov_ssl.h \ + /usr/include/openssl/ssl2.h /usr/include/openssl/ssl3.h \ + /usr/include/openssl/tls1.h /usr/include/openssl/dtls1.h \ + /usr/include/openssl/srtp.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/utils.c.o b/build_docker2/CMakeFiles/server.dir/src/shared/utils.c.o new file mode 100644 index 0000000..e3221eb Binary files /dev/null and b/build_docker2/CMakeFiles/server.dir/src/shared/utils.c.o differ diff --git a/build_docker2/CMakeFiles/server.dir/src/shared/utils.c.o.d b/build_docker2/CMakeFiles/server.dir/src/shared/utils.c.o.d new file mode 100644 index 0000000..17dd0df --- /dev/null +++ b/build_docker2/CMakeFiles/server.dir/src/shared/utils.c.o.d @@ -0,0 +1,86 @@ +CMakeFiles/server.dir/src/shared/utils.c.o: /workspace/src/shared/utils.c \ + /usr/include/stdc-predef.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/libgen.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/DependInfo.cmake b/build_docker2/CMakeFiles/tests.dir/DependInfo.cmake new file mode 100644 index 0000000..3d61932 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/DependInfo.cmake @@ -0,0 +1,56 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/workspace/src/client/scanner.c" "CMakeFiles/tests.dir/src/client/scanner.c.o" "gcc" "CMakeFiles/tests.dir/src/client/scanner.c.o.d" + "/workspace/src/shared/array_list.c" "CMakeFiles/tests.dir/src/shared/array_list.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/array_list.c.o.d" + "/workspace/src/shared/chunk.c" "CMakeFiles/tests.dir/src/shared/chunk.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/chunk.c.o.d" + "/workspace/src/shared/compression.c" "CMakeFiles/tests.dir/src/shared/compression.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/compression.c.o.d" + "/workspace/src/shared/config.c" "CMakeFiles/tests.dir/src/shared/config.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/config.c.o.d" + "/workspace/src/shared/data.c" "CMakeFiles/tests.dir/src/shared/data.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/data.c.o.d" + "/workspace/src/shared/delta.c" "CMakeFiles/tests.dir/src/shared/delta.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/delta.c.o.d" + "/workspace/src/shared/file.c" "CMakeFiles/tests.dir/src/shared/file.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/file.c.o.d" + "/workspace/src/shared/log.c" "CMakeFiles/tests.dir/src/shared/log.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/log.c.o.d" + "/workspace/src/shared/metadata.c" "CMakeFiles/tests.dir/src/shared/metadata.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/metadata.c.o.d" + "/workspace/src/shared/multiprocessing.c" "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d" + "/workspace/src/shared/protocol.c" "CMakeFiles/tests.dir/src/shared/protocol.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/protocol.c.o.d" + "/workspace/src/shared/queue.c" "CMakeFiles/tests.dir/src/shared/queue.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/queue.c.o.d" + "/workspace/src/shared/transport_ssh.c" "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d" + "/workspace/src/shared/transport_tcp.c" "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d" + "/workspace/src/shared/transport_tls.c" "CMakeFiles/tests.dir/src/shared/transport_tls.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d" + "/workspace/src/shared/utils.c" "CMakeFiles/tests.dir/src/shared/utils.c.o" "gcc" "CMakeFiles/tests.dir/src/shared/utils.c.o.d" + "/workspace/tests/runner.c" "CMakeFiles/tests.dir/tests/runner.c.o" "gcc" "CMakeFiles/tests.dir/tests/runner.c.o.d" + "/workspace/tests/test_array_list.c" "CMakeFiles/tests.dir/tests/test_array_list.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_array_list.c.o.d" + "/workspace/tests/test_chunk.c" "CMakeFiles/tests.dir/tests/test_chunk.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_chunk.c.o.d" + "/workspace/tests/test_compression.c" "CMakeFiles/tests.dir/tests/test_compression.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_compression.c.o.d" + "/workspace/tests/test_config.c" "CMakeFiles/tests.dir/tests/test_config.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_config.c.o.d" + "/workspace/tests/test_data.c" "CMakeFiles/tests.dir/tests/test_data.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_data.c.o.d" + "/workspace/tests/test_delta.c" "CMakeFiles/tests.dir/tests/test_delta.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_delta.c.o.d" + "/workspace/tests/test_file.c" "CMakeFiles/tests.dir/tests/test_file.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_file.c.o.d" + "/workspace/tests/test_glob.c" "CMakeFiles/tests.dir/tests/test_glob.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_glob.c.o.d" + "/workspace/tests/test_metadata.c" "CMakeFiles/tests.dir/tests/test_metadata.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_metadata.c.o.d" + "/workspace/tests/test_property.c" "CMakeFiles/tests.dir/tests/test_property.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_property.c.o.d" + "/workspace/tests/test_protocol.c" "CMakeFiles/tests.dir/tests/test_protocol.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_protocol.c.o.d" + "/workspace/tests/test_queue.c" "CMakeFiles/tests.dir/tests/test_queue.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_queue.c.o.d" + "/workspace/tests/test_robustness.c" "CMakeFiles/tests.dir/tests/test_robustness.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_robustness.c.o.d" + "/workspace/tests/test_scanner.c" "CMakeFiles/tests.dir/tests/test_scanner.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_scanner.c.o.d" + "/workspace/tests/test_shared_utils.c" "CMakeFiles/tests.dir/tests/test_shared_utils.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d" + "/workspace/tests/test_stress.c" "CMakeFiles/tests.dir/tests/test_stress.c.o" "gcc" "CMakeFiles/tests.dir/tests/test_stress.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build_docker2/CMakeFiles/tests.dir/build.make b/build_docker2/CMakeFiles/tests.dir/build.make new file mode 100644 index 0000000..0ad83ad --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/build.make @@ -0,0 +1,642 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +# Include any dependencies generated for this target. +include CMakeFiles/tests.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/tests.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/tests.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/tests.dir/flags.make + +CMakeFiles/tests.dir/tests/runner.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/runner.c.o: /workspace/tests/runner.c +CMakeFiles/tests.dir/tests/runner.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/tests.dir/tests/runner.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/runner.c.o -MF CMakeFiles/tests.dir/tests/runner.c.o.d -o CMakeFiles/tests.dir/tests/runner.c.o -c /workspace/tests/runner.c + +CMakeFiles/tests.dir/tests/runner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/runner.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/runner.c > CMakeFiles/tests.dir/tests/runner.c.i + +CMakeFiles/tests.dir/tests/runner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/runner.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/runner.c -o CMakeFiles/tests.dir/tests/runner.c.s + +CMakeFiles/tests.dir/tests/test_array_list.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_array_list.c.o: /workspace/tests/test_array_list.c +CMakeFiles/tests.dir/tests/test_array_list.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/tests.dir/tests/test_array_list.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_array_list.c.o -MF CMakeFiles/tests.dir/tests/test_array_list.c.o.d -o CMakeFiles/tests.dir/tests/test_array_list.c.o -c /workspace/tests/test_array_list.c + +CMakeFiles/tests.dir/tests/test_array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_array_list.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_array_list.c > CMakeFiles/tests.dir/tests/test_array_list.c.i + +CMakeFiles/tests.dir/tests/test_array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_array_list.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_array_list.c -o CMakeFiles/tests.dir/tests/test_array_list.c.s + +CMakeFiles/tests.dir/tests/test_chunk.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_chunk.c.o: /workspace/tests/test_chunk.c +CMakeFiles/tests.dir/tests/test_chunk.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/tests.dir/tests/test_chunk.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_chunk.c.o -MF CMakeFiles/tests.dir/tests/test_chunk.c.o.d -o CMakeFiles/tests.dir/tests/test_chunk.c.o -c /workspace/tests/test_chunk.c + +CMakeFiles/tests.dir/tests/test_chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_chunk.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_chunk.c > CMakeFiles/tests.dir/tests/test_chunk.c.i + +CMakeFiles/tests.dir/tests/test_chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_chunk.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_chunk.c -o CMakeFiles/tests.dir/tests/test_chunk.c.s + +CMakeFiles/tests.dir/tests/test_compression.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_compression.c.o: /workspace/tests/test_compression.c +CMakeFiles/tests.dir/tests/test_compression.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/tests.dir/tests/test_compression.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_compression.c.o -MF CMakeFiles/tests.dir/tests/test_compression.c.o.d -o CMakeFiles/tests.dir/tests/test_compression.c.o -c /workspace/tests/test_compression.c + +CMakeFiles/tests.dir/tests/test_compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_compression.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_compression.c > CMakeFiles/tests.dir/tests/test_compression.c.i + +CMakeFiles/tests.dir/tests/test_compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_compression.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_compression.c -o CMakeFiles/tests.dir/tests/test_compression.c.s + +CMakeFiles/tests.dir/tests/test_config.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_config.c.o: /workspace/tests/test_config.c +CMakeFiles/tests.dir/tests/test_config.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/tests.dir/tests/test_config.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_config.c.o -MF CMakeFiles/tests.dir/tests/test_config.c.o.d -o CMakeFiles/tests.dir/tests/test_config.c.o -c /workspace/tests/test_config.c + +CMakeFiles/tests.dir/tests/test_config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_config.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_config.c > CMakeFiles/tests.dir/tests/test_config.c.i + +CMakeFiles/tests.dir/tests/test_config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_config.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_config.c -o CMakeFiles/tests.dir/tests/test_config.c.s + +CMakeFiles/tests.dir/tests/test_data.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_data.c.o: /workspace/tests/test_data.c +CMakeFiles/tests.dir/tests/test_data.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/tests.dir/tests/test_data.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_data.c.o -MF CMakeFiles/tests.dir/tests/test_data.c.o.d -o CMakeFiles/tests.dir/tests/test_data.c.o -c /workspace/tests/test_data.c + +CMakeFiles/tests.dir/tests/test_data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_data.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_data.c > CMakeFiles/tests.dir/tests/test_data.c.i + +CMakeFiles/tests.dir/tests/test_data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_data.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_data.c -o CMakeFiles/tests.dir/tests/test_data.c.s + +CMakeFiles/tests.dir/tests/test_delta.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_delta.c.o: /workspace/tests/test_delta.c +CMakeFiles/tests.dir/tests/test_delta.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/tests.dir/tests/test_delta.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_delta.c.o -MF CMakeFiles/tests.dir/tests/test_delta.c.o.d -o CMakeFiles/tests.dir/tests/test_delta.c.o -c /workspace/tests/test_delta.c + +CMakeFiles/tests.dir/tests/test_delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_delta.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_delta.c > CMakeFiles/tests.dir/tests/test_delta.c.i + +CMakeFiles/tests.dir/tests/test_delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_delta.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_delta.c -o CMakeFiles/tests.dir/tests/test_delta.c.s + +CMakeFiles/tests.dir/tests/test_file.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_file.c.o: /workspace/tests/test_file.c +CMakeFiles/tests.dir/tests/test_file.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/tests.dir/tests/test_file.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_file.c.o -MF CMakeFiles/tests.dir/tests/test_file.c.o.d -o CMakeFiles/tests.dir/tests/test_file.c.o -c /workspace/tests/test_file.c + +CMakeFiles/tests.dir/tests/test_file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_file.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_file.c > CMakeFiles/tests.dir/tests/test_file.c.i + +CMakeFiles/tests.dir/tests/test_file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_file.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_file.c -o CMakeFiles/tests.dir/tests/test_file.c.s + +CMakeFiles/tests.dir/tests/test_glob.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_glob.c.o: /workspace/tests/test_glob.c +CMakeFiles/tests.dir/tests/test_glob.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/tests.dir/tests/test_glob.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_glob.c.o -MF CMakeFiles/tests.dir/tests/test_glob.c.o.d -o CMakeFiles/tests.dir/tests/test_glob.c.o -c /workspace/tests/test_glob.c + +CMakeFiles/tests.dir/tests/test_glob.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_glob.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_glob.c > CMakeFiles/tests.dir/tests/test_glob.c.i + +CMakeFiles/tests.dir/tests/test_glob.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_glob.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_glob.c -o CMakeFiles/tests.dir/tests/test_glob.c.s + +CMakeFiles/tests.dir/tests/test_metadata.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_metadata.c.o: /workspace/tests/test_metadata.c +CMakeFiles/tests.dir/tests/test_metadata.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/tests.dir/tests/test_metadata.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_metadata.c.o -MF CMakeFiles/tests.dir/tests/test_metadata.c.o.d -o CMakeFiles/tests.dir/tests/test_metadata.c.o -c /workspace/tests/test_metadata.c + +CMakeFiles/tests.dir/tests/test_metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_metadata.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_metadata.c > CMakeFiles/tests.dir/tests/test_metadata.c.i + +CMakeFiles/tests.dir/tests/test_metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_metadata.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_metadata.c -o CMakeFiles/tests.dir/tests/test_metadata.c.s + +CMakeFiles/tests.dir/tests/test_property.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_property.c.o: /workspace/tests/test_property.c +CMakeFiles/tests.dir/tests/test_property.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/tests.dir/tests/test_property.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_property.c.o -MF CMakeFiles/tests.dir/tests/test_property.c.o.d -o CMakeFiles/tests.dir/tests/test_property.c.o -c /workspace/tests/test_property.c + +CMakeFiles/tests.dir/tests/test_property.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_property.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_property.c > CMakeFiles/tests.dir/tests/test_property.c.i + +CMakeFiles/tests.dir/tests/test_property.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_property.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_property.c -o CMakeFiles/tests.dir/tests/test_property.c.s + +CMakeFiles/tests.dir/tests/test_protocol.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_protocol.c.o: /workspace/tests/test_protocol.c +CMakeFiles/tests.dir/tests/test_protocol.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/tests.dir/tests/test_protocol.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_protocol.c.o -MF CMakeFiles/tests.dir/tests/test_protocol.c.o.d -o CMakeFiles/tests.dir/tests/test_protocol.c.o -c /workspace/tests/test_protocol.c + +CMakeFiles/tests.dir/tests/test_protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_protocol.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_protocol.c > CMakeFiles/tests.dir/tests/test_protocol.c.i + +CMakeFiles/tests.dir/tests/test_protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_protocol.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_protocol.c -o CMakeFiles/tests.dir/tests/test_protocol.c.s + +CMakeFiles/tests.dir/tests/test_queue.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_queue.c.o: /workspace/tests/test_queue.c +CMakeFiles/tests.dir/tests/test_queue.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/tests.dir/tests/test_queue.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_queue.c.o -MF CMakeFiles/tests.dir/tests/test_queue.c.o.d -o CMakeFiles/tests.dir/tests/test_queue.c.o -c /workspace/tests/test_queue.c + +CMakeFiles/tests.dir/tests/test_queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_queue.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_queue.c > CMakeFiles/tests.dir/tests/test_queue.c.i + +CMakeFiles/tests.dir/tests/test_queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_queue.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_queue.c -o CMakeFiles/tests.dir/tests/test_queue.c.s + +CMakeFiles/tests.dir/tests/test_robustness.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_robustness.c.o: /workspace/tests/test_robustness.c +CMakeFiles/tests.dir/tests/test_robustness.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/tests.dir/tests/test_robustness.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_robustness.c.o -MF CMakeFiles/tests.dir/tests/test_robustness.c.o.d -o CMakeFiles/tests.dir/tests/test_robustness.c.o -c /workspace/tests/test_robustness.c + +CMakeFiles/tests.dir/tests/test_robustness.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_robustness.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_robustness.c > CMakeFiles/tests.dir/tests/test_robustness.c.i + +CMakeFiles/tests.dir/tests/test_robustness.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_robustness.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_robustness.c -o CMakeFiles/tests.dir/tests/test_robustness.c.s + +CMakeFiles/tests.dir/tests/test_scanner.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_scanner.c.o: /workspace/tests/test_scanner.c +CMakeFiles/tests.dir/tests/test_scanner.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/tests.dir/tests/test_scanner.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_scanner.c.o -MF CMakeFiles/tests.dir/tests/test_scanner.c.o.d -o CMakeFiles/tests.dir/tests/test_scanner.c.o -c /workspace/tests/test_scanner.c + +CMakeFiles/tests.dir/tests/test_scanner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_scanner.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_scanner.c > CMakeFiles/tests.dir/tests/test_scanner.c.i + +CMakeFiles/tests.dir/tests/test_scanner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_scanner.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_scanner.c -o CMakeFiles/tests.dir/tests/test_scanner.c.s + +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: /workspace/tests/test_shared_utils.c +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/tests.dir/tests/test_shared_utils.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_shared_utils.c.o -MF CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d -o CMakeFiles/tests.dir/tests/test_shared_utils.c.o -c /workspace/tests/test_shared_utils.c + +CMakeFiles/tests.dir/tests/test_shared_utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_shared_utils.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_shared_utils.c > CMakeFiles/tests.dir/tests/test_shared_utils.c.i + +CMakeFiles/tests.dir/tests/test_shared_utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_shared_utils.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_shared_utils.c -o CMakeFiles/tests.dir/tests/test_shared_utils.c.s + +CMakeFiles/tests.dir/tests/test_stress.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/tests/test_stress.c.o: /workspace/tests/test_stress.c +CMakeFiles/tests.dir/tests/test_stress.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/tests.dir/tests/test_stress.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/tests/test_stress.c.o -MF CMakeFiles/tests.dir/tests/test_stress.c.o.d -o CMakeFiles/tests.dir/tests/test_stress.c.o -c /workspace/tests/test_stress.c + +CMakeFiles/tests.dir/tests/test_stress.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/tests/test_stress.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/tests/test_stress.c > CMakeFiles/tests.dir/tests/test_stress.c.i + +CMakeFiles/tests.dir/tests/test_stress.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/tests/test_stress.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/tests/test_stress.c -o CMakeFiles/tests.dir/tests/test_stress.c.s + +CMakeFiles/tests.dir/src/shared/array_list.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/array_list.c.o: /workspace/src/shared/array_list.c +CMakeFiles/tests.dir/src/shared/array_list.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/tests.dir/src/shared/array_list.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/array_list.c.o -MF CMakeFiles/tests.dir/src/shared/array_list.c.o.d -o CMakeFiles/tests.dir/src/shared/array_list.c.o -c /workspace/src/shared/array_list.c + +CMakeFiles/tests.dir/src/shared/array_list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/array_list.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/array_list.c > CMakeFiles/tests.dir/src/shared/array_list.c.i + +CMakeFiles/tests.dir/src/shared/array_list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/array_list.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/array_list.c -o CMakeFiles/tests.dir/src/shared/array_list.c.s + +CMakeFiles/tests.dir/src/shared/chunk.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/chunk.c.o: /workspace/src/shared/chunk.c +CMakeFiles/tests.dir/src/shared/chunk.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/tests.dir/src/shared/chunk.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/chunk.c.o -MF CMakeFiles/tests.dir/src/shared/chunk.c.o.d -o CMakeFiles/tests.dir/src/shared/chunk.c.o -c /workspace/src/shared/chunk.c + +CMakeFiles/tests.dir/src/shared/chunk.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/chunk.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/chunk.c > CMakeFiles/tests.dir/src/shared/chunk.c.i + +CMakeFiles/tests.dir/src/shared/chunk.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/chunk.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/chunk.c -o CMakeFiles/tests.dir/src/shared/chunk.c.s + +CMakeFiles/tests.dir/src/shared/compression.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/compression.c.o: /workspace/src/shared/compression.c +CMakeFiles/tests.dir/src/shared/compression.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/tests.dir/src/shared/compression.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/compression.c.o -MF CMakeFiles/tests.dir/src/shared/compression.c.o.d -o CMakeFiles/tests.dir/src/shared/compression.c.o -c /workspace/src/shared/compression.c + +CMakeFiles/tests.dir/src/shared/compression.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/compression.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/compression.c > CMakeFiles/tests.dir/src/shared/compression.c.i + +CMakeFiles/tests.dir/src/shared/compression.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/compression.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/compression.c -o CMakeFiles/tests.dir/src/shared/compression.c.s + +CMakeFiles/tests.dir/src/shared/config.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/config.c.o: /workspace/src/shared/config.c +CMakeFiles/tests.dir/src/shared/config.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/tests.dir/src/shared/config.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/config.c.o -MF CMakeFiles/tests.dir/src/shared/config.c.o.d -o CMakeFiles/tests.dir/src/shared/config.c.o -c /workspace/src/shared/config.c + +CMakeFiles/tests.dir/src/shared/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/config.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/config.c > CMakeFiles/tests.dir/src/shared/config.c.i + +CMakeFiles/tests.dir/src/shared/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/config.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/config.c -o CMakeFiles/tests.dir/src/shared/config.c.s + +CMakeFiles/tests.dir/src/shared/data.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/data.c.o: /workspace/src/shared/data.c +CMakeFiles/tests.dir/src/shared/data.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/tests.dir/src/shared/data.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/data.c.o -MF CMakeFiles/tests.dir/src/shared/data.c.o.d -o CMakeFiles/tests.dir/src/shared/data.c.o -c /workspace/src/shared/data.c + +CMakeFiles/tests.dir/src/shared/data.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/data.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/data.c > CMakeFiles/tests.dir/src/shared/data.c.i + +CMakeFiles/tests.dir/src/shared/data.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/data.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/data.c -o CMakeFiles/tests.dir/src/shared/data.c.s + +CMakeFiles/tests.dir/src/shared/delta.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/delta.c.o: /workspace/src/shared/delta.c +CMakeFiles/tests.dir/src/shared/delta.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/tests.dir/src/shared/delta.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/delta.c.o -MF CMakeFiles/tests.dir/src/shared/delta.c.o.d -o CMakeFiles/tests.dir/src/shared/delta.c.o -c /workspace/src/shared/delta.c + +CMakeFiles/tests.dir/src/shared/delta.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/delta.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/delta.c > CMakeFiles/tests.dir/src/shared/delta.c.i + +CMakeFiles/tests.dir/src/shared/delta.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/delta.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/delta.c -o CMakeFiles/tests.dir/src/shared/delta.c.s + +CMakeFiles/tests.dir/src/shared/file.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/file.c.o: /workspace/src/shared/file.c +CMakeFiles/tests.dir/src/shared/file.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/tests.dir/src/shared/file.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/file.c.o -MF CMakeFiles/tests.dir/src/shared/file.c.o.d -o CMakeFiles/tests.dir/src/shared/file.c.o -c /workspace/src/shared/file.c + +CMakeFiles/tests.dir/src/shared/file.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/file.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/file.c > CMakeFiles/tests.dir/src/shared/file.c.i + +CMakeFiles/tests.dir/src/shared/file.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/file.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/file.c -o CMakeFiles/tests.dir/src/shared/file.c.s + +CMakeFiles/tests.dir/src/shared/log.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/log.c.o: /workspace/src/shared/log.c +CMakeFiles/tests.dir/src/shared/log.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/tests.dir/src/shared/log.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/log.c.o -MF CMakeFiles/tests.dir/src/shared/log.c.o.d -o CMakeFiles/tests.dir/src/shared/log.c.o -c /workspace/src/shared/log.c + +CMakeFiles/tests.dir/src/shared/log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/log.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/log.c > CMakeFiles/tests.dir/src/shared/log.c.i + +CMakeFiles/tests.dir/src/shared/log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/log.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/log.c -o CMakeFiles/tests.dir/src/shared/log.c.s + +CMakeFiles/tests.dir/src/shared/metadata.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/metadata.c.o: /workspace/src/shared/metadata.c +CMakeFiles/tests.dir/src/shared/metadata.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/tests.dir/src/shared/metadata.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/metadata.c.o -MF CMakeFiles/tests.dir/src/shared/metadata.c.o.d -o CMakeFiles/tests.dir/src/shared/metadata.c.o -c /workspace/src/shared/metadata.c + +CMakeFiles/tests.dir/src/shared/metadata.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/metadata.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/metadata.c > CMakeFiles/tests.dir/src/shared/metadata.c.i + +CMakeFiles/tests.dir/src/shared/metadata.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/metadata.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/metadata.c -o CMakeFiles/tests.dir/src/shared/metadata.c.s + +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: /workspace/src/shared/multiprocessing.c +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/multiprocessing.c.o -MF CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d -o CMakeFiles/tests.dir/src/shared/multiprocessing.c.o -c /workspace/src/shared/multiprocessing.c + +CMakeFiles/tests.dir/src/shared/multiprocessing.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/multiprocessing.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/multiprocessing.c > CMakeFiles/tests.dir/src/shared/multiprocessing.c.i + +CMakeFiles/tests.dir/src/shared/multiprocessing.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/multiprocessing.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/multiprocessing.c -o CMakeFiles/tests.dir/src/shared/multiprocessing.c.s + +CMakeFiles/tests.dir/src/shared/protocol.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/protocol.c.o: /workspace/src/shared/protocol.c +CMakeFiles/tests.dir/src/shared/protocol.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/tests.dir/src/shared/protocol.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/protocol.c.o -MF CMakeFiles/tests.dir/src/shared/protocol.c.o.d -o CMakeFiles/tests.dir/src/shared/protocol.c.o -c /workspace/src/shared/protocol.c + +CMakeFiles/tests.dir/src/shared/protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/protocol.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/protocol.c > CMakeFiles/tests.dir/src/shared/protocol.c.i + +CMakeFiles/tests.dir/src/shared/protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/protocol.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/protocol.c -o CMakeFiles/tests.dir/src/shared/protocol.c.s + +CMakeFiles/tests.dir/src/shared/queue.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/queue.c.o: /workspace/src/shared/queue.c +CMakeFiles/tests.dir/src/shared/queue.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/tests.dir/src/shared/queue.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/queue.c.o -MF CMakeFiles/tests.dir/src/shared/queue.c.o.d -o CMakeFiles/tests.dir/src/shared/queue.c.o -c /workspace/src/shared/queue.c + +CMakeFiles/tests.dir/src/shared/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/queue.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/queue.c > CMakeFiles/tests.dir/src/shared/queue.c.i + +CMakeFiles/tests.dir/src/shared/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/queue.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/queue.c -o CMakeFiles/tests.dir/src/shared/queue.c.s + +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: /workspace/src/shared/transport_ssh.c +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/transport_ssh.c.o -MF CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d -o CMakeFiles/tests.dir/src/shared/transport_ssh.c.o -c /workspace/src/shared/transport_ssh.c + +CMakeFiles/tests.dir/src/shared/transport_ssh.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/transport_ssh.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_ssh.c > CMakeFiles/tests.dir/src/shared/transport_ssh.c.i + +CMakeFiles/tests.dir/src/shared/transport_ssh.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/transport_ssh.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_ssh.c -o CMakeFiles/tests.dir/src/shared/transport_ssh.c.s + +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: /workspace/src/shared/transport_tcp.c +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building C object CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/transport_tcp.c.o -MF CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d -o CMakeFiles/tests.dir/src/shared/transport_tcp.c.o -c /workspace/src/shared/transport_tcp.c + +CMakeFiles/tests.dir/src/shared/transport_tcp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/transport_tcp.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_tcp.c > CMakeFiles/tests.dir/src/shared/transport_tcp.c.i + +CMakeFiles/tests.dir/src/shared/transport_tcp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/transport_tcp.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_tcp.c -o CMakeFiles/tests.dir/src/shared/transport_tcp.c.s + +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: /workspace/src/shared/transport_tls.c +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building C object CMakeFiles/tests.dir/src/shared/transport_tls.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/transport_tls.c.o -MF CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d -o CMakeFiles/tests.dir/src/shared/transport_tls.c.o -c /workspace/src/shared/transport_tls.c + +CMakeFiles/tests.dir/src/shared/transport_tls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/transport_tls.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/transport_tls.c > CMakeFiles/tests.dir/src/shared/transport_tls.c.i + +CMakeFiles/tests.dir/src/shared/transport_tls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/transport_tls.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/transport_tls.c -o CMakeFiles/tests.dir/src/shared/transport_tls.c.s + +CMakeFiles/tests.dir/src/shared/utils.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/shared/utils.c.o: /workspace/src/shared/utils.c +CMakeFiles/tests.dir/src/shared/utils.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building C object CMakeFiles/tests.dir/src/shared/utils.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/shared/utils.c.o -MF CMakeFiles/tests.dir/src/shared/utils.c.o.d -o CMakeFiles/tests.dir/src/shared/utils.c.o -c /workspace/src/shared/utils.c + +CMakeFiles/tests.dir/src/shared/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/shared/utils.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/shared/utils.c > CMakeFiles/tests.dir/src/shared/utils.c.i + +CMakeFiles/tests.dir/src/shared/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/shared/utils.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/shared/utils.c -o CMakeFiles/tests.dir/src/shared/utils.c.s + +CMakeFiles/tests.dir/src/client/scanner.c.o: CMakeFiles/tests.dir/flags.make +CMakeFiles/tests.dir/src/client/scanner.c.o: /workspace/src/client/scanner.c +CMakeFiles/tests.dir/src/client/scanner.c.o: CMakeFiles/tests.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building C object CMakeFiles/tests.dir/src/client/scanner.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/tests.dir/src/client/scanner.c.o -MF CMakeFiles/tests.dir/src/client/scanner.c.o.d -o CMakeFiles/tests.dir/src/client/scanner.c.o -c /workspace/src/client/scanner.c + +CMakeFiles/tests.dir/src/client/scanner.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/tests.dir/src/client/scanner.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/src/client/scanner.c > CMakeFiles/tests.dir/src/client/scanner.c.i + +CMakeFiles/tests.dir/src/client/scanner.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/tests.dir/src/client/scanner.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/src/client/scanner.c -o CMakeFiles/tests.dir/src/client/scanner.c.s + +# Object files for target tests +tests_OBJECTS = \ +"CMakeFiles/tests.dir/tests/runner.c.o" \ +"CMakeFiles/tests.dir/tests/test_array_list.c.o" \ +"CMakeFiles/tests.dir/tests/test_chunk.c.o" \ +"CMakeFiles/tests.dir/tests/test_compression.c.o" \ +"CMakeFiles/tests.dir/tests/test_config.c.o" \ +"CMakeFiles/tests.dir/tests/test_data.c.o" \ +"CMakeFiles/tests.dir/tests/test_delta.c.o" \ +"CMakeFiles/tests.dir/tests/test_file.c.o" \ +"CMakeFiles/tests.dir/tests/test_glob.c.o" \ +"CMakeFiles/tests.dir/tests/test_metadata.c.o" \ +"CMakeFiles/tests.dir/tests/test_property.c.o" \ +"CMakeFiles/tests.dir/tests/test_protocol.c.o" \ +"CMakeFiles/tests.dir/tests/test_queue.c.o" \ +"CMakeFiles/tests.dir/tests/test_robustness.c.o" \ +"CMakeFiles/tests.dir/tests/test_scanner.c.o" \ +"CMakeFiles/tests.dir/tests/test_shared_utils.c.o" \ +"CMakeFiles/tests.dir/tests/test_stress.c.o" \ +"CMakeFiles/tests.dir/src/shared/array_list.c.o" \ +"CMakeFiles/tests.dir/src/shared/chunk.c.o" \ +"CMakeFiles/tests.dir/src/shared/compression.c.o" \ +"CMakeFiles/tests.dir/src/shared/config.c.o" \ +"CMakeFiles/tests.dir/src/shared/data.c.o" \ +"CMakeFiles/tests.dir/src/shared/delta.c.o" \ +"CMakeFiles/tests.dir/src/shared/file.c.o" \ +"CMakeFiles/tests.dir/src/shared/log.c.o" \ +"CMakeFiles/tests.dir/src/shared/metadata.c.o" \ +"CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" \ +"CMakeFiles/tests.dir/src/shared/protocol.c.o" \ +"CMakeFiles/tests.dir/src/shared/queue.c.o" \ +"CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" \ +"CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" \ +"CMakeFiles/tests.dir/src/shared/transport_tls.c.o" \ +"CMakeFiles/tests.dir/src/shared/utils.c.o" \ +"CMakeFiles/tests.dir/src/client/scanner.c.o" + +# External object files for target tests +tests_EXTERNAL_OBJECTS = + +tests: CMakeFiles/tests.dir/tests/runner.c.o +tests: CMakeFiles/tests.dir/tests/test_array_list.c.o +tests: CMakeFiles/tests.dir/tests/test_chunk.c.o +tests: CMakeFiles/tests.dir/tests/test_compression.c.o +tests: CMakeFiles/tests.dir/tests/test_config.c.o +tests: CMakeFiles/tests.dir/tests/test_data.c.o +tests: CMakeFiles/tests.dir/tests/test_delta.c.o +tests: CMakeFiles/tests.dir/tests/test_file.c.o +tests: CMakeFiles/tests.dir/tests/test_glob.c.o +tests: CMakeFiles/tests.dir/tests/test_metadata.c.o +tests: CMakeFiles/tests.dir/tests/test_property.c.o +tests: CMakeFiles/tests.dir/tests/test_protocol.c.o +tests: CMakeFiles/tests.dir/tests/test_queue.c.o +tests: CMakeFiles/tests.dir/tests/test_robustness.c.o +tests: CMakeFiles/tests.dir/tests/test_scanner.c.o +tests: CMakeFiles/tests.dir/tests/test_shared_utils.c.o +tests: CMakeFiles/tests.dir/tests/test_stress.c.o +tests: CMakeFiles/tests.dir/src/shared/array_list.c.o +tests: CMakeFiles/tests.dir/src/shared/chunk.c.o +tests: CMakeFiles/tests.dir/src/shared/compression.c.o +tests: CMakeFiles/tests.dir/src/shared/config.c.o +tests: CMakeFiles/tests.dir/src/shared/data.c.o +tests: CMakeFiles/tests.dir/src/shared/delta.c.o +tests: CMakeFiles/tests.dir/src/shared/file.c.o +tests: CMakeFiles/tests.dir/src/shared/log.c.o +tests: CMakeFiles/tests.dir/src/shared/metadata.c.o +tests: CMakeFiles/tests.dir/src/shared/multiprocessing.c.o +tests: CMakeFiles/tests.dir/src/shared/protocol.c.o +tests: CMakeFiles/tests.dir/src/shared/queue.c.o +tests: CMakeFiles/tests.dir/src/shared/transport_ssh.c.o +tests: CMakeFiles/tests.dir/src/shared/transport_tcp.c.o +tests: CMakeFiles/tests.dir/src/shared/transport_tls.c.o +tests: CMakeFiles/tests.dir/src/shared/utils.c.o +tests: CMakeFiles/tests.dir/src/client/scanner.c.o +tests: CMakeFiles/tests.dir/build.make +tests: /usr/lib/x86_64-linux-gnu/libzstd.so +tests: /usr/lib/x86_64-linux-gnu/libssl.so +tests: /usr/lib/x86_64-linux-gnu/libcrypto.so +tests: _deps/xxhash-build/libxxhash.a +tests: CMakeFiles/tests.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Linking C executable tests" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/tests.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/tests.dir/build: tests +.PHONY : CMakeFiles/tests.dir/build + +CMakeFiles/tests.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/tests.dir/cmake_clean.cmake +.PHONY : CMakeFiles/tests.dir/clean + +CMakeFiles/tests.dir/depend: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace /workspace /workspace/build_docker2 /workspace/build_docker2 /workspace/build_docker2/CMakeFiles/tests.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/tests.dir/depend + diff --git a/build_docker2/CMakeFiles/tests.dir/cmake_clean.cmake b/build_docker2/CMakeFiles/tests.dir/cmake_clean.cmake new file mode 100644 index 0000000..4203047 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/cmake_clean.cmake @@ -0,0 +1,77 @@ +file(REMOVE_RECURSE + "CMakeFiles/tests.dir/src/client/scanner.c.o" + "CMakeFiles/tests.dir/src/client/scanner.c.o.d" + "CMakeFiles/tests.dir/src/shared/array_list.c.o" + "CMakeFiles/tests.dir/src/shared/array_list.c.o.d" + "CMakeFiles/tests.dir/src/shared/chunk.c.o" + "CMakeFiles/tests.dir/src/shared/chunk.c.o.d" + "CMakeFiles/tests.dir/src/shared/compression.c.o" + "CMakeFiles/tests.dir/src/shared/compression.c.o.d" + "CMakeFiles/tests.dir/src/shared/config.c.o" + "CMakeFiles/tests.dir/src/shared/config.c.o.d" + "CMakeFiles/tests.dir/src/shared/data.c.o" + "CMakeFiles/tests.dir/src/shared/data.c.o.d" + "CMakeFiles/tests.dir/src/shared/delta.c.o" + "CMakeFiles/tests.dir/src/shared/delta.c.o.d" + "CMakeFiles/tests.dir/src/shared/file.c.o" + "CMakeFiles/tests.dir/src/shared/file.c.o.d" + "CMakeFiles/tests.dir/src/shared/log.c.o" + "CMakeFiles/tests.dir/src/shared/log.c.o.d" + "CMakeFiles/tests.dir/src/shared/metadata.c.o" + "CMakeFiles/tests.dir/src/shared/metadata.c.o.d" + "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" + "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d" + "CMakeFiles/tests.dir/src/shared/protocol.c.o" + "CMakeFiles/tests.dir/src/shared/protocol.c.o.d" + "CMakeFiles/tests.dir/src/shared/queue.c.o" + "CMakeFiles/tests.dir/src/shared/queue.c.o.d" + "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" + "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d" + "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" + "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d" + "CMakeFiles/tests.dir/src/shared/transport_tls.c.o" + "CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d" + "CMakeFiles/tests.dir/src/shared/utils.c.o" + "CMakeFiles/tests.dir/src/shared/utils.c.o.d" + "CMakeFiles/tests.dir/tests/runner.c.o" + "CMakeFiles/tests.dir/tests/runner.c.o.d" + "CMakeFiles/tests.dir/tests/test_array_list.c.o" + "CMakeFiles/tests.dir/tests/test_array_list.c.o.d" + "CMakeFiles/tests.dir/tests/test_chunk.c.o" + "CMakeFiles/tests.dir/tests/test_chunk.c.o.d" + "CMakeFiles/tests.dir/tests/test_compression.c.o" + "CMakeFiles/tests.dir/tests/test_compression.c.o.d" + "CMakeFiles/tests.dir/tests/test_config.c.o" + "CMakeFiles/tests.dir/tests/test_config.c.o.d" + "CMakeFiles/tests.dir/tests/test_data.c.o" + "CMakeFiles/tests.dir/tests/test_data.c.o.d" + "CMakeFiles/tests.dir/tests/test_delta.c.o" + "CMakeFiles/tests.dir/tests/test_delta.c.o.d" + "CMakeFiles/tests.dir/tests/test_file.c.o" + "CMakeFiles/tests.dir/tests/test_file.c.o.d" + "CMakeFiles/tests.dir/tests/test_glob.c.o" + "CMakeFiles/tests.dir/tests/test_glob.c.o.d" + "CMakeFiles/tests.dir/tests/test_metadata.c.o" + "CMakeFiles/tests.dir/tests/test_metadata.c.o.d" + "CMakeFiles/tests.dir/tests/test_property.c.o" + "CMakeFiles/tests.dir/tests/test_property.c.o.d" + "CMakeFiles/tests.dir/tests/test_protocol.c.o" + "CMakeFiles/tests.dir/tests/test_protocol.c.o.d" + "CMakeFiles/tests.dir/tests/test_queue.c.o" + "CMakeFiles/tests.dir/tests/test_queue.c.o.d" + "CMakeFiles/tests.dir/tests/test_robustness.c.o" + "CMakeFiles/tests.dir/tests/test_robustness.c.o.d" + "CMakeFiles/tests.dir/tests/test_scanner.c.o" + "CMakeFiles/tests.dir/tests/test_scanner.c.o.d" + "CMakeFiles/tests.dir/tests/test_shared_utils.c.o" + "CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d" + "CMakeFiles/tests.dir/tests/test_stress.c.o" + "CMakeFiles/tests.dir/tests/test_stress.c.o.d" + "tests" + "tests.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build_docker2/CMakeFiles/tests.dir/compiler_depend.make b/build_docker2/CMakeFiles/tests.dir/compiler_depend.make new file mode 100644 index 0000000..ca49f87 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for tests. +# This may be replaced when dependencies are built. diff --git a/build_docker2/CMakeFiles/tests.dir/compiler_depend.ts b/build_docker2/CMakeFiles/tests.dir/compiler_depend.ts new file mode 100644 index 0000000..0f3f685 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for tests. diff --git a/build_docker2/CMakeFiles/tests.dir/depend.make b/build_docker2/CMakeFiles/tests.dir/depend.make new file mode 100644 index 0000000..e5fa0cd --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for tests. +# This may be replaced when dependencies are built. diff --git a/build_docker2/CMakeFiles/tests.dir/flags.make b/build_docker2/CMakeFiles/tests.dir/flags.make new file mode 100644 index 0000000..0363910 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror + diff --git a/build_docker2/CMakeFiles/tests.dir/link.txt b/build_docker2/CMakeFiles/tests.dir/link.txt new file mode 100644 index 0000000..ed60a73 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -O3 -DNDEBUG CMakeFiles/tests.dir/tests/runner.c.o CMakeFiles/tests.dir/tests/test_array_list.c.o CMakeFiles/tests.dir/tests/test_chunk.c.o CMakeFiles/tests.dir/tests/test_compression.c.o CMakeFiles/tests.dir/tests/test_config.c.o CMakeFiles/tests.dir/tests/test_data.c.o CMakeFiles/tests.dir/tests/test_delta.c.o CMakeFiles/tests.dir/tests/test_file.c.o CMakeFiles/tests.dir/tests/test_glob.c.o CMakeFiles/tests.dir/tests/test_metadata.c.o CMakeFiles/tests.dir/tests/test_property.c.o CMakeFiles/tests.dir/tests/test_protocol.c.o CMakeFiles/tests.dir/tests/test_queue.c.o CMakeFiles/tests.dir/tests/test_robustness.c.o CMakeFiles/tests.dir/tests/test_scanner.c.o CMakeFiles/tests.dir/tests/test_shared_utils.c.o CMakeFiles/tests.dir/tests/test_stress.c.o CMakeFiles/tests.dir/src/shared/array_list.c.o CMakeFiles/tests.dir/src/shared/chunk.c.o CMakeFiles/tests.dir/src/shared/compression.c.o CMakeFiles/tests.dir/src/shared/config.c.o CMakeFiles/tests.dir/src/shared/data.c.o CMakeFiles/tests.dir/src/shared/delta.c.o CMakeFiles/tests.dir/src/shared/file.c.o CMakeFiles/tests.dir/src/shared/log.c.o CMakeFiles/tests.dir/src/shared/metadata.c.o CMakeFiles/tests.dir/src/shared/multiprocessing.c.o CMakeFiles/tests.dir/src/shared/protocol.c.o CMakeFiles/tests.dir/src/shared/queue.c.o CMakeFiles/tests.dir/src/shared/transport_ssh.c.o CMakeFiles/tests.dir/src/shared/transport_tcp.c.o CMakeFiles/tests.dir/src/shared/transport_tls.c.o CMakeFiles/tests.dir/src/shared/utils.c.o CMakeFiles/tests.dir/src/client/scanner.c.o -o tests /usr/lib/x86_64-linux-gnu/libzstd.so /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so _deps/xxhash-build/libxxhash.a diff --git a/build_docker2/CMakeFiles/tests.dir/progress.make b/build_docker2/CMakeFiles/tests.dir/progress.make new file mode 100644 index 0000000..f3178a9 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/progress.make @@ -0,0 +1,36 @@ +CMAKE_PROGRESS_1 = 39 +CMAKE_PROGRESS_2 = 40 +CMAKE_PROGRESS_3 = 41 +CMAKE_PROGRESS_4 = 42 +CMAKE_PROGRESS_5 = 43 +CMAKE_PROGRESS_6 = 44 +CMAKE_PROGRESS_7 = 45 +CMAKE_PROGRESS_8 = 46 +CMAKE_PROGRESS_9 = 47 +CMAKE_PROGRESS_10 = 48 +CMAKE_PROGRESS_11 = 49 +CMAKE_PROGRESS_12 = 50 +CMAKE_PROGRESS_13 = 51 +CMAKE_PROGRESS_14 = 52 +CMAKE_PROGRESS_15 = 53 +CMAKE_PROGRESS_16 = 54 +CMAKE_PROGRESS_17 = 55 +CMAKE_PROGRESS_18 = 56 +CMAKE_PROGRESS_19 = 57 +CMAKE_PROGRESS_20 = 58 +CMAKE_PROGRESS_21 = 59 +CMAKE_PROGRESS_22 = 60 +CMAKE_PROGRESS_23 = 61 +CMAKE_PROGRESS_24 = 62 +CMAKE_PROGRESS_25 = 63 +CMAKE_PROGRESS_26 = 64 +CMAKE_PROGRESS_27 = 65 +CMAKE_PROGRESS_28 = 66 +CMAKE_PROGRESS_29 = 67 +CMAKE_PROGRESS_30 = 68 +CMAKE_PROGRESS_31 = 69 +CMAKE_PROGRESS_32 = 70 +CMAKE_PROGRESS_33 = 71 +CMAKE_PROGRESS_34 = 72 +CMAKE_PROGRESS_35 = 73 + diff --git a/build_docker2/CMakeFiles/tests.dir/src/client/scanner.c.o b/build_docker2/CMakeFiles/tests.dir/src/client/scanner.c.o new file mode 100644 index 0000000..cb9f7da Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/client/scanner.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/client/scanner.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/client/scanner.c.o.d new file mode 100644 index 0000000..ecb30ed --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/client/scanner.c.o.d @@ -0,0 +1,94 @@ +CMakeFiles/tests.dir/src/client/scanner.c.o: \ + /workspace/src/client/scanner.c /usr/include/stdc-predef.h \ + /workspace/src/client/scanner.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/file.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/array_list.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/array_list.c.o new file mode 100644 index 0000000..882626e Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/array_list.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/array_list.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/array_list.c.o.d new file mode 100644 index 0000000..94b1392 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/array_list.c.o.d @@ -0,0 +1,64 @@ +CMakeFiles/tests.dir/src/shared/array_list.c.o: \ + /workspace/src/shared/array_list.c /usr/include/stdc-predef.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/chunk.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/chunk.c.o new file mode 100644 index 0000000..7ffe906 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/chunk.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/chunk.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/chunk.c.o.d new file mode 100644 index 0000000..c9fa9e4 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/chunk.c.o.d @@ -0,0 +1,75 @@ +CMakeFiles/tests.dir/src/shared/chunk.c.o: /workspace/src/shared/chunk.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/compression.h /workspace/src/shared/log.h \ + /workspace/src/shared/metadata.h /workspace/src/shared/protocol.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/compression.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/compression.c.o new file mode 100644 index 0000000..e7bd4df Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/compression.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/compression.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/compression.c.o.d new file mode 100644 index 0000000..ee4946a --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/compression.c.o.d @@ -0,0 +1,62 @@ +CMakeFiles/tests.dir/src/shared/compression.c.o: \ + /workspace/src/shared/compression.c /usr/include/stdc-predef.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/zstd.h /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/config.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/config.c.o new file mode 100644 index 0000000..c0d13b8 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/config.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/config.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/config.c.o.d new file mode 100644 index 0000000..b85325c --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/config.c.o.d @@ -0,0 +1,71 @@ +CMakeFiles/tests.dir/src/shared/config.c.o: \ + /workspace/src/shared/config.c /usr/include/stdc-predef.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/delta.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/log.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/data.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/data.c.o new file mode 100644 index 0000000..c291e94 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/data.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/data.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/data.c.o.d new file mode 100644 index 0000000..749ea01 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/data.c.o.d @@ -0,0 +1,46 @@ +CMakeFiles/tests.dir/src/shared/data.c.o: /workspace/src/shared/data.c \ + /usr/include/stdc-predef.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/log.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/delta.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/delta.c.o new file mode 100644 index 0000000..ab4174d Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/delta.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/delta.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/delta.c.o.d new file mode 100644 index 0000000..dc6c9d8 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/delta.c.o.d @@ -0,0 +1,70 @@ +CMakeFiles/tests.dir/src/shared/delta.c.o: /workspace/src/shared/delta.c \ + /usr/include/stdc-predef.h /workspace/src/shared/delta.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/log.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/../xxhash.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/file.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/file.c.o new file mode 100644 index 0000000..85ac9a3 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/file.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/file.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/file.c.o.d new file mode 100644 index 0000000..2a50eff --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/file.c.o.d @@ -0,0 +1,96 @@ +CMakeFiles/tests.dir/src/shared/file.c.o: /workspace/src/shared/file.c \ + /usr/include/stdc-predef.h /usr/include/dirent.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/libgen.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/sendfile.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/delta.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/log.h /workspace/src/shared/config.h \ + /workspace/src/shared/file.h /workspace/src/shared/metadata.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/log.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/log.c.o new file mode 100644 index 0000000..a81acec Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/log.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/log.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/log.c.o.d new file mode 100644 index 0000000..86b312c --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/log.c.o.d @@ -0,0 +1,40 @@ +CMakeFiles/tests.dir/src/shared/log.c.o: /workspace/src/shared/log.c \ + /usr/include/stdc-predef.h /workspace/src/shared/log.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/metadata.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/metadata.c.o new file mode 100644 index 0000000..41d7f04 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/metadata.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/metadata.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/metadata.c.o.d new file mode 100644 index 0000000..977ebc9 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/metadata.c.o.d @@ -0,0 +1,79 @@ +CMakeFiles/tests.dir/src/shared/metadata.c.o: \ + /workspace/src/shared/metadata.c /usr/include/stdc-predef.h \ + /workspace/src/shared/metadata.h /workspace/src/shared/file.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/multiprocessing.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/multiprocessing.c.o new file mode 100644 index 0000000..d86779a Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/multiprocessing.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d new file mode 100644 index 0000000..eb7aaef --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/multiprocessing.c.o.d @@ -0,0 +1,80 @@ +CMakeFiles/tests.dir/src/shared/multiprocessing.c.o: \ + /workspace/src/shared/multiprocessing.c /usr/include/stdc-predef.h \ + /workspace/src/shared/multiprocessing.h /usr/include/threads.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/file.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/protocol.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/protocol.c.o new file mode 100644 index 0000000..27c5ec3 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/protocol.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/protocol.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/protocol.c.o.d new file mode 100644 index 0000000..b19f130 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/protocol.c.o.d @@ -0,0 +1,136 @@ +CMakeFiles/tests.dir/src/shared/protocol.c.o: \ + /workspace/src/shared/protocol.c /usr/include/stdc-predef.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ + /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ + /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ + /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ + /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ + /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ + /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ + /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ + /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ + /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ + /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ + /usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \ + /usr/include/x86_64-linux-gnu/bits/poll.h \ + /usr/include/x86_64-linux-gnu/bits/poll2.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/queue.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/queue.c.o new file mode 100644 index 0000000..b1ec05f Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/queue.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/queue.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/queue.c.o.d new file mode 100644 index 0000000..dd28861 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/queue.c.o.d @@ -0,0 +1,68 @@ +CMakeFiles/tests.dir/src/shared/queue.c.o: /workspace/src/shared/queue.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /workspace/src/shared/queue.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/transport_ssh.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_ssh.c.o new file mode 100644 index 0000000..08bb1e4 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_ssh.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d new file mode 100644 index 0000000..5bf9343 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_ssh.c.o.d @@ -0,0 +1,120 @@ +CMakeFiles/tests.dir/src/shared/transport_ssh.c.o: \ + /workspace/src/shared/transport_ssh.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_ssh.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tcp.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tcp.c.o new file mode 100644 index 0000000..e7e189f Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tcp.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d new file mode 100644 index 0000000..8566e82 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tcp.c.o.d @@ -0,0 +1,171 @@ +CMakeFiles/tests.dir/src/shared/transport_tcp.c.o: \ + /workspace/src/shared/transport_tcp.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/arpa/inet.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ + /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ + /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ + /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ + /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ + /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ + /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ + /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ + /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ + /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ + /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ + /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tls.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tls.c.o new file mode 100644 index 0000000..b631633 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tls.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d new file mode 100644 index 0000000..26744b4 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/transport_tls.c.o.d @@ -0,0 +1,174 @@ +CMakeFiles/tests.dir/src/shared/transport_tls.c.o: \ + /workspace/src/shared/transport_tls.c /usr/include/stdc-predef.h \ + /workspace/src/shared/transport_tls.h \ + /workspace/src/shared/transport_tcp.h /usr/include/netinet/in.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/sys/socket.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/socket.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/socket_type.h \ + /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ + /usr/include/x86_64-linux-gnu/asm/socket.h \ + /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/sockios.h \ + /usr/include/asm-generic/sockios.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ + /usr/include/x86_64-linux-gnu/bits/socket2.h \ + /usr/include/x86_64-linux-gnu/bits/in.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/log.h /workspace/src/shared/protocol.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/arpa/inet.h \ + /usr/include/openssl/err.h /usr/include/openssl/macros.h \ + /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ + /usr/include/x86_64-linux-gnu/openssl/configuration.h \ + /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/openssl/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ + /usr/include/openssl/bio.h /usr/include/openssl/crypto.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ + /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/openssl/bioerr.h /usr/include/openssl/lhash.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ + /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ + /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ + /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ + /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ + /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ + /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ + /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ + /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ + /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ + /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ + /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ + /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ + /usr/include/openssl/pkcs7.h /usr/include/openssl/pkcs7err.h \ + /usr/include/openssl/http.h /usr/include/openssl/conf.h \ + /usr/include/openssl/conferr.h /usr/include/openssl/conftypes.h \ + /usr/include/openssl/pem.h /usr/include/openssl/pemerr.h \ + /usr/include/openssl/hmac.h /usr/include/openssl/async.h \ + /usr/include/openssl/asyncerr.h /usr/include/openssl/ct.h \ + /usr/include/openssl/cterr.h /usr/include/openssl/sslerr.h \ + /usr/include/openssl/sslerr_legacy.h /usr/include/openssl/prov_ssl.h \ + /usr/include/openssl/ssl2.h /usr/include/openssl/ssl3.h \ + /usr/include/openssl/tls1.h /usr/include/openssl/dtls1.h \ + /usr/include/openssl/srtp.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/utils.c.o b/build_docker2/CMakeFiles/tests.dir/src/shared/utils.c.o new file mode 100644 index 0000000..e3221eb Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/src/shared/utils.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/src/shared/utils.c.o.d b/build_docker2/CMakeFiles/tests.dir/src/shared/utils.c.o.d new file mode 100644 index 0000000..c529227 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/src/shared/utils.c.o.d @@ -0,0 +1,86 @@ +CMakeFiles/tests.dir/src/shared/utils.c.o: /workspace/src/shared/utils.c \ + /usr/include/stdc-predef.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h /usr/include/libgen.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/runner.c.o b/build_docker2/CMakeFiles/tests.dir/tests/runner.c.o new file mode 100644 index 0000000..2618072 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/runner.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/runner.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/runner.c.o.d new file mode 100644 index 0000000..d0d0f91 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/runner.c.o.d @@ -0,0 +1,43 @@ +CMakeFiles/tests.dir/tests/runner.c.o: /workspace/tests/runner.c \ + /usr/include/stdc-predef.h /workspace/tests/test_array_list.h \ + /workspace/tests/test_chunk.h /workspace/tests/test_compression.h \ + /workspace/tests/test_config.h /workspace/tests/test_data.h \ + /workspace/tests/test_delta.h /workspace/tests/test_file.h \ + /workspace/tests/test_glob.h /workspace/tests/test_metadata.h \ + /workspace/tests/test_property.h /workspace/tests/test_protocol.h \ + /workspace/tests/test_queue.h /workspace/tests/test_robustness.h \ + /workspace/tests/test_scanner.h /workspace/tests/test_shared_utils.h \ + /workspace/tests/test_stress.h /workspace/tests/test_utils.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_array_list.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_array_list.c.o new file mode 100644 index 0000000..0e9edee Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_array_list.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_array_list.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_array_list.c.o.d new file mode 100644 index 0000000..fd8b911 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_array_list.c.o.d @@ -0,0 +1,65 @@ +CMakeFiles/tests.dir/tests/test_array_list.c.o: \ + /workspace/tests/test_array_list.c /usr/include/stdc-predef.h \ + /workspace/tests/test_array_list.h /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_chunk.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_chunk.c.o new file mode 100644 index 0000000..6d437e4 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_chunk.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_chunk.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_chunk.c.o.d new file mode 100644 index 0000000..8d10ee4 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_chunk.c.o.d @@ -0,0 +1,82 @@ +CMakeFiles/tests.dir/tests/test_chunk.c.o: /workspace/tests/test_chunk.c \ + /usr/include/stdc-predef.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_compression.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_compression.c.o new file mode 100644 index 0000000..4726a7f Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_compression.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_compression.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_compression.c.o.d new file mode 100644 index 0000000..18a3ece --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_compression.c.o.d @@ -0,0 +1,84 @@ +CMakeFiles/tests.dir/tests/test_compression.c.o: \ + /workspace/tests/test_compression.c /usr/include/stdc-predef.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/compression.h /workspace/src/shared/data.h \ + /workspace/src/shared/file.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_config.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_config.c.o new file mode 100644 index 0000000..ebd1a85 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_config.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_config.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_config.c.o.d new file mode 100644 index 0000000..1202603 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_config.c.o.d @@ -0,0 +1,80 @@ +CMakeFiles/tests.dir/tests/test_config.c.o: \ + /workspace/tests/test_config.c /usr/include/stdc-predef.h \ + /workspace/tests/test_config.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/multiprocessing.h /usr/include/threads.h \ + /usr/include/time.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/config.h \ + /workspace/src/shared/file.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /workspace/src/shared/queue.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /workspace/src/shared/utils.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_data.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_data.c.o new file mode 100644 index 0000000..23617f5 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_data.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_data.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_data.c.o.d new file mode 100644 index 0000000..631eacf --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_data.c.o.d @@ -0,0 +1,65 @@ +CMakeFiles/tests.dir/tests/test_data.c.o: /workspace/tests/test_data.c \ + /usr/include/stdc-predef.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_delta.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_delta.c.o new file mode 100644 index 0000000..2c02018 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_delta.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_delta.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_delta.c.o.d new file mode 100644 index 0000000..7fe3165 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_delta.c.o.d @@ -0,0 +1,69 @@ +CMakeFiles/tests.dir/tests/test_delta.c.o: /workspace/tests/test_delta.c \ + /usr/include/stdc-predef.h /workspace/tests/test_utils.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/delta.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_file.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_file.c.o new file mode 100644 index 0000000..e69ddf5 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_file.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_file.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_file.c.o.d new file mode 100644 index 0000000..b885064 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_file.c.o.d @@ -0,0 +1,105 @@ +CMakeFiles/tests.dir/tests/test_file.c.o: /workspace/tests/test_file.c \ + /usr/include/stdc-predef.h /workspace/tests/test_file.h \ + /workspace/src/shared/file.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/data.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /workspace/src/shared/protocol.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/include/x86_64-linux-gnu/bits/types/idtype_t.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_glob.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_glob.c.o new file mode 100644 index 0000000..7d13908 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_glob.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_glob.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_glob.c.o.d new file mode 100644 index 0000000..70fa9eb --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_glob.c.o.d @@ -0,0 +1,36 @@ +CMakeFiles/tests.dir/tests/test_glob.c.o: /workspace/tests/test_glob.c \ + /usr/include/stdc-predef.h /workspace/tests/test_glob.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_metadata.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_metadata.c.o new file mode 100644 index 0000000..bcb5177 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_metadata.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_metadata.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_metadata.c.o.d new file mode 100644 index 0000000..e3c106e --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_metadata.c.o.d @@ -0,0 +1,82 @@ +CMakeFiles/tests.dir/tests/test_metadata.c.o: \ + /workspace/tests/test_metadata.c /usr/include/stdc-predef.h \ + /workspace/tests/test_metadata.h /workspace/src/shared/metadata.h \ + /workspace/src/shared/file.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/protocol.h /workspace/tests/test_utils.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_property.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_property.c.o new file mode 100644 index 0000000..760a1d4 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_property.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_property.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_property.c.o.d new file mode 100644 index 0000000..9e64607 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_property.c.o.d @@ -0,0 +1,85 @@ +CMakeFiles/tests.dir/tests/test_property.c.o: \ + /workspace/tests/test_property.c /usr/include/stdc-predef.h \ + /workspace/tests/test_property.h /workspace/tests/test_utils.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/delta.h /workspace/src/shared/data.h \ + /workspace/src/shared/compression.h /workspace/src/shared/file.h \ + /workspace/src/shared/utils.h /workspace/src/shared/array_list.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_protocol.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_protocol.c.o new file mode 100644 index 0000000..73afb07 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_protocol.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_protocol.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_protocol.c.o.d new file mode 100644 index 0000000..3d3e116 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_protocol.c.o.d @@ -0,0 +1,82 @@ +CMakeFiles/tests.dir/tests/test_protocol.c.o: \ + /workspace/tests/test_protocol.c /usr/include/stdc-predef.h \ + /workspace/src/shared/protocol.h /workspace/src/shared/data.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_queue.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_queue.c.o new file mode 100644 index 0000000..9ca5c56 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_queue.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_queue.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_queue.c.o.d new file mode 100644 index 0000000..f0e2790 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_queue.c.o.d @@ -0,0 +1,69 @@ +CMakeFiles/tests.dir/tests/test_queue.c.o: /workspace/tests/test_queue.c \ + /usr/include/stdc-predef.h /workspace/tests/test_queue.h \ + /workspace/src/shared/queue.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /usr/include/threads.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/time.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_robustness.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_robustness.c.o new file mode 100644 index 0000000..069cb48 Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_robustness.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_robustness.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_robustness.c.o.d new file mode 100644 index 0000000..9575e47 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_robustness.c.o.d @@ -0,0 +1,84 @@ +CMakeFiles/tests.dir/tests/test_robustness.c.o: \ + /workspace/tests/test_robustness.c /usr/include/stdc-predef.h \ + /workspace/tests/test_robustness.h /workspace/tests/test_utils.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/chunk.h /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/delta.h /workspace/src/shared/data.h \ + /workspace/src/shared/file.h /workspace/src/shared/protocol.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_scanner.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_scanner.c.o new file mode 100644 index 0000000..0c2305a Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_scanner.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_scanner.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_scanner.c.o.d new file mode 100644 index 0000000..726d70a --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_scanner.c.o.d @@ -0,0 +1,95 @@ +CMakeFiles/tests.dir/tests/test_scanner.c.o: \ + /workspace/tests/test_scanner.c /usr/include/stdc-predef.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/client/scanner.h /workspace/src/shared/chunk.h \ + /workspace/src/shared/config.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/src/shared/data.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /workspace/src/shared/file.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /workspace/src/shared/queue.h /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ + /workspace/src/shared/file.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_shared_utils.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_shared_utils.c.o new file mode 100644 index 0000000..66c566b Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_shared_utils.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d new file mode 100644 index 0000000..beecc65 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_shared_utils.c.o.d @@ -0,0 +1,66 @@ +CMakeFiles/tests.dir/tests/test_shared_utils.c.o: \ + /workspace/tests/test_shared_utils.c /usr/include/stdc-predef.h \ + /workspace/tests/test_shared_utils.h /workspace/src/shared/utils.h \ + /workspace/src/shared/array_list.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/tests/test_utils.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_stress.c.o b/build_docker2/CMakeFiles/tests.dir/tests/test_stress.c.o new file mode 100644 index 0000000..fe3085f Binary files /dev/null and b/build_docker2/CMakeFiles/tests.dir/tests/test_stress.c.o differ diff --git a/build_docker2/CMakeFiles/tests.dir/tests/test_stress.c.o.d b/build_docker2/CMakeFiles/tests.dir/tests/test_stress.c.o.d new file mode 100644 index 0000000..0f4c007 --- /dev/null +++ b/build_docker2/CMakeFiles/tests.dir/tests/test_stress.c.o.d @@ -0,0 +1,69 @@ +CMakeFiles/tests.dir/tests/test_stress.c.o: \ + /workspace/tests/test_stress.c /usr/include/stdc-predef.h \ + /workspace/tests/test_stress.h /workspace/tests/test_utils.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdbool.h \ + /workspace/src/shared/queue.h /usr/include/threads.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h diff --git a/build_docker2/CPackConfig.cmake b/build_docker2/CPackConfig.cmake new file mode 100644 index 0000000..ed85269 --- /dev/null +++ b/build_docker2/CPackConfig.cmake @@ -0,0 +1,81 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_DEB "OFF") +set(CPACK_BINARY_FREEBSD "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_NSIS "OFF") +set(CPACK_BINARY_RPM "OFF") +set(CPACK_BINARY_STGZ "ON") +set(CPACK_BINARY_TBZ2 "OFF") +set(CPACK_BINARY_TGZ "ON") +set(CPACK_BINARY_TXZ "OFF") +set(CPACK_BINARY_TZ "ON") +set(CPACK_BUILD_SOURCE_DIRS "/workspace;/workspace/build_docker2") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_GENERATOR "STGZ;TGZ;TZ") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALL_CMAKE_PROJECTS "/workspace/build_docker2;FastFileTransfer;ALL;/") +set(CPACK_INSTALL_PREFIX "/usr/local") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "/usr/bin/objcopy") +set(CPACK_OBJDUMP_EXECUTABLE "/usr/bin/objdump") +set(CPACK_OUTPUT_CONFIG_FILE "/workspace/build_docker2/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_PACKAGE_FILE_NAME "FastFileTransfer-0.8.3-Linux") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_NAME "FastFileTransfer") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.8.3") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "8") +set(CPACK_PACKAGE_VERSION_PATCH "3") +set(CPACK_READELF_EXECUTABLE "/usr/bin/readelf") +set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.28/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.28/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/workspace/build_docker2/CPackSourceConfig.cmake") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/workspace/build_docker2/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/build_docker2/CPackSourceConfig.cmake b/build_docker2/CPackSourceConfig.cmake new file mode 100644 index 0000000..34bc810 --- /dev/null +++ b/build_docker2/CPackSourceConfig.cmake @@ -0,0 +1,89 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_DEB "OFF") +set(CPACK_BINARY_FREEBSD "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_NSIS "OFF") +set(CPACK_BINARY_RPM "OFF") +set(CPACK_BINARY_STGZ "ON") +set(CPACK_BINARY_TBZ2 "OFF") +set(CPACK_BINARY_TGZ "ON") +set(CPACK_BINARY_TXZ "OFF") +set(CPACK_BINARY_TZ "ON") +set(CPACK_BUILD_SOURCE_DIRS "/workspace;/workspace/build_docker2") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALLED_DIRECTORIES "/workspace;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/usr/local") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "FastFileTransfer 0.8.3") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "/usr/bin/objcopy") +set(CPACK_OBJDUMP_EXECUTABLE "/usr/bin/objdump") +set(CPACK_OUTPUT_CONFIG_FILE "/workspace/build_docker2/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "FastFileTransfer built using CMake") +set(CPACK_PACKAGE_FILE_NAME "FastFileTransfer-0.8.3-Source") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "FastFileTransfer 0.8.3") +set(CPACK_PACKAGE_NAME "FastFileTransfer") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "0.8.3") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "8") +set(CPACK_PACKAGE_VERSION_PATCH "3") +set(CPACK_READELF_EXECUTABLE "/usr/bin/readelf") +set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.28/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.28/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/workspace;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/workspace/build_docker2/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "FastFileTransfer-0.8.3-Source") +set(CPACK_SOURCE_RPM "OFF") +set(CPACK_SOURCE_TBZ2 "ON") +set(CPACK_SOURCE_TGZ "ON") +set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +set(CPACK_SOURCE_TXZ "ON") +set(CPACK_SOURCE_TZ "ON") +set(CPACK_SOURCE_ZIP "OFF") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "Linux-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/workspace/build_docker2/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/build_docker2/CTestTestfile.cmake b/build_docker2/CTestTestfile.cmake new file mode 100644 index 0000000..7484973 --- /dev/null +++ b/build_docker2/CTestTestfile.cmake @@ -0,0 +1,9 @@ +# CMake generated Testfile for +# Source directory: /workspace +# Build directory: /workspace/build_docker2 +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test([=[unit_all]=] "/workspace/build_docker2/tests") +set_tests_properties([=[unit_all]=] PROPERTIES _BACKTRACE_TRIPLES "/workspace/CMakeLists.txt;85;add_test;/workspace/CMakeLists.txt;0;") +subdirs("_deps/xxhash-build") diff --git a/build_docker2/Makefile b/build_docker2/Makefile new file mode 100644 index 0000000..6170285 --- /dev/null +++ b/build_docker2/Makefile @@ -0,0 +1,1341 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..." + /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..." + /usr/bin/cpack --config ./CPackSourceConfig.cmake /workspace/build_docker2/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles /workspace/build_docker2//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named server + +# Build rule for target. +server: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 server +.PHONY : server + +# fast build rule for target. +server/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/build +.PHONY : server/fast + +#============================================================================= +# Target rules for targets named client + +# Build rule for target. +client: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 client +.PHONY : client + +# fast build rule for target. +client/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/build +.PHONY : client/fast + +#============================================================================= +# Target rules for targets named tests + +# Build rule for target. +tests: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tests +.PHONY : tests + +# fast build rule for target. +tests/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/build +.PHONY : tests/fast + +#============================================================================= +# Target rules for targets named xxhash + +# Build rule for target. +xxhash: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 xxhash +.PHONY : xxhash + +# fast build rule for target. +xxhash/fast: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/build +.PHONY : xxhash/fast + +#============================================================================= +# Target rules for targets named xxhsum + +# Build rule for target. +xxhsum: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 xxhsum +.PHONY : xxhsum + +# fast build rule for target. +xxhsum/fast: + $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/build +.PHONY : xxhsum/fast + +src/client/client_cli.o: src/client/client_cli.c.o +.PHONY : src/client/client_cli.o + +# target to build an object file +src/client/client_cli.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_cli.c.o +.PHONY : src/client/client_cli.c.o + +src/client/client_cli.i: src/client/client_cli.c.i +.PHONY : src/client/client_cli.i + +# target to preprocess a source file +src/client/client_cli.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_cli.c.i +.PHONY : src/client/client_cli.c.i + +src/client/client_cli.s: src/client/client_cli.c.s +.PHONY : src/client/client_cli.s + +# target to generate assembly for a file +src/client/client_cli.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_cli.c.s +.PHONY : src/client/client_cli.c.s + +src/client/client_send.o: src/client/client_send.c.o +.PHONY : src/client/client_send.o + +# target to build an object file +src/client/client_send.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_send.c.o +.PHONY : src/client/client_send.c.o + +src/client/client_send.i: src/client/client_send.c.i +.PHONY : src/client/client_send.i + +# target to preprocess a source file +src/client/client_send.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_send.c.i +.PHONY : src/client/client_send.c.i + +src/client/client_send.s: src/client/client_send.c.s +.PHONY : src/client/client_send.s + +# target to generate assembly for a file +src/client/client_send.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/client_send.c.s +.PHONY : src/client/client_send.c.s + +src/client/scanner.o: src/client/scanner.c.o +.PHONY : src/client/scanner.o + +# target to build an object file +src/client/scanner.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/scanner.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/client/scanner.c.o +.PHONY : src/client/scanner.c.o + +src/client/scanner.i: src/client/scanner.c.i +.PHONY : src/client/scanner.i + +# target to preprocess a source file +src/client/scanner.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/scanner.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/client/scanner.c.i +.PHONY : src/client/scanner.c.i + +src/client/scanner.s: src/client/scanner.c.s +.PHONY : src/client/scanner.s + +# target to generate assembly for a file +src/client/scanner.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/client/scanner.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/client/scanner.c.s +.PHONY : src/client/scanner.c.s + +src/server/server.o: src/server/server.c.o +.PHONY : src/server/server.o + +# target to build an object file +src/server/server.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/server/server.c.o +.PHONY : src/server/server.c.o + +src/server/server.i: src/server/server.c.i +.PHONY : src/server/server.i + +# target to preprocess a source file +src/server/server.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/server/server.c.i +.PHONY : src/server/server.c.i + +src/server/server.s: src/server/server.c.s +.PHONY : src/server/server.s + +# target to generate assembly for a file +src/server/server.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/server/server.c.s +.PHONY : src/server/server.c.s + +src/shared/array_list.o: src/shared/array_list.c.o +.PHONY : src/shared/array_list.o + +# target to build an object file +src/shared/array_list.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/array_list.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/array_list.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/array_list.c.o +.PHONY : src/shared/array_list.c.o + +src/shared/array_list.i: src/shared/array_list.c.i +.PHONY : src/shared/array_list.i + +# target to preprocess a source file +src/shared/array_list.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/array_list.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/array_list.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/array_list.c.i +.PHONY : src/shared/array_list.c.i + +src/shared/array_list.s: src/shared/array_list.c.s +.PHONY : src/shared/array_list.s + +# target to generate assembly for a file +src/shared/array_list.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/array_list.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/array_list.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/array_list.c.s +.PHONY : src/shared/array_list.c.s + +src/shared/chunk.o: src/shared/chunk.c.o +.PHONY : src/shared/chunk.o + +# target to build an object file +src/shared/chunk.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/chunk.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/chunk.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/chunk.c.o +.PHONY : src/shared/chunk.c.o + +src/shared/chunk.i: src/shared/chunk.c.i +.PHONY : src/shared/chunk.i + +# target to preprocess a source file +src/shared/chunk.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/chunk.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/chunk.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/chunk.c.i +.PHONY : src/shared/chunk.c.i + +src/shared/chunk.s: src/shared/chunk.c.s +.PHONY : src/shared/chunk.s + +# target to generate assembly for a file +src/shared/chunk.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/chunk.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/chunk.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/chunk.c.s +.PHONY : src/shared/chunk.c.s + +src/shared/compression.o: src/shared/compression.c.o +.PHONY : src/shared/compression.o + +# target to build an object file +src/shared/compression.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/compression.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/compression.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/compression.c.o +.PHONY : src/shared/compression.c.o + +src/shared/compression.i: src/shared/compression.c.i +.PHONY : src/shared/compression.i + +# target to preprocess a source file +src/shared/compression.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/compression.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/compression.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/compression.c.i +.PHONY : src/shared/compression.c.i + +src/shared/compression.s: src/shared/compression.c.s +.PHONY : src/shared/compression.s + +# target to generate assembly for a file +src/shared/compression.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/compression.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/compression.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/compression.c.s +.PHONY : src/shared/compression.c.s + +src/shared/config.o: src/shared/config.c.o +.PHONY : src/shared/config.o + +# target to build an object file +src/shared/config.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/config.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/config.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/config.c.o +.PHONY : src/shared/config.c.o + +src/shared/config.i: src/shared/config.c.i +.PHONY : src/shared/config.i + +# target to preprocess a source file +src/shared/config.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/config.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/config.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/config.c.i +.PHONY : src/shared/config.c.i + +src/shared/config.s: src/shared/config.c.s +.PHONY : src/shared/config.s + +# target to generate assembly for a file +src/shared/config.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/config.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/config.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/config.c.s +.PHONY : src/shared/config.c.s + +src/shared/data.o: src/shared/data.c.o +.PHONY : src/shared/data.o + +# target to build an object file +src/shared/data.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/data.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/data.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/data.c.o +.PHONY : src/shared/data.c.o + +src/shared/data.i: src/shared/data.c.i +.PHONY : src/shared/data.i + +# target to preprocess a source file +src/shared/data.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/data.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/data.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/data.c.i +.PHONY : src/shared/data.c.i + +src/shared/data.s: src/shared/data.c.s +.PHONY : src/shared/data.s + +# target to generate assembly for a file +src/shared/data.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/data.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/data.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/data.c.s +.PHONY : src/shared/data.c.s + +src/shared/delta.o: src/shared/delta.c.o +.PHONY : src/shared/delta.o + +# target to build an object file +src/shared/delta.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/delta.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/delta.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/delta.c.o +.PHONY : src/shared/delta.c.o + +src/shared/delta.i: src/shared/delta.c.i +.PHONY : src/shared/delta.i + +# target to preprocess a source file +src/shared/delta.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/delta.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/delta.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/delta.c.i +.PHONY : src/shared/delta.c.i + +src/shared/delta.s: src/shared/delta.c.s +.PHONY : src/shared/delta.s + +# target to generate assembly for a file +src/shared/delta.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/delta.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/delta.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/delta.c.s +.PHONY : src/shared/delta.c.s + +src/shared/file.o: src/shared/file.c.o +.PHONY : src/shared/file.o + +# target to build an object file +src/shared/file.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/file.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/file.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/file.c.o +.PHONY : src/shared/file.c.o + +src/shared/file.i: src/shared/file.c.i +.PHONY : src/shared/file.i + +# target to preprocess a source file +src/shared/file.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/file.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/file.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/file.c.i +.PHONY : src/shared/file.c.i + +src/shared/file.s: src/shared/file.c.s +.PHONY : src/shared/file.s + +# target to generate assembly for a file +src/shared/file.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/file.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/file.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/file.c.s +.PHONY : src/shared/file.c.s + +src/shared/log.o: src/shared/log.c.o +.PHONY : src/shared/log.o + +# target to build an object file +src/shared/log.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/log.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/log.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/log.c.o +.PHONY : src/shared/log.c.o + +src/shared/log.i: src/shared/log.c.i +.PHONY : src/shared/log.i + +# target to preprocess a source file +src/shared/log.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/log.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/log.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/log.c.i +.PHONY : src/shared/log.c.i + +src/shared/log.s: src/shared/log.c.s +.PHONY : src/shared/log.s + +# target to generate assembly for a file +src/shared/log.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/log.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/log.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/log.c.s +.PHONY : src/shared/log.c.s + +src/shared/metadata.o: src/shared/metadata.c.o +.PHONY : src/shared/metadata.o + +# target to build an object file +src/shared/metadata.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/metadata.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/metadata.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/metadata.c.o +.PHONY : src/shared/metadata.c.o + +src/shared/metadata.i: src/shared/metadata.c.i +.PHONY : src/shared/metadata.i + +# target to preprocess a source file +src/shared/metadata.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/metadata.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/metadata.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/metadata.c.i +.PHONY : src/shared/metadata.c.i + +src/shared/metadata.s: src/shared/metadata.c.s +.PHONY : src/shared/metadata.s + +# target to generate assembly for a file +src/shared/metadata.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/metadata.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/metadata.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/metadata.c.s +.PHONY : src/shared/metadata.c.s + +src/shared/multiprocessing.o: src/shared/multiprocessing.c.o +.PHONY : src/shared/multiprocessing.o + +# target to build an object file +src/shared/multiprocessing.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/multiprocessing.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/multiprocessing.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/multiprocessing.c.o +.PHONY : src/shared/multiprocessing.c.o + +src/shared/multiprocessing.i: src/shared/multiprocessing.c.i +.PHONY : src/shared/multiprocessing.i + +# target to preprocess a source file +src/shared/multiprocessing.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/multiprocessing.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/multiprocessing.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/multiprocessing.c.i +.PHONY : src/shared/multiprocessing.c.i + +src/shared/multiprocessing.s: src/shared/multiprocessing.c.s +.PHONY : src/shared/multiprocessing.s + +# target to generate assembly for a file +src/shared/multiprocessing.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/multiprocessing.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/multiprocessing.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/multiprocessing.c.s +.PHONY : src/shared/multiprocessing.c.s + +src/shared/protocol.o: src/shared/protocol.c.o +.PHONY : src/shared/protocol.o + +# target to build an object file +src/shared/protocol.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/protocol.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/protocol.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/protocol.c.o +.PHONY : src/shared/protocol.c.o + +src/shared/protocol.i: src/shared/protocol.c.i +.PHONY : src/shared/protocol.i + +# target to preprocess a source file +src/shared/protocol.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/protocol.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/protocol.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/protocol.c.i +.PHONY : src/shared/protocol.c.i + +src/shared/protocol.s: src/shared/protocol.c.s +.PHONY : src/shared/protocol.s + +# target to generate assembly for a file +src/shared/protocol.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/protocol.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/protocol.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/protocol.c.s +.PHONY : src/shared/protocol.c.s + +src/shared/queue.o: src/shared/queue.c.o +.PHONY : src/shared/queue.o + +# target to build an object file +src/shared/queue.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/queue.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/queue.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/queue.c.o +.PHONY : src/shared/queue.c.o + +src/shared/queue.i: src/shared/queue.c.i +.PHONY : src/shared/queue.i + +# target to preprocess a source file +src/shared/queue.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/queue.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/queue.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/queue.c.i +.PHONY : src/shared/queue.c.i + +src/shared/queue.s: src/shared/queue.c.s +.PHONY : src/shared/queue.s + +# target to generate assembly for a file +src/shared/queue.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/queue.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/queue.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/queue.c.s +.PHONY : src/shared/queue.c.s + +src/shared/transport_ssh.o: src/shared/transport_ssh.c.o +.PHONY : src/shared/transport_ssh.o + +# target to build an object file +src/shared/transport_ssh.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_ssh.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_ssh.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_ssh.c.o +.PHONY : src/shared/transport_ssh.c.o + +src/shared/transport_ssh.i: src/shared/transport_ssh.c.i +.PHONY : src/shared/transport_ssh.i + +# target to preprocess a source file +src/shared/transport_ssh.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_ssh.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_ssh.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_ssh.c.i +.PHONY : src/shared/transport_ssh.c.i + +src/shared/transport_ssh.s: src/shared/transport_ssh.c.s +.PHONY : src/shared/transport_ssh.s + +# target to generate assembly for a file +src/shared/transport_ssh.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_ssh.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_ssh.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_ssh.c.s +.PHONY : src/shared/transport_ssh.c.s + +src/shared/transport_tcp.o: src/shared/transport_tcp.c.o +.PHONY : src/shared/transport_tcp.o + +# target to build an object file +src/shared/transport_tcp.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tcp.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tcp.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tcp.c.o +.PHONY : src/shared/transport_tcp.c.o + +src/shared/transport_tcp.i: src/shared/transport_tcp.c.i +.PHONY : src/shared/transport_tcp.i + +# target to preprocess a source file +src/shared/transport_tcp.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tcp.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tcp.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tcp.c.i +.PHONY : src/shared/transport_tcp.c.i + +src/shared/transport_tcp.s: src/shared/transport_tcp.c.s +.PHONY : src/shared/transport_tcp.s + +# target to generate assembly for a file +src/shared/transport_tcp.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tcp.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tcp.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tcp.c.s +.PHONY : src/shared/transport_tcp.c.s + +src/shared/transport_tls.o: src/shared/transport_tls.c.o +.PHONY : src/shared/transport_tls.o + +# target to build an object file +src/shared/transport_tls.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tls.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tls.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tls.c.o +.PHONY : src/shared/transport_tls.c.o + +src/shared/transport_tls.i: src/shared/transport_tls.c.i +.PHONY : src/shared/transport_tls.i + +# target to preprocess a source file +src/shared/transport_tls.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tls.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tls.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tls.c.i +.PHONY : src/shared/transport_tls.c.i + +src/shared/transport_tls.s: src/shared/transport_tls.c.s +.PHONY : src/shared/transport_tls.s + +# target to generate assembly for a file +src/shared/transport_tls.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/transport_tls.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/transport_tls.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/transport_tls.c.s +.PHONY : src/shared/transport_tls.c.s + +src/shared/utils.o: src/shared/utils.c.o +.PHONY : src/shared/utils.o + +# target to build an object file +src/shared/utils.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/utils.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/utils.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/utils.c.o +.PHONY : src/shared/utils.c.o + +src/shared/utils.i: src/shared/utils.c.i +.PHONY : src/shared/utils.i + +# target to preprocess a source file +src/shared/utils.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/utils.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/utils.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/utils.c.i +.PHONY : src/shared/utils.c.i + +src/shared/utils.s: src/shared/utils.c.s +.PHONY : src/shared/utils.s + +# target to generate assembly for a file +src/shared/utils.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/server.dir/build.make CMakeFiles/server.dir/src/shared/utils.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/client.dir/build.make CMakeFiles/client.dir/src/shared/utils.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/src/shared/utils.c.s +.PHONY : src/shared/utils.c.s + +tests/runner.o: tests/runner.c.o +.PHONY : tests/runner.o + +# target to build an object file +tests/runner.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/runner.c.o +.PHONY : tests/runner.c.o + +tests/runner.i: tests/runner.c.i +.PHONY : tests/runner.i + +# target to preprocess a source file +tests/runner.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/runner.c.i +.PHONY : tests/runner.c.i + +tests/runner.s: tests/runner.c.s +.PHONY : tests/runner.s + +# target to generate assembly for a file +tests/runner.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/runner.c.s +.PHONY : tests/runner.c.s + +tests/test_array_list.o: tests/test_array_list.c.o +.PHONY : tests/test_array_list.o + +# target to build an object file +tests/test_array_list.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_array_list.c.o +.PHONY : tests/test_array_list.c.o + +tests/test_array_list.i: tests/test_array_list.c.i +.PHONY : tests/test_array_list.i + +# target to preprocess a source file +tests/test_array_list.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_array_list.c.i +.PHONY : tests/test_array_list.c.i + +tests/test_array_list.s: tests/test_array_list.c.s +.PHONY : tests/test_array_list.s + +# target to generate assembly for a file +tests/test_array_list.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_array_list.c.s +.PHONY : tests/test_array_list.c.s + +tests/test_chunk.o: tests/test_chunk.c.o +.PHONY : tests/test_chunk.o + +# target to build an object file +tests/test_chunk.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_chunk.c.o +.PHONY : tests/test_chunk.c.o + +tests/test_chunk.i: tests/test_chunk.c.i +.PHONY : tests/test_chunk.i + +# target to preprocess a source file +tests/test_chunk.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_chunk.c.i +.PHONY : tests/test_chunk.c.i + +tests/test_chunk.s: tests/test_chunk.c.s +.PHONY : tests/test_chunk.s + +# target to generate assembly for a file +tests/test_chunk.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_chunk.c.s +.PHONY : tests/test_chunk.c.s + +tests/test_compression.o: tests/test_compression.c.o +.PHONY : tests/test_compression.o + +# target to build an object file +tests/test_compression.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_compression.c.o +.PHONY : tests/test_compression.c.o + +tests/test_compression.i: tests/test_compression.c.i +.PHONY : tests/test_compression.i + +# target to preprocess a source file +tests/test_compression.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_compression.c.i +.PHONY : tests/test_compression.c.i + +tests/test_compression.s: tests/test_compression.c.s +.PHONY : tests/test_compression.s + +# target to generate assembly for a file +tests/test_compression.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_compression.c.s +.PHONY : tests/test_compression.c.s + +tests/test_config.o: tests/test_config.c.o +.PHONY : tests/test_config.o + +# target to build an object file +tests/test_config.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_config.c.o +.PHONY : tests/test_config.c.o + +tests/test_config.i: tests/test_config.c.i +.PHONY : tests/test_config.i + +# target to preprocess a source file +tests/test_config.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_config.c.i +.PHONY : tests/test_config.c.i + +tests/test_config.s: tests/test_config.c.s +.PHONY : tests/test_config.s + +# target to generate assembly for a file +tests/test_config.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_config.c.s +.PHONY : tests/test_config.c.s + +tests/test_data.o: tests/test_data.c.o +.PHONY : tests/test_data.o + +# target to build an object file +tests/test_data.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_data.c.o +.PHONY : tests/test_data.c.o + +tests/test_data.i: tests/test_data.c.i +.PHONY : tests/test_data.i + +# target to preprocess a source file +tests/test_data.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_data.c.i +.PHONY : tests/test_data.c.i + +tests/test_data.s: tests/test_data.c.s +.PHONY : tests/test_data.s + +# target to generate assembly for a file +tests/test_data.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_data.c.s +.PHONY : tests/test_data.c.s + +tests/test_delta.o: tests/test_delta.c.o +.PHONY : tests/test_delta.o + +# target to build an object file +tests/test_delta.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_delta.c.o +.PHONY : tests/test_delta.c.o + +tests/test_delta.i: tests/test_delta.c.i +.PHONY : tests/test_delta.i + +# target to preprocess a source file +tests/test_delta.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_delta.c.i +.PHONY : tests/test_delta.c.i + +tests/test_delta.s: tests/test_delta.c.s +.PHONY : tests/test_delta.s + +# target to generate assembly for a file +tests/test_delta.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_delta.c.s +.PHONY : tests/test_delta.c.s + +tests/test_file.o: tests/test_file.c.o +.PHONY : tests/test_file.o + +# target to build an object file +tests/test_file.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_file.c.o +.PHONY : tests/test_file.c.o + +tests/test_file.i: tests/test_file.c.i +.PHONY : tests/test_file.i + +# target to preprocess a source file +tests/test_file.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_file.c.i +.PHONY : tests/test_file.c.i + +tests/test_file.s: tests/test_file.c.s +.PHONY : tests/test_file.s + +# target to generate assembly for a file +tests/test_file.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_file.c.s +.PHONY : tests/test_file.c.s + +tests/test_glob.o: tests/test_glob.c.o +.PHONY : tests/test_glob.o + +# target to build an object file +tests/test_glob.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_glob.c.o +.PHONY : tests/test_glob.c.o + +tests/test_glob.i: tests/test_glob.c.i +.PHONY : tests/test_glob.i + +# target to preprocess a source file +tests/test_glob.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_glob.c.i +.PHONY : tests/test_glob.c.i + +tests/test_glob.s: tests/test_glob.c.s +.PHONY : tests/test_glob.s + +# target to generate assembly for a file +tests/test_glob.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_glob.c.s +.PHONY : tests/test_glob.c.s + +tests/test_metadata.o: tests/test_metadata.c.o +.PHONY : tests/test_metadata.o + +# target to build an object file +tests/test_metadata.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_metadata.c.o +.PHONY : tests/test_metadata.c.o + +tests/test_metadata.i: tests/test_metadata.c.i +.PHONY : tests/test_metadata.i + +# target to preprocess a source file +tests/test_metadata.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_metadata.c.i +.PHONY : tests/test_metadata.c.i + +tests/test_metadata.s: tests/test_metadata.c.s +.PHONY : tests/test_metadata.s + +# target to generate assembly for a file +tests/test_metadata.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_metadata.c.s +.PHONY : tests/test_metadata.c.s + +tests/test_property.o: tests/test_property.c.o +.PHONY : tests/test_property.o + +# target to build an object file +tests/test_property.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_property.c.o +.PHONY : tests/test_property.c.o + +tests/test_property.i: tests/test_property.c.i +.PHONY : tests/test_property.i + +# target to preprocess a source file +tests/test_property.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_property.c.i +.PHONY : tests/test_property.c.i + +tests/test_property.s: tests/test_property.c.s +.PHONY : tests/test_property.s + +# target to generate assembly for a file +tests/test_property.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_property.c.s +.PHONY : tests/test_property.c.s + +tests/test_protocol.o: tests/test_protocol.c.o +.PHONY : tests/test_protocol.o + +# target to build an object file +tests/test_protocol.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_protocol.c.o +.PHONY : tests/test_protocol.c.o + +tests/test_protocol.i: tests/test_protocol.c.i +.PHONY : tests/test_protocol.i + +# target to preprocess a source file +tests/test_protocol.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_protocol.c.i +.PHONY : tests/test_protocol.c.i + +tests/test_protocol.s: tests/test_protocol.c.s +.PHONY : tests/test_protocol.s + +# target to generate assembly for a file +tests/test_protocol.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_protocol.c.s +.PHONY : tests/test_protocol.c.s + +tests/test_queue.o: tests/test_queue.c.o +.PHONY : tests/test_queue.o + +# target to build an object file +tests/test_queue.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_queue.c.o +.PHONY : tests/test_queue.c.o + +tests/test_queue.i: tests/test_queue.c.i +.PHONY : tests/test_queue.i + +# target to preprocess a source file +tests/test_queue.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_queue.c.i +.PHONY : tests/test_queue.c.i + +tests/test_queue.s: tests/test_queue.c.s +.PHONY : tests/test_queue.s + +# target to generate assembly for a file +tests/test_queue.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_queue.c.s +.PHONY : tests/test_queue.c.s + +tests/test_robustness.o: tests/test_robustness.c.o +.PHONY : tests/test_robustness.o + +# target to build an object file +tests/test_robustness.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_robustness.c.o +.PHONY : tests/test_robustness.c.o + +tests/test_robustness.i: tests/test_robustness.c.i +.PHONY : tests/test_robustness.i + +# target to preprocess a source file +tests/test_robustness.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_robustness.c.i +.PHONY : tests/test_robustness.c.i + +tests/test_robustness.s: tests/test_robustness.c.s +.PHONY : tests/test_robustness.s + +# target to generate assembly for a file +tests/test_robustness.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_robustness.c.s +.PHONY : tests/test_robustness.c.s + +tests/test_scanner.o: tests/test_scanner.c.o +.PHONY : tests/test_scanner.o + +# target to build an object file +tests/test_scanner.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_scanner.c.o +.PHONY : tests/test_scanner.c.o + +tests/test_scanner.i: tests/test_scanner.c.i +.PHONY : tests/test_scanner.i + +# target to preprocess a source file +tests/test_scanner.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_scanner.c.i +.PHONY : tests/test_scanner.c.i + +tests/test_scanner.s: tests/test_scanner.c.s +.PHONY : tests/test_scanner.s + +# target to generate assembly for a file +tests/test_scanner.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_scanner.c.s +.PHONY : tests/test_scanner.c.s + +tests/test_shared_utils.o: tests/test_shared_utils.c.o +.PHONY : tests/test_shared_utils.o + +# target to build an object file +tests/test_shared_utils.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_shared_utils.c.o +.PHONY : tests/test_shared_utils.c.o + +tests/test_shared_utils.i: tests/test_shared_utils.c.i +.PHONY : tests/test_shared_utils.i + +# target to preprocess a source file +tests/test_shared_utils.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_shared_utils.c.i +.PHONY : tests/test_shared_utils.c.i + +tests/test_shared_utils.s: tests/test_shared_utils.c.s +.PHONY : tests/test_shared_utils.s + +# target to generate assembly for a file +tests/test_shared_utils.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_shared_utils.c.s +.PHONY : tests/test_shared_utils.c.s + +tests/test_stress.o: tests/test_stress.c.o +.PHONY : tests/test_stress.o + +# target to build an object file +tests/test_stress.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_stress.c.o +.PHONY : tests/test_stress.c.o + +tests/test_stress.i: tests/test_stress.c.i +.PHONY : tests/test_stress.i + +# target to preprocess a source file +tests/test_stress.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_stress.c.i +.PHONY : tests/test_stress.c.i + +tests/test_stress.s: tests/test_stress.c.s +.PHONY : tests/test_stress.s + +# target to generate assembly for a file +tests/test_stress.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/tests.dir/build.make CMakeFiles/tests.dir/tests/test_stress.c.s +.PHONY : tests/test_stress.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... test" + @echo "... client" + @echo "... server" + @echo "... tests" + @echo "... xxhash" + @echo "... xxhsum" + @echo "... src/client/client_cli.o" + @echo "... src/client/client_cli.i" + @echo "... src/client/client_cli.s" + @echo "... src/client/client_send.o" + @echo "... src/client/client_send.i" + @echo "... src/client/client_send.s" + @echo "... src/client/scanner.o" + @echo "... src/client/scanner.i" + @echo "... src/client/scanner.s" + @echo "... src/server/server.o" + @echo "... src/server/server.i" + @echo "... src/server/server.s" + @echo "... src/shared/array_list.o" + @echo "... src/shared/array_list.i" + @echo "... src/shared/array_list.s" + @echo "... src/shared/chunk.o" + @echo "... src/shared/chunk.i" + @echo "... src/shared/chunk.s" + @echo "... src/shared/compression.o" + @echo "... src/shared/compression.i" + @echo "... src/shared/compression.s" + @echo "... src/shared/config.o" + @echo "... src/shared/config.i" + @echo "... src/shared/config.s" + @echo "... src/shared/data.o" + @echo "... src/shared/data.i" + @echo "... src/shared/data.s" + @echo "... src/shared/delta.o" + @echo "... src/shared/delta.i" + @echo "... src/shared/delta.s" + @echo "... src/shared/file.o" + @echo "... src/shared/file.i" + @echo "... src/shared/file.s" + @echo "... src/shared/log.o" + @echo "... src/shared/log.i" + @echo "... src/shared/log.s" + @echo "... src/shared/metadata.o" + @echo "... src/shared/metadata.i" + @echo "... src/shared/metadata.s" + @echo "... src/shared/multiprocessing.o" + @echo "... src/shared/multiprocessing.i" + @echo "... src/shared/multiprocessing.s" + @echo "... src/shared/protocol.o" + @echo "... src/shared/protocol.i" + @echo "... src/shared/protocol.s" + @echo "... src/shared/queue.o" + @echo "... src/shared/queue.i" + @echo "... src/shared/queue.s" + @echo "... src/shared/transport_ssh.o" + @echo "... src/shared/transport_ssh.i" + @echo "... src/shared/transport_ssh.s" + @echo "... src/shared/transport_tcp.o" + @echo "... src/shared/transport_tcp.i" + @echo "... src/shared/transport_tcp.s" + @echo "... src/shared/transport_tls.o" + @echo "... src/shared/transport_tls.i" + @echo "... src/shared/transport_tls.s" + @echo "... src/shared/utils.o" + @echo "... src/shared/utils.i" + @echo "... src/shared/utils.s" + @echo "... tests/runner.o" + @echo "... tests/runner.i" + @echo "... tests/runner.s" + @echo "... tests/test_array_list.o" + @echo "... tests/test_array_list.i" + @echo "... tests/test_array_list.s" + @echo "... tests/test_chunk.o" + @echo "... tests/test_chunk.i" + @echo "... tests/test_chunk.s" + @echo "... tests/test_compression.o" + @echo "... tests/test_compression.i" + @echo "... tests/test_compression.s" + @echo "... tests/test_config.o" + @echo "... tests/test_config.i" + @echo "... tests/test_config.s" + @echo "... tests/test_data.o" + @echo "... tests/test_data.i" + @echo "... tests/test_data.s" + @echo "... tests/test_delta.o" + @echo "... tests/test_delta.i" + @echo "... tests/test_delta.s" + @echo "... tests/test_file.o" + @echo "... tests/test_file.i" + @echo "... tests/test_file.s" + @echo "... tests/test_glob.o" + @echo "... tests/test_glob.i" + @echo "... tests/test_glob.s" + @echo "... tests/test_metadata.o" + @echo "... tests/test_metadata.i" + @echo "... tests/test_metadata.s" + @echo "... tests/test_property.o" + @echo "... tests/test_property.i" + @echo "... tests/test_property.s" + @echo "... tests/test_protocol.o" + @echo "... tests/test_protocol.i" + @echo "... tests/test_protocol.s" + @echo "... tests/test_queue.o" + @echo "... tests/test_queue.i" + @echo "... tests/test_queue.s" + @echo "... tests/test_robustness.o" + @echo "... tests/test_robustness.i" + @echo "... tests/test_robustness.s" + @echo "... tests/test_scanner.o" + @echo "... tests/test_scanner.i" + @echo "... tests/test_scanner.s" + @echo "... tests/test_shared_utils.o" + @echo "... tests/test_shared_utils.i" + @echo "... tests/test_shared_utils.s" + @echo "... tests/test_stress.o" + @echo "... tests/test_stress.i" + @echo "... tests/test_stress.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake b/build_docker2/_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..04f4546 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/workspace") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/workspace/build_docker2") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/progress.marks b/build_docker2/_deps/xxhash-build/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake new file mode 100644 index 0000000..6068e42 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/workspace/build_docker2/_deps/xxhash-src/xxhash.c" "_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o new file mode 100644 index 0000000..0df06bc Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d new file mode 100644 index 0000000..84fae5a --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o.d @@ -0,0 +1,68 @@ +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/xxhash.c \ + /usr/include/stdc-predef.h \ + /workspace/build_docker2/_deps/xxhash-src/xxhash.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/select-decl.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/build.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/build.make new file mode 100644 index 0000000..c2073ca --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +# Include any dependencies generated for this target. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-src/xxhash.c +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o: _deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o -MF CMakeFiles/xxhash.dir/__/xxhash.c.o.d -o CMakeFiles/xxhash.dir/__/xxhash.c.o -c /workspace/build_docker2/_deps/xxhash-src/xxhash.c + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhash.dir/__/xxhash.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/xxhash.c > CMakeFiles/xxhash.dir/__/xxhash.c.i + +_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhash.dir/__/xxhash.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/xxhash.c -o CMakeFiles/xxhash.dir/__/xxhash.c.s + +# Object files for target xxhash +xxhash_OBJECTS = \ +"CMakeFiles/xxhash.dir/__/xxhash.c.o" + +# External object files for target xxhash +xxhash_EXTERNAL_OBJECTS = + +_deps/xxhash-build/libxxhash.a: _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o +_deps/xxhash-build/libxxhash.a: _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make +_deps/xxhash-build/libxxhash.a: _deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libxxhash.a" + cd /workspace/build_docker2/_deps/xxhash-build && $(CMAKE_COMMAND) -P CMakeFiles/xxhash.dir/cmake_clean_target.cmake + cd /workspace/build_docker2/_deps/xxhash-build && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/xxhash.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/build: _deps/xxhash-build/libxxhash.a +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/build + +_deps/xxhash-build/CMakeFiles/xxhash.dir/clean: + cd /workspace/build_docker2/_deps/xxhash-build && $(CMAKE_COMMAND) -P CMakeFiles/xxhash.dir/cmake_clean.cmake +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/clean + +_deps/xxhash-build/CMakeFiles/xxhash.dir/depend: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace /workspace/build_docker2/_deps/xxhash-src/cmake_unofficial /workspace/build_docker2 /workspace/build_docker2/_deps/xxhash-build /workspace/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/depend + diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean.cmake b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean.cmake new file mode 100644 index 0000000..1d5f62a --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/xxhash.dir/__/xxhash.c.o" + "CMakeFiles/xxhash.dir/__/xxhash.c.o.d" + "libxxhash.a" + "libxxhash.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/xxhash.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean_target.cmake b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..1bb705c --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libxxhash.a" +) diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make new file mode 100644 index 0000000..74a5add --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for xxhash. +# This may be replaced when dependencies are built. diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts new file mode 100644 index 0000000..90ad722 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for xxhash. diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make new file mode 100644 index 0000000..46ed4f0 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for xxhash. +# This may be replaced when dependencies are built. diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make new file mode 100644 index 0000000..7fe30a8 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror + diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt new file mode 100644 index 0000000..1eb8c38 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libxxhash.a CMakeFiles/xxhash.dir/__/xxhash.c.o +/usr/bin/ranlib libxxhash.a diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make new file mode 100644 index 0000000..ccea904 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhash.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 74 +CMAKE_PROGRESS_2 = 75 + diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake new file mode 100644 index 0000000..b703a21 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake @@ -0,0 +1,28 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d" + "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d" + "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d" + "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d" + "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d" + "/workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" "gcc" "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o new file mode 100644 index 0000000..a575095 Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d new file mode 100644 index 0000000..62662fc --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d @@ -0,0 +1,3 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c \ + /usr/include/stdc-predef.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o new file mode 100644 index 0000000..4d19834 Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d new file mode 100644 index 0000000..5c8087e --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d @@ -0,0 +1,67 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c \ + /usr/include/stdc-predef.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_config.h \ + /usr/include/unistd.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/../xxhash.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/assert.h \ + /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o new file mode 100644 index 0000000..dceeaec Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d new file mode 100644 index 0000000..5374664 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d @@ -0,0 +1,48 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c \ + /usr/include/stdc-predef.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_config.h \ + /usr/include/unistd.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o new file mode 100644 index 0000000..983171b Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d new file mode 100644 index 0000000..f5a9e71 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d @@ -0,0 +1,45 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c \ + /usr/include/stdc-predef.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_config.h \ + /usr/include/unistd.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o new file mode 100644 index 0000000..680e551 Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d new file mode 100644 index 0000000..739a840 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d @@ -0,0 +1,40 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c \ + /usr/include/stdc-predef.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_config.h \ + /usr/include/unistd.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/../xxhash.h \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/assert.h \ + /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o new file mode 100644 index 0000000..88499fc Binary files /dev/null and b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o differ diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d new file mode 100644 index 0000000..fbdd4d6 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d @@ -0,0 +1,58 @@ +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: \ + /workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c \ + /usr/include/stdc-predef.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_config.h \ + /usr/include/unistd.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/assert.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /workspace/build_docker2/_deps/xxhash-src/cli/../xxhash.h diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make new file mode 100644 index 0000000..0386892 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make @@ -0,0 +1,191 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +# Include any dependencies generated for this target. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make + +# Include the progress variables for this target. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: _deps/xxhash-src/cli/xxhsum.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c > CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c -o CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: _deps/xxhash-src/cli/xsum_arch.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c > CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: _deps/xxhash-src/cli/xsum_os_specific.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c > CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: _deps/xxhash-src/cli/xsum_output.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c > CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: _deps/xxhash-src/cli/xsum_sanity_check.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c > CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: _deps/xxhash-src/cli/xsum_bench.c +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o: _deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -MF CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d -o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c > CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c -o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s + +# Object files for target xxhsum +xxhsum_OBJECTS = \ +"CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" \ +"CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" + +# External object files for target xxhsum +xxhsum_EXTERNAL_OBJECTS = + +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make +_deps/xxhash-build/xxhsum: _deps/xxhash-build/libxxhash.a +_deps/xxhash-build/xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/workspace/build_docker2/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking C executable xxhsum" + cd /workspace/build_docker2/_deps/xxhash-build && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/xxhsum.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/build: _deps/xxhash-build/xxhsum +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/build + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/clean: + cd /workspace/build_docker2/_deps/xxhash-build && $(CMAKE_COMMAND) -P CMakeFiles/xxhsum.dir/cmake_clean.cmake +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/clean + +_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace /workspace/build_docker2/_deps/xxhash-src/cmake_unofficial /workspace/build_docker2 /workspace/build_docker2/_deps/xxhash-build /workspace/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/depend + diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/cmake_clean.cmake b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/cmake_clean.cmake new file mode 100644 index 0000000..56a5eca --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/cmake_clean.cmake @@ -0,0 +1,21 @@ +file(REMOVE_RECURSE + "CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o.d" + "CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" + "CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o.d" + "xxhsum" + "xxhsum.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/xxhsum.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make new file mode 100644 index 0000000..6a10a0c --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for xxhsum. +# This may be replaced when dependencies are built. diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts new file mode 100644 index 0000000..24a536b --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for xxhsum. diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make new file mode 100644 index 0000000..db7b829 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for xxhsum. +# This may be replaced when dependencies are built. diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make new file mode 100644 index 0000000..7fe30a8 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror + diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt new file mode 100644 index 0000000..cc44681 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -O3 -DNDEBUG CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -o xxhsum libxxhash.a diff --git a/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make new file mode 100644 index 0000000..c27fe19 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/CMakeFiles/xxhsum.dir/progress.make @@ -0,0 +1,8 @@ +CMAKE_PROGRESS_1 = 76 +CMAKE_PROGRESS_2 = 77 +CMAKE_PROGRESS_3 = 78 +CMAKE_PROGRESS_4 = 79 +CMAKE_PROGRESS_5 = 80 +CMAKE_PROGRESS_6 = 81 +CMAKE_PROGRESS_7 = 82 + diff --git a/build_docker2/_deps/xxhash-build/Makefile b/build_docker2/_deps/xxhash-build/Makefile new file mode 100644 index 0000000..b511ba7 --- /dev/null +++ b/build_docker2/_deps/xxhash-build/Makefile @@ -0,0 +1,392 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2 + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..." + cd /workspace/build_docker2 && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..." + cd /workspace/build_docker2 && /usr/bin/cpack --config ./CPackSourceConfig.cmake /workspace/build_docker2/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles /workspace/build_docker2/_deps/xxhash-build//CMakeFiles/progress.marks + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/xxhash-build/CMakeFiles/xxhash.dir/rule: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhash.dir/rule +.PHONY : _deps/xxhash-build/CMakeFiles/xxhash.dir/rule + +# Convenience name for target. +xxhash: _deps/xxhash-build/CMakeFiles/xxhash.dir/rule +.PHONY : xxhash + +# fast build rule for target. +xxhash/fast: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/build +.PHONY : xxhash/fast + +# Convenience name for target. +_deps/xxhash-build/CMakeFiles/xxhsum.dir/rule: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule +.PHONY : _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule + +# Convenience name for target. +xxhsum: _deps/xxhash-build/CMakeFiles/xxhsum.dir/rule +.PHONY : xxhsum + +# fast build rule for target. +xxhsum/fast: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/build +.PHONY : xxhsum/fast + +__/cli/xsum_arch.o: __/cli/xsum_arch.c.o +.PHONY : __/cli/xsum_arch.o + +# target to build an object file +__/cli/xsum_arch.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o +.PHONY : __/cli/xsum_arch.c.o + +__/cli/xsum_arch.i: __/cli/xsum_arch.c.i +.PHONY : __/cli/xsum_arch.i + +# target to preprocess a source file +__/cli/xsum_arch.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.i +.PHONY : __/cli/xsum_arch.c.i + +__/cli/xsum_arch.s: __/cli/xsum_arch.c.s +.PHONY : __/cli/xsum_arch.s + +# target to generate assembly for a file +__/cli/xsum_arch.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.s +.PHONY : __/cli/xsum_arch.c.s + +__/cli/xsum_bench.o: __/cli/xsum_bench.c.o +.PHONY : __/cli/xsum_bench.o + +# target to build an object file +__/cli/xsum_bench.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o +.PHONY : __/cli/xsum_bench.c.o + +__/cli/xsum_bench.i: __/cli/xsum_bench.c.i +.PHONY : __/cli/xsum_bench.i + +# target to preprocess a source file +__/cli/xsum_bench.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.i +.PHONY : __/cli/xsum_bench.c.i + +__/cli/xsum_bench.s: __/cli/xsum_bench.c.s +.PHONY : __/cli/xsum_bench.s + +# target to generate assembly for a file +__/cli/xsum_bench.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.s +.PHONY : __/cli/xsum_bench.c.s + +__/cli/xsum_os_specific.o: __/cli/xsum_os_specific.c.o +.PHONY : __/cli/xsum_os_specific.o + +# target to build an object file +__/cli/xsum_os_specific.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o +.PHONY : __/cli/xsum_os_specific.c.o + +__/cli/xsum_os_specific.i: __/cli/xsum_os_specific.c.i +.PHONY : __/cli/xsum_os_specific.i + +# target to preprocess a source file +__/cli/xsum_os_specific.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.i +.PHONY : __/cli/xsum_os_specific.c.i + +__/cli/xsum_os_specific.s: __/cli/xsum_os_specific.c.s +.PHONY : __/cli/xsum_os_specific.s + +# target to generate assembly for a file +__/cli/xsum_os_specific.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.s +.PHONY : __/cli/xsum_os_specific.c.s + +__/cli/xsum_output.o: __/cli/xsum_output.c.o +.PHONY : __/cli/xsum_output.o + +# target to build an object file +__/cli/xsum_output.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o +.PHONY : __/cli/xsum_output.c.o + +__/cli/xsum_output.i: __/cli/xsum_output.c.i +.PHONY : __/cli/xsum_output.i + +# target to preprocess a source file +__/cli/xsum_output.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.i +.PHONY : __/cli/xsum_output.c.i + +__/cli/xsum_output.s: __/cli/xsum_output.c.s +.PHONY : __/cli/xsum_output.s + +# target to generate assembly for a file +__/cli/xsum_output.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.s +.PHONY : __/cli/xsum_output.c.s + +__/cli/xsum_sanity_check.o: __/cli/xsum_sanity_check.c.o +.PHONY : __/cli/xsum_sanity_check.o + +# target to build an object file +__/cli/xsum_sanity_check.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o +.PHONY : __/cli/xsum_sanity_check.c.o + +__/cli/xsum_sanity_check.i: __/cli/xsum_sanity_check.c.i +.PHONY : __/cli/xsum_sanity_check.i + +# target to preprocess a source file +__/cli/xsum_sanity_check.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.i +.PHONY : __/cli/xsum_sanity_check.c.i + +__/cli/xsum_sanity_check.s: __/cli/xsum_sanity_check.c.s +.PHONY : __/cli/xsum_sanity_check.s + +# target to generate assembly for a file +__/cli/xsum_sanity_check.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.s +.PHONY : __/cli/xsum_sanity_check.c.s + +__/cli/xxhsum.o: __/cli/xxhsum.c.o +.PHONY : __/cli/xxhsum.o + +# target to build an object file +__/cli/xxhsum.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o +.PHONY : __/cli/xxhsum.c.o + +__/cli/xxhsum.i: __/cli/xxhsum.c.i +.PHONY : __/cli/xxhsum.i + +# target to preprocess a source file +__/cli/xxhsum.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.i +.PHONY : __/cli/xxhsum.c.i + +__/cli/xxhsum.s: __/cli/xxhsum.c.s +.PHONY : __/cli/xxhsum.s + +# target to generate assembly for a file +__/cli/xxhsum.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhsum.dir/build.make _deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.s +.PHONY : __/cli/xxhsum.c.s + +__/xxhash.o: __/xxhash.c.o +.PHONY : __/xxhash.o + +# target to build an object file +__/xxhash.c.o: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o +.PHONY : __/xxhash.c.o + +__/xxhash.i: __/xxhash.c.i +.PHONY : __/xxhash.i + +# target to preprocess a source file +__/xxhash.c.i: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.i +.PHONY : __/xxhash.c.i + +__/xxhash.s: __/xxhash.c.s +.PHONY : __/xxhash.s + +# target to generate assembly for a file +__/xxhash.c.s: + cd /workspace/build_docker2 && $(MAKE) $(MAKESILENT) -f _deps/xxhash-build/CMakeFiles/xxhash.dir/build.make _deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.s +.PHONY : __/xxhash.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... test" + @echo "... xxhash" + @echo "... xxhsum" + @echo "... __/cli/xsum_arch.o" + @echo "... __/cli/xsum_arch.i" + @echo "... __/cli/xsum_arch.s" + @echo "... __/cli/xsum_bench.o" + @echo "... __/cli/xsum_bench.i" + @echo "... __/cli/xsum_bench.s" + @echo "... __/cli/xsum_os_specific.o" + @echo "... __/cli/xsum_os_specific.i" + @echo "... __/cli/xsum_os_specific.s" + @echo "... __/cli/xsum_output.o" + @echo "... __/cli/xsum_output.i" + @echo "... __/cli/xsum_output.s" + @echo "... __/cli/xsum_sanity_check.o" + @echo "... __/cli/xsum_sanity_check.i" + @echo "... __/cli/xsum_sanity_check.s" + @echo "... __/cli/xxhsum.o" + @echo "... __/cli/xxhsum.i" + @echo "... __/cli/xxhsum.s" + @echo "... __/xxhash.o" + @echo "... __/xxhash.i" + @echo "... __/xxhash.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /workspace/build_docker2 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build_docker2/_deps/xxhash-build/cmake_install.cmake b/build_docker2/_deps/xxhash-build/cmake_install.cmake new file mode 100644 index 0000000..ff5103a --- /dev/null +++ b/build_docker2/_deps/xxhash-build/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /workspace/build_docker2/_deps/xxhash-src/cmake_unofficial + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + diff --git a/build_docker2/_deps/xxhash-build/libxxhash.a b/build_docker2/_deps/xxhash-build/libxxhash.a new file mode 100644 index 0000000..6ea0c1a Binary files /dev/null and b/build_docker2/_deps/xxhash-build/libxxhash.a differ diff --git a/build_docker2/_deps/xxhash-build/xxhsum b/build_docker2/_deps/xxhash-build/xxhsum new file mode 100755 index 0000000..b8b9e0e Binary files /dev/null and b/build_docker2/_deps/xxhash-build/xxhsum differ diff --git a/build_docker2/_deps/xxhash-src b/build_docker2/_deps/xxhash-src new file mode 160000 index 0000000..e626a72 --- /dev/null +++ b/build_docker2/_deps/xxhash-src @@ -0,0 +1 @@ +Subproject commit e626a72bc2321cd320e953a0ccf1584cad60f363 diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeCache.txt b/build_docker2/_deps/xxhash-subbuild/CMakeCache.txt new file mode 100644 index 0000000..9389be9 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeCache.txt @@ -0,0 +1,117 @@ +# This is the CMakeCache file. +# For build in directory: /workspace/build_docker2/_deps/xxhash-subbuild +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=xxhash-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +xxhash-populate_BINARY_DIR:STATIC=/workspace/build_docker2/_deps/xxhash-subbuild + +//Value Computed by CMake +xxhash-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +xxhash-populate_SOURCE_DIR:STATIC=/workspace/build_docker2/_deps/xxhash-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/workspace/build_docker2/_deps/xxhash-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/workspace/build_docker2/_deps/xxhash-subbuild +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=FALSE + diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/3.28.3/CMakeSystem.cmake b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/3.28.3/CMakeSystem.cmake new file mode 100644 index 0000000..23f87dc --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/3.28.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.18.33") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.18.33") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.18.33") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.18.33") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..4f2ee8f --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,11 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Linux - 6.18.33 - x86_64 +... diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..7bac645 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/workspace/build_docker2/_deps/xxhash-subbuild") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/workspace/build_docker2/_deps/xxhash-subbuild") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeRuleHashes.txt b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..c6d203c --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,11 @@ +# Hashes of file build rules. +5fa8f7c48159ee421689fee2ad074b58 CMakeFiles/xxhash-populate +aa1f655a7ec444f7c8e567ed110c5739 CMakeFiles/xxhash-populate-complete +5a0a73e66256c5fa1d3f7fe820c528fa xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build +7c4e70c77fdb5c1d473d92dd0d310451 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure +64ba3064e20e87f1ce9fae5267115530 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download +2b97e23c1524d3010c9ba0d055f916ee xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +77a75ebae0798f3c66a5cb437ce51500 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir +0a8c57618c25653eb27dd94d72177eb3 xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch +1717110d05b31729c5eb4471a7330e9e xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test +d57e26f1f88157493a010891f438274f xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/Makefile.cmake b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..aa9875c --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/Makefile.cmake @@ -0,0 +1,55 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.28/Modules/ExternalProject.cmake" + "/usr/share/cmake-3.28/Modules/ExternalProject/PatchInfo.txt.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/RepositoryInfo.txt.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/UpdateInfo.txt.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/cfgcmd.txt.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/gitclone.cmake.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/gitupdate.cmake.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/mkdirs.cmake.in" + "/usr/share/cmake-3.28/Modules/ExternalProject/shared_internal_commands.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "CMakeLists.txt" + "xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake" + "xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt" + "xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt" + "xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/xxhash-populate.dir/DependInfo.cmake" + ) diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/Makefile2 b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/Makefile2 new file mode 100644 index 0000000..8dad502 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/Makefile2 @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace/build_docker2/_deps/xxhash-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2/_deps/xxhash-subbuild + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/xxhash-populate.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/xxhash-populate.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/xxhash-populate.dir + +# All Build rule for target. +CMakeFiles/xxhash-populate.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target xxhash-populate" +.PHONY : CMakeFiles/xxhash-populate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/xxhash-populate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles 9 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/xxhash-populate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles 0 +.PHONY : CMakeFiles/xxhash-populate.dir/rule + +# Convenience name for target. +xxhash-populate: CMakeFiles/xxhash-populate.dir/rule +.PHONY : xxhash-populate + +# clean rule for target. +CMakeFiles/xxhash-populate.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/clean +.PHONY : CMakeFiles/xxhash-populate.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/TargetDirectories.txt b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..0413882 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir +/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/edit_cache.dir +/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/cmake.check_cache b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/progress.marks b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.json b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.json new file mode 100644 index 0000000..b5583ce --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test.rule" + }, + { + "file" : "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "xxhash-populate" + ], + "name" : "xxhash-populate" + } +} \ No newline at end of file diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.txt b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.txt new file mode 100644 index 0000000..c7ffdb8 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + xxhash-populate +# Source files and their labels +/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate +/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.rule +/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test.rule +/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update.rule diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/build.make b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/build.make new file mode 100644 index 0000000..6a2bccb --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/build.make @@ -0,0 +1,159 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace/build_docker2/_deps/xxhash-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2/_deps/xxhash-subbuild + +# Utility rule file for xxhash-populate. + +# Include any custom commands dependencies for this target. +include CMakeFiles/xxhash-populate.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/xxhash-populate.dir/progress.make + +CMakeFiles/xxhash-populate: CMakeFiles/xxhash-populate-complete + +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +CMakeFiles/xxhash-populate-complete: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'xxhash-populate'" + /usr/bin/cmake -E make_directory /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles + /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate-complete + /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-done + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: +.PHONY : xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'xxhash-populate'" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E echo_append + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure: xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'xxhash-populate'" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E echo_append + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'xxhash-populate'" + cd /workspace/build_docker2/_deps && /usr/bin/cmake -P /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake + cd /workspace/build_docker2/_deps && /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'xxhash-populate'" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E echo_append + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'xxhash-populate'" + /usr/bin/cmake -Dcfgdir= -P /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake + /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'xxhash-populate'" + /usr/bin/cmake -E echo_append + /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: +.PHONY : xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'xxhash-populate'" + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E echo_append + cd /workspace/build_docker2/_deps/xxhash-build && /usr/bin/cmake -E touch /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test + +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt +xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'xxhash-populate'" + cd /workspace/build_docker2/_deps/xxhash-src && /usr/bin/cmake -Dcan_fetch=YES -P /workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake + +xxhash-populate: CMakeFiles/xxhash-populate +xxhash-populate: CMakeFiles/xxhash-populate-complete +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test +xxhash-populate: xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update +xxhash-populate: CMakeFiles/xxhash-populate.dir/build.make +.PHONY : xxhash-populate + +# Rule to build all files generated by this target. +CMakeFiles/xxhash-populate.dir/build: xxhash-populate +.PHONY : CMakeFiles/xxhash-populate.dir/build + +CMakeFiles/xxhash-populate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/xxhash-populate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/xxhash-populate.dir/clean + +CMakeFiles/xxhash-populate.dir/depend: + cd /workspace/build_docker2/_deps/xxhash-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /workspace/build_docker2/_deps/xxhash-subbuild /workspace/build_docker2/_deps/xxhash-subbuild /workspace/build_docker2/_deps/xxhash-subbuild /workspace/build_docker2/_deps/xxhash-subbuild /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/xxhash-populate.dir/depend + diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/cmake_clean.cmake b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/cmake_clean.cmake new file mode 100644 index 0000000..e54134c --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/xxhash-populate" + "CMakeFiles/xxhash-populate-complete" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test" + "xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/xxhash-populate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.make b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.make new file mode 100644 index 0000000..298c474 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for xxhash-populate. +# This may be replaced when dependencies are built. diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.ts b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.ts new file mode 100644 index 0000000..ff9dfc3 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for xxhash-populate. diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/progress.make b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/progress.make new file mode 100644 index 0000000..d4f6ce3 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeFiles/xxhash-populate.dir/progress.make @@ -0,0 +1,10 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 + diff --git a/build_docker2/_deps/xxhash-subbuild/CMakeLists.txt b/build_docker2/_deps/xxhash-subbuild/CMakeLists.txt new file mode 100644 index 0000000..5e0cc95 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.28.3) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(xxhash-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[/usr/bin/git]==]) +set(GIT_VERSION_STRING [==[2.43.0]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[/usr/bin/git;2.43.0]==] +) + + +include(ExternalProject) +ExternalProject_Add(xxhash-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/Cyan4973/xxHash" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "v0.8.3" "SOURCE_SUBDIR" "cmake_unofficial" + SOURCE_DIR "/workspace/build_docker2/_deps/xxhash-src" + BINARY_DIR "/workspace/build_docker2/_deps/xxhash-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/build_docker2/_deps/xxhash-subbuild/Makefile b/build_docker2/_deps/xxhash-subbuild/Makefile new file mode 100644 index 0000000..3da05ff --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/Makefile @@ -0,0 +1,154 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /workspace/build_docker2/_deps/xxhash-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /workspace/build_docker2/_deps/xxhash-subbuild + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles /workspace/build_docker2/_deps/xxhash-subbuild//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /workspace/build_docker2/_deps/xxhash-subbuild/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named xxhash-populate + +# Build rule for target. +xxhash-populate: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 xxhash-populate +.PHONY : xxhash-populate + +# fast build rule for target. +xxhash-populate/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/xxhash-populate.dir/build.make CMakeFiles/xxhash-populate.dir/build +.PHONY : xxhash-populate/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... xxhash-populate" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build_docker2/_deps/xxhash-subbuild/cmake_install.cmake b/build_docker2/_deps/xxhash-subbuild/cmake_install.cmake new file mode 100644 index 0000000..4bb2f60 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /workspace/build_docker2/_deps/xxhash-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/workspace/build_docker2/_deps/xxhash-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-build new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-configure new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-done b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-done new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-download new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt new file mode 100644 index 0000000..4b6b4b4 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/usr/bin/cmake;-P;/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake +source_dir=/workspace/build_docker2/_deps/xxhash-src +work_dir=/workspace/build_docker2/_deps +repository=https://github.com/Cyan4973/xxHash +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt new file mode 100644 index 0000000..4b6b4b4 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/usr/bin/cmake;-P;/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake +source_dir=/workspace/build_docker2/_deps/xxhash-src +work_dir=/workspace/build_docker2/_deps +repository=https://github.com/Cyan4973/xxHash +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-install new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-test new file mode 100644 index 0000000..e69de29 diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt new file mode 100644 index 0000000..4c4af5e --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=/usr/bin/cmake;-Dcan_fetch=YES;-P;/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake +command (disconnected)=/usr/bin/cmake;-Dcan_fetch=NO;-P;/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake +work_dir=/workspace/build_docker2/_deps/xxhash-src diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake new file mode 100644 index 0000000..eb5d459 --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitclone.cmake @@ -0,0 +1,73 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt" AND EXISTS "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt" AND + "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt" IS_NEWER_THAN "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt") + message(STATUS + "Avoiding repeated git clone, stamp file is up to date: " + "'/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: '/workspace/build_docker2/_deps/xxhash-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "/usr/bin/git" + clone --no-checkout --config "advice.detachedHead=false" "https://github.com/Cyan4973/xxHash" "xxhash-src" + WORKING_DIRECTORY "/workspace/build_docker2/_deps" + RESULT_VARIABLE error_code + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(STATUS "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/Cyan4973/xxHash'") +endif() + +execute_process( + COMMAND "/usr/bin/git" + checkout "v0.8.3" -- + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'v0.8.3'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" + submodule update --recursive --init + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/workspace/build_docker2/_deps/xxhash-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitinfo.txt" "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/xxhash-populate-gitclone-lastrun.txt'") +endif() diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake new file mode 100644 index 0000000..e5bc57a --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-gitupdate.cmake @@ -0,0 +1,292 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL LAST + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + + +execute_process( + COMMAND "/usr/bin/git" --git-dir=.git show-ref "v0.8.3" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v0.8.3") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("v0.8.3" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: ${tag_sha}") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v0.8.3") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/v0.8.3") + +else() + get_hash_for_ref("v0.8.3" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"v0.8.3\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(VERBOSE "${error_msg}") + endif() + do_fetch() + set(checkout_name "v0.8.3") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "v0.8.3") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "/usr/bin/git" --git-dir=.git status --porcelain + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ) +else() + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git rebase --abort + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: '/workspace/build_docker2/_deps/xxhash-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ) + + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + ) + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + ) + execute_process( + COMMAND "/usr/bin/git" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + ) + message(FATAL_ERROR "\nFailed to unstash changes in: '/workspace/build_docker2/_deps/xxhash-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "/workspace/build_docker2/_deps/xxhash-src" + COMMAND_ERROR_IS_FATAL ANY + ) +endif() diff --git a/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake new file mode 100644 index 0000000..b61ce5f --- /dev/null +++ b/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp/xxhash-populate-mkdirs.cmake @@ -0,0 +1,22 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +file(MAKE_DIRECTORY + "/workspace/build_docker2/_deps/xxhash-src" + "/workspace/build_docker2/_deps/xxhash-build" + "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix" + "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/tmp" + "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp" + "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src" + "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "/workspace/build_docker2/_deps/xxhash-subbuild/xxhash-populate-prefix/src/xxhash-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/build_docker2/client b/build_docker2/client new file mode 100755 index 0000000..d3210eb Binary files /dev/null and b/build_docker2/client differ diff --git a/build_docker2/cmake_install.cmake b/build_docker2/cmake_install.cmake new file mode 100644 index 0000000..b7057aa --- /dev/null +++ b/build_docker2/cmake_install.cmake @@ -0,0 +1,59 @@ +# Install script for directory: /workspace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("/workspace/build_docker2/_deps/xxhash-build/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/workspace/build_docker2/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build_docker2/compile_commands.json b/build_docker2/compile_commands.json new file mode 100644 index 0000000..fcbe587 --- /dev/null +++ b/build_docker2/compile_commands.json @@ -0,0 +1,464 @@ +[ +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/server/server.c.o -c /workspace/src/server/server.c", + "file": "/workspace/src/server/server.c", + "output": "CMakeFiles/server.dir/src/server/server.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/array_list.c.o -c /workspace/src/shared/array_list.c", + "file": "/workspace/src/shared/array_list.c", + "output": "CMakeFiles/server.dir/src/shared/array_list.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/chunk.c.o -c /workspace/src/shared/chunk.c", + "file": "/workspace/src/shared/chunk.c", + "output": "CMakeFiles/server.dir/src/shared/chunk.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/compression.c.o -c /workspace/src/shared/compression.c", + "file": "/workspace/src/shared/compression.c", + "output": "CMakeFiles/server.dir/src/shared/compression.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/config.c.o -c /workspace/src/shared/config.c", + "file": "/workspace/src/shared/config.c", + "output": "CMakeFiles/server.dir/src/shared/config.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/data.c.o -c /workspace/src/shared/data.c", + "file": "/workspace/src/shared/data.c", + "output": "CMakeFiles/server.dir/src/shared/data.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/delta.c.o -c /workspace/src/shared/delta.c", + "file": "/workspace/src/shared/delta.c", + "output": "CMakeFiles/server.dir/src/shared/delta.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/file.c.o -c /workspace/src/shared/file.c", + "file": "/workspace/src/shared/file.c", + "output": "CMakeFiles/server.dir/src/shared/file.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/log.c.o -c /workspace/src/shared/log.c", + "file": "/workspace/src/shared/log.c", + "output": "CMakeFiles/server.dir/src/shared/log.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/metadata.c.o -c /workspace/src/shared/metadata.c", + "file": "/workspace/src/shared/metadata.c", + "output": "CMakeFiles/server.dir/src/shared/metadata.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/multiprocessing.c.o -c /workspace/src/shared/multiprocessing.c", + "file": "/workspace/src/shared/multiprocessing.c", + "output": "CMakeFiles/server.dir/src/shared/multiprocessing.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/protocol.c.o -c /workspace/src/shared/protocol.c", + "file": "/workspace/src/shared/protocol.c", + "output": "CMakeFiles/server.dir/src/shared/protocol.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/queue.c.o -c /workspace/src/shared/queue.c", + "file": "/workspace/src/shared/queue.c", + "output": "CMakeFiles/server.dir/src/shared/queue.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/transport_ssh.c.o -c /workspace/src/shared/transport_ssh.c", + "file": "/workspace/src/shared/transport_ssh.c", + "output": "CMakeFiles/server.dir/src/shared/transport_ssh.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/transport_tcp.c.o -c /workspace/src/shared/transport_tcp.c", + "file": "/workspace/src/shared/transport_tcp.c", + "output": "CMakeFiles/server.dir/src/shared/transport_tcp.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/transport_tls.c.o -c /workspace/src/shared/transport_tls.c", + "file": "/workspace/src/shared/transport_tls.c", + "output": "CMakeFiles/server.dir/src/shared/transport_tls.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/server.dir/src/shared/utils.c.o -c /workspace/src/shared/utils.c", + "file": "/workspace/src/shared/utils.c", + "output": "CMakeFiles/server.dir/src/shared/utils.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/client/client_cli.c.o -c /workspace/src/client/client_cli.c", + "file": "/workspace/src/client/client_cli.c", + "output": "CMakeFiles/client.dir/src/client/client_cli.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/client/client_send.c.o -c /workspace/src/client/client_send.c", + "file": "/workspace/src/client/client_send.c", + "output": "CMakeFiles/client.dir/src/client/client_send.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/client/scanner.c.o -c /workspace/src/client/scanner.c", + "file": "/workspace/src/client/scanner.c", + "output": "CMakeFiles/client.dir/src/client/scanner.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/array_list.c.o -c /workspace/src/shared/array_list.c", + "file": "/workspace/src/shared/array_list.c", + "output": "CMakeFiles/client.dir/src/shared/array_list.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/chunk.c.o -c /workspace/src/shared/chunk.c", + "file": "/workspace/src/shared/chunk.c", + "output": "CMakeFiles/client.dir/src/shared/chunk.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/compression.c.o -c /workspace/src/shared/compression.c", + "file": "/workspace/src/shared/compression.c", + "output": "CMakeFiles/client.dir/src/shared/compression.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/config.c.o -c /workspace/src/shared/config.c", + "file": "/workspace/src/shared/config.c", + "output": "CMakeFiles/client.dir/src/shared/config.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/data.c.o -c /workspace/src/shared/data.c", + "file": "/workspace/src/shared/data.c", + "output": "CMakeFiles/client.dir/src/shared/data.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/delta.c.o -c /workspace/src/shared/delta.c", + "file": "/workspace/src/shared/delta.c", + "output": "CMakeFiles/client.dir/src/shared/delta.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/file.c.o -c /workspace/src/shared/file.c", + "file": "/workspace/src/shared/file.c", + "output": "CMakeFiles/client.dir/src/shared/file.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/log.c.o -c /workspace/src/shared/log.c", + "file": "/workspace/src/shared/log.c", + "output": "CMakeFiles/client.dir/src/shared/log.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/metadata.c.o -c /workspace/src/shared/metadata.c", + "file": "/workspace/src/shared/metadata.c", + "output": "CMakeFiles/client.dir/src/shared/metadata.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/multiprocessing.c.o -c /workspace/src/shared/multiprocessing.c", + "file": "/workspace/src/shared/multiprocessing.c", + "output": "CMakeFiles/client.dir/src/shared/multiprocessing.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/protocol.c.o -c /workspace/src/shared/protocol.c", + "file": "/workspace/src/shared/protocol.c", + "output": "CMakeFiles/client.dir/src/shared/protocol.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/queue.c.o -c /workspace/src/shared/queue.c", + "file": "/workspace/src/shared/queue.c", + "output": "CMakeFiles/client.dir/src/shared/queue.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/transport_ssh.c.o -c /workspace/src/shared/transport_ssh.c", + "file": "/workspace/src/shared/transport_ssh.c", + "output": "CMakeFiles/client.dir/src/shared/transport_ssh.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/transport_tcp.c.o -c /workspace/src/shared/transport_tcp.c", + "file": "/workspace/src/shared/transport_tcp.c", + "output": "CMakeFiles/client.dir/src/shared/transport_tcp.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/transport_tls.c.o -c /workspace/src/shared/transport_tls.c", + "file": "/workspace/src/shared/transport_tls.c", + "output": "CMakeFiles/client.dir/src/shared/transport_tls.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/client.dir/src/shared/utils.c.o -c /workspace/src/shared/utils.c", + "file": "/workspace/src/shared/utils.c", + "output": "CMakeFiles/client.dir/src/shared/utils.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/runner.c.o -c /workspace/tests/runner.c", + "file": "/workspace/tests/runner.c", + "output": "CMakeFiles/tests.dir/tests/runner.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_array_list.c.o -c /workspace/tests/test_array_list.c", + "file": "/workspace/tests/test_array_list.c", + "output": "CMakeFiles/tests.dir/tests/test_array_list.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_chunk.c.o -c /workspace/tests/test_chunk.c", + "file": "/workspace/tests/test_chunk.c", + "output": "CMakeFiles/tests.dir/tests/test_chunk.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_compression.c.o -c /workspace/tests/test_compression.c", + "file": "/workspace/tests/test_compression.c", + "output": "CMakeFiles/tests.dir/tests/test_compression.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_config.c.o -c /workspace/tests/test_config.c", + "file": "/workspace/tests/test_config.c", + "output": "CMakeFiles/tests.dir/tests/test_config.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_data.c.o -c /workspace/tests/test_data.c", + "file": "/workspace/tests/test_data.c", + "output": "CMakeFiles/tests.dir/tests/test_data.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_delta.c.o -c /workspace/tests/test_delta.c", + "file": "/workspace/tests/test_delta.c", + "output": "CMakeFiles/tests.dir/tests/test_delta.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_file.c.o -c /workspace/tests/test_file.c", + "file": "/workspace/tests/test_file.c", + "output": "CMakeFiles/tests.dir/tests/test_file.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_glob.c.o -c /workspace/tests/test_glob.c", + "file": "/workspace/tests/test_glob.c", + "output": "CMakeFiles/tests.dir/tests/test_glob.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_metadata.c.o -c /workspace/tests/test_metadata.c", + "file": "/workspace/tests/test_metadata.c", + "output": "CMakeFiles/tests.dir/tests/test_metadata.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_property.c.o -c /workspace/tests/test_property.c", + "file": "/workspace/tests/test_property.c", + "output": "CMakeFiles/tests.dir/tests/test_property.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_protocol.c.o -c /workspace/tests/test_protocol.c", + "file": "/workspace/tests/test_protocol.c", + "output": "CMakeFiles/tests.dir/tests/test_protocol.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_queue.c.o -c /workspace/tests/test_queue.c", + "file": "/workspace/tests/test_queue.c", + "output": "CMakeFiles/tests.dir/tests/test_queue.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_robustness.c.o -c /workspace/tests/test_robustness.c", + "file": "/workspace/tests/test_robustness.c", + "output": "CMakeFiles/tests.dir/tests/test_robustness.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_scanner.c.o -c /workspace/tests/test_scanner.c", + "file": "/workspace/tests/test_scanner.c", + "output": "CMakeFiles/tests.dir/tests/test_scanner.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_shared_utils.c.o -c /workspace/tests/test_shared_utils.c", + "file": "/workspace/tests/test_shared_utils.c", + "output": "CMakeFiles/tests.dir/tests/test_shared_utils.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/tests/test_stress.c.o -c /workspace/tests/test_stress.c", + "file": "/workspace/tests/test_stress.c", + "output": "CMakeFiles/tests.dir/tests/test_stress.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/array_list.c.o -c /workspace/src/shared/array_list.c", + "file": "/workspace/src/shared/array_list.c", + "output": "CMakeFiles/tests.dir/src/shared/array_list.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/chunk.c.o -c /workspace/src/shared/chunk.c", + "file": "/workspace/src/shared/chunk.c", + "output": "CMakeFiles/tests.dir/src/shared/chunk.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/compression.c.o -c /workspace/src/shared/compression.c", + "file": "/workspace/src/shared/compression.c", + "output": "CMakeFiles/tests.dir/src/shared/compression.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/config.c.o -c /workspace/src/shared/config.c", + "file": "/workspace/src/shared/config.c", + "output": "CMakeFiles/tests.dir/src/shared/config.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/data.c.o -c /workspace/src/shared/data.c", + "file": "/workspace/src/shared/data.c", + "output": "CMakeFiles/tests.dir/src/shared/data.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/delta.c.o -c /workspace/src/shared/delta.c", + "file": "/workspace/src/shared/delta.c", + "output": "CMakeFiles/tests.dir/src/shared/delta.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/file.c.o -c /workspace/src/shared/file.c", + "file": "/workspace/src/shared/file.c", + "output": "CMakeFiles/tests.dir/src/shared/file.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/log.c.o -c /workspace/src/shared/log.c", + "file": "/workspace/src/shared/log.c", + "output": "CMakeFiles/tests.dir/src/shared/log.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/metadata.c.o -c /workspace/src/shared/metadata.c", + "file": "/workspace/src/shared/metadata.c", + "output": "CMakeFiles/tests.dir/src/shared/metadata.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/multiprocessing.c.o -c /workspace/src/shared/multiprocessing.c", + "file": "/workspace/src/shared/multiprocessing.c", + "output": "CMakeFiles/tests.dir/src/shared/multiprocessing.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/protocol.c.o -c /workspace/src/shared/protocol.c", + "file": "/workspace/src/shared/protocol.c", + "output": "CMakeFiles/tests.dir/src/shared/protocol.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/queue.c.o -c /workspace/src/shared/queue.c", + "file": "/workspace/src/shared/queue.c", + "output": "CMakeFiles/tests.dir/src/shared/queue.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/transport_ssh.c.o -c /workspace/src/shared/transport_ssh.c", + "file": "/workspace/src/shared/transport_ssh.c", + "output": "CMakeFiles/tests.dir/src/shared/transport_ssh.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/transport_tcp.c.o -c /workspace/src/shared/transport_tcp.c", + "file": "/workspace/src/shared/transport_tcp.c", + "output": "CMakeFiles/tests.dir/src/shared/transport_tcp.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/transport_tls.c.o -c /workspace/src/shared/transport_tls.c", + "file": "/workspace/src/shared/transport_tls.c", + "output": "CMakeFiles/tests.dir/src/shared/transport_tls.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/shared/utils.c.o -c /workspace/src/shared/utils.c", + "file": "/workspace/src/shared/utils.c", + "output": "CMakeFiles/tests.dir/src/shared/utils.c.o" +}, +{ + "directory": "/workspace/build_docker2", + "command": "/usr/bin/cc -I/workspace/tests -I/workspace/src/shared -I/workspace/src/server -I/workspace/src/client -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/tests.dir/src/client/scanner.c.o -c /workspace/src/client/scanner.c", + "file": "/workspace/src/client/scanner.c", + "output": "CMakeFiles/tests.dir/src/client/scanner.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhash.dir/__/xxhash.c.o -c /workspace/build_docker2/_deps/xxhash-src/xxhash.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/xxhash.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhash.dir/__/xxhash.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/cli/xxhsum.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xxhsum.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_arch.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_arch.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_os_specific.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_os_specific.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_output.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_output.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_sanity_check.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_sanity_check.c.o" +}, +{ + "directory": "/workspace/build_docker2/_deps/xxhash-build", + "command": "/usr/bin/cc -I/workspace/build_docker2/_deps/xxhash-src/cmake_unofficial/.. -O3 -DNDEBUG -std=gnu11 -Wall -g -O3 -Wextra -Wpedantic -Werror -o CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o -c /workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c", + "file": "/workspace/build_docker2/_deps/xxhash-src/cli/xsum_bench.c", + "output": "_deps/xxhash-build/CMakeFiles/xxhsum.dir/__/cli/xsum_bench.c.o" +} +] \ No newline at end of file diff --git a/build_docker2/server b/build_docker2/server new file mode 100755 index 0000000..f536743 Binary files /dev/null and b/build_docker2/server differ diff --git a/build_docker2/tests b/build_docker2/tests new file mode 100755 index 0000000..b1b72ad Binary files /dev/null and b/build_docker2/tests differ diff --git a/src/shared/protocol.h b/src/shared/protocol.h index a7854f1..113f14f 100644 --- a/src/shared/protocol.h +++ b/src/shared/protocol.h @@ -17,7 +17,10 @@ enum NET_STATUS { STATUS_MANIFEST, STATUS_CHECK, STATUS_DELTA_SIGNATURE, - STATUS_DELTA_DATA + STATUS_DELTA_DATA, + STATUS_KEEPALIVE, + STATUS_ABORT, + STATUS_CHECK_BATCH }; void io_set_fds(int read_fd, int write_fd); diff --git a/tests/runner.c b/tests/runner.c index 6ae6c12..112e4ab 100644 --- a/tests/runner.c +++ b/tests/runner.c @@ -14,6 +14,9 @@ #include "test_scanner.h" #include "test_shared_utils.h" #include "test_stress.h" +#include "test_transport_tcp.h" +#include "test_transport_ssh.h" +#include "test_transport_tls.h" #include "test_utils.h" #include @@ -41,6 +44,9 @@ int main() { RUN_TEST(test_robustness); RUN_TEST(test_stress); RUN_TEST(test_property); + RUN_TEST(test_transport_tcp); + RUN_TEST(test_transport_ssh); + RUN_TEST(test_transport_tls); printf("\n\033[1;36m=== TEST SUMMARY ===\033[0m\n"); printf("Total Tests Run: %d\n", tests_run); diff --git a/tests/test_protocol.c b/tests/test_protocol.c index d0070fe..af1dc00 100644 --- a/tests/test_protocol.c +++ b/tests/test_protocol.c @@ -128,8 +128,9 @@ static void test_send_receive_status() { io_set_fds(p[0], p[1]); io_set_bwlimit(0); - Status statuses[] = {STATUS_OK, STATUS_ERROR, STATUS_FINISHED, STATUS_NEXT, - STATUS_CHUNK, STATUS_CHECK, STATUS_DELTA_SIGNATURE, STATUS_DELTA_DATA}; + Status statuses[] = {STATUS_OK, STATUS_ERROR, STATUS_FINISHED, STATUS_NEXT, + STATUS_CHUNK, STATUS_CHECK, STATUS_DELTA_SIGNATURE, STATUS_DELTA_DATA, + STATUS_KEEPALIVE, STATUS_ABORT, STATUS_CHECK_BATCH}; int count = sizeof(statuses) / sizeof(statuses[0]); for (int i = 0; i < count; i++) { diff --git a/tests/test_transport_ssh.c b/tests/test_transport_ssh.c new file mode 100644 index 0000000..eb08174 --- /dev/null +++ b/tests/test_transport_ssh.c @@ -0,0 +1,18 @@ +#include "test_transport_ssh.h" +#include "test_utils.h" +#include "transport_ssh.h" + +static void test_ssh_connect_invalid_dest_no_colon() { + Client* c = client_connect_ssh("/path/to/dest", 22); + EXPECT_NULL(c); +} + +static void test_ssh_connect_invalid_dest_empty() { + Client* c = client_connect_ssh("", 22); + EXPECT_NULL(c); +} + +void test_transport_ssh() { + test_ssh_connect_invalid_dest_no_colon(); + test_ssh_connect_invalid_dest_empty(); +} diff --git a/tests/test_transport_ssh.h b/tests/test_transport_ssh.h new file mode 100644 index 0000000..0df5a47 --- /dev/null +++ b/tests/test_transport_ssh.h @@ -0,0 +1,6 @@ +#ifndef TEST_TRANSPORT_SSH_H +#define TEST_TRANSPORT_SSH_H + +void test_transport_ssh(); + +#endif diff --git a/tests/test_transport_tcp.c b/tests/test_transport_tcp.c new file mode 100644 index 0000000..516879f --- /dev/null +++ b/tests/test_transport_tcp.c @@ -0,0 +1,43 @@ +#include "test_transport_tcp.h" +#include "test_utils.h" +#include "transport_tcp.h" +#include + +static void test_server_create_ephemeral() { + Server* s = server_create(0); + EXPECT_NOT_NULL(s); + EXPECT_TRUE(s->file_descriptor >= 0); + EXPECT_EQ_INT(s->address.sin_family, AF_INET); + server_delete(&s); + EXPECT_NULL(s); +} + +static void test_server_delete_null() { + Server* s = NULL; + server_delete(&s); + EXPECT_NULL(s); +} + +static void test_client_create() { + Client* c = client_create(); + EXPECT_NOT_NULL(c); + EXPECT_TRUE(c->file_descriptor >= 0); + EXPECT_EQ_INT(c->address.sin_family, AF_INET); + EXPECT_EQ_INT(c->ssh_child_pid, -1); + EXPECT_NULL(c->ssl); + EXPECT_NULL(c->ssl_ctx); + client_disconnect(c); + client_delete(c); +} + +static void test_client_delete_null() { + Client* c = NULL; + client_delete(c); +} + +void test_transport_tcp() { + test_server_create_ephemeral(); + test_server_delete_null(); + test_client_create(); + test_client_delete_null(); +} diff --git a/tests/test_transport_tcp.h b/tests/test_transport_tcp.h new file mode 100644 index 0000000..720209f --- /dev/null +++ b/tests/test_transport_tcp.h @@ -0,0 +1,6 @@ +#ifndef TEST_TRANSPORT_TCP_H +#define TEST_TRANSPORT_TCP_H + +void test_transport_tcp(); + +#endif diff --git a/tests/test_transport_tls.c b/tests/test_transport_tls.c new file mode 100644 index 0000000..657732d --- /dev/null +++ b/tests/test_transport_tls.c @@ -0,0 +1,24 @@ +#include "test_transport_tls.h" +#include "test_utils.h" +#include "transport_tcp.h" +#include "transport_tls.h" + +static void test_tls_global_init() { + bool ok = tls_global_init(); + EXPECT_TRUE(ok); +} + +static void test_server_create_tls_without_certs() { + Server* s = server_create(0); + EXPECT_NOT_NULL(s); + bool ok = server_create_tls(s, NULL, NULL, NULL); + EXPECT_TRUE(ok); + EXPECT_NOT_NULL(s->ssl_ctx); + server_delete(&s); + EXPECT_NULL(s); +} + +void test_transport_tls() { + test_tls_global_init(); + test_server_create_tls_without_certs(); +} diff --git a/tests/test_transport_tls.h b/tests/test_transport_tls.h new file mode 100644 index 0000000..aa13a69 --- /dev/null +++ b/tests/test_transport_tls.h @@ -0,0 +1,6 @@ +#ifndef TEST_TRANSPORT_TLS_H +#define TEST_TRANSPORT_TLS_H + +void test_transport_tls(); + +#endif