Last active
August 16, 2023 19:50
-
-
Save airhorns/7b32d166b647863c58c0794f45ec2737 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rip" "-dynamiclib" "-Wl,-dylib" "-nodefaultlibs" "--ld-path=/nix/store/cg869jlpzrh5xgc0hcll7risc5gsk611-mold-2.1.0/bin/mold" | |
> = note: clang-11: error: unsupported option '--ld-path=/nix/store/cg869jlpzrh5xgc0hcll7risc5gsk611-mold-2.1.0/bin/mold' | |
> | |
> | |
> error: could not compile `jsonpath_lib` (lib) due to previous error | |
> warning: build failed, waiting for other jobs to finish... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib | |
, fetchFromGitHub | |
, fetchzip | |
, rustPlatform | |
, bootstrap_cmds | |
, DiskArbitration | |
, Foundation | |
, cmake | |
, libiconv | |
, lld_14 | |
, openssl | |
, perl | |
, postgresql | |
, mold | |
, pkg-config | |
, llvmPackages_14 | |
}: | |
# forked from https://github.com/NixOS/nixpkgs/blob/nixos-23.05/pkgs/servers/sql/materialize/default.nix#L108 | |
# updated to use more recent materialized version | |
let | |
stdenv = llvmPackages_14.stdenv; | |
fetchNpmPackage = {name, version, hash, js_prod_file, js_dev_file, ...} @ args: | |
let | |
package = fetchzip { | |
url = "https://registry.npmjs.org/${name}/-/${baseNameOf name}-${version}.tgz"; | |
inherit hash; | |
}; | |
static = "./src/materialized/src/http/static"; | |
cssVendor = "./src/materialized/src/http/static/css/vendor"; | |
jsProdVendor = "./src/materialized/src/http/static/js/vendor"; | |
jsDevVendor = "./src/materialized/src/http/static-dev/js/vendor"; | |
files = with args; [ | |
{ src = js_prod_file; dst = "${jsProdVendor}/${name}.js"; } | |
{ src = js_dev_file; dst = "${jsDevVendor}/${name}.js"; } | |
] ++ lib.optional (args ? css_file) { src = css_file; dst = "${cssVendor}/${name}.css"; } | |
++ lib.optional (args ? extra_file) { src = extra_file.src; dst = "${static}/${extra_file.dst}"; }; | |
in | |
lib.concatStringsSep "\n" (lib.forEach files ({src, dst}: '' | |
mkdir -p "${dirOf dst}" | |
cp "${package}/${src}" "${dst}" | |
'')); | |
npmPackages = import ./npm_deps.nix; | |
in | |
rustPlatform.buildRustPackage rec { | |
pname = "materialize"; | |
version = "0.65.1"; | |
src = fetchFromGitHub { | |
owner = "MaterializeInc"; | |
repo = pname; | |
rev = "v${version}"; | |
hash = "sha256-DnwdymC4Cz2BiERPtvCRvT4a1OczNegaZJFsD14Vi8o="; | |
}; | |
# env var needed by the build process | |
MZ_DEV_BUILD_SHA = "f8de47a6fa260ce9795f8a3064fbb6748e7e609d"; | |
cargoHash = ""; | |
cargoLock = { | |
lockFile = ./Cargo.lock; | |
allowBuiltinFetchGit = true; | |
}; | |
# give rust bindgen a recent clang | |
nativeBuildInputs = [ cmake perl pkg-config rustPlatform.bindgenHook ] | |
# Provides the mig command used by the krb5-src build script | |
++ lib.optional stdenv.isDarwin bootstrap_cmds; | |
# Copied from https://github.com/MaterializeInc/materialize/blob/25c11bc76633e9456ebdac2c8f0197da9e76fd1b/misc/nix/shell.nix | |
RUSTFLAGS = "-Clinker=clang -Clink-arg=--ld-path=${mold}/bin/mold"; | |
# Needed to get openssl-sys to use pkg-config. | |
OPENSSL_NO_VENDOR = 1; | |
buildInputs = [ openssl postgresql lld_14 ] | |
++ lib.optionals stdenv.isDarwin [ libiconv DiskArbitration Foundation ]; | |
# Skip tests that use the network | |
doCheck = false; | |
checkFlags = [ | |
"--exact" | |
"--skip test_client" | |
"--skip test_client_errors" | |
"--skip test_client_all_subjects" | |
"--skip test_client_subject_and_references" | |
"--skip test_no_block" | |
"--skip test_safe_mode" | |
"--skip test_tls" | |
]; | |
postPatch = '' | |
${lib.concatStringsSep "\n" (map fetchNpmPackage npmPackages)} | |
''; | |
cargoBuildFlags = [ "--bin mz --bin environmentd" ]; | |
meta = with lib; { | |
homepage = "https://materialize.com"; | |
description = "A streaming SQL materialized view engine for real-time applications"; | |
license = licenses.bsl11; | |
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]; | |
maintainers = [ maintainers.petrosagg ]; | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
unpacking sources | |
unpacking source archive /nix/store/kfk9zzfvxfy2h4x22dln744437xkzdip-source | |
source root is source | |
Executing cargoSetupPostUnpackHook | |
Finished cargoSetupPostUnpackHook | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
patching sources | |
Executing cargoSetupPostPatchHook | |
Validating consistency between /private/tmp/nix-build-materialize-0.65.1.drv-2/source/Cargo.lock and /private/tmp/nix-build-materialize-0.65.1.drv-2/cargo-vendor-dir/Cargo.lock | |
Finished cargoSetupPostPatchHook | |
@nix { "action": "setPhase", "phase": "configurePhase" } | |
configuring | |
@nix { "action": "setPhase", "phase": "buildPhase" } | |
building | |
Executing cargoBuildHook | |
++ env CC_x86_64-apple-darwin=/nix/store/21apr3mbmghnkd6zy2axxli2s36js3n8-clang-wrapper-11.1.0/bin/cc CXX_x86_64-apple-darwin=/nix/store/21apr3mbmghnkd6zy2axxli2s36js3n8-clang-wrapper-11.1.0/bin/c++ CC_x86_64-apple-darwin=/nix/store/21apr3mbmghnkd6zy2axxli2s36js3n8-clang-wrapper-11.1.0/bin/cc CXX_x86_64-apple-darwin=/nix/store/21apr3mbmghnkd6zy2axxli2s36js3n8-clang-wrapper-11.1.0/bin/c++ cargo build -j 10 --target x86_64-apple-darwin --frozen --release --bin mz --bin environmentd | |
[0m[0m[1m[32m Compiling[0m libc v0.2.142 | |
[0m[0m[1m[32m Compiling[0m proc-macro2 v1.0.66 | |
[0m[0m[1m[32m Compiling[0m quote v1.0.28 | |
[0m[0m[1m[32m Compiling[0m unicode-ident v1.0.0 | |
[0m[0m[1m[32m Compiling[0m serde v1.0.164 | |
[0m[0m[1m[32m Compiling[0m autocfg v1.1.0 | |
[0m[0m[1m[32m Compiling[0m syn v1.0.107 | |
[0m[0m[1m[32m Compiling[0m memchr v2.5.0 | |
[0m[0m[1m[32m Compiling[0m version_check v0.9.4 | |
[0m[0m[1m[32m Compiling[0m cfg-if v1.0.0 | |
[0m[0m[1m[32m Compiling[0m log v0.4.17 | |
[0m[0m[1m[32m Compiling[0m parking_lot_core v0.9.4 | |
[0m[0m[1m[32m Compiling[0m futures-core v0.3.28 | |
[0m[0m[1m[32m Compiling[0m indexmap v1.9.1 | |
[0m[0m[1m[32m Compiling[0m tokio v1.27.0 | |
[0m[0m[1m[32m Compiling[0m io-lifetimes v1.0.10 | |
[0m[0m[1m[32m Compiling[0m futures-task v0.3.28 | |
[0m[0m[1m[32m Compiling[0m futures-channel v0.3.28 | |
[0m[0m[1m[32m Compiling[0m rustix v0.37.15 | |
[0m[0m[1m[32m Compiling[0m futures-util v0.3.28 | |
[0m[0m[1m[32m Compiling[0m num-traits v0.2.15 | |
[0m[0m[1m[32m Compiling[0m ahash v0.8.0 | |
[0m[0m[1m[32m Compiling[0m core-foundation-sys v0.8.3 | |
[0m[0m[1m[32m Compiling[0m once_cell v1.16.0 | |
[0m[0m[1m[32m Compiling[0m serde_json v1.0.99 | |
[0m[0m[1m[32m Compiling[0m typenum v1.15.0 | |
[0m[0m[1m[32m Compiling[0m syn v2.0.18 | |
[0m[0m[1m[32m Compiling[0m jobserver v0.1.21 | |
[0m[0m[1m[32m Compiling[0m getrandom v0.2.7 | |
[0m[0m[1m[32m Compiling[0m generic-array v0.14.4 | |
[0m[0m[1m[32m Compiling[0m itoa v1.0.6 | |
[0m[0m[1m[32m Compiling[0m cc v1.0.78 | |
[0m[0m[1m[32m Compiling[0m lazy_static v1.4.0 | |
[0m[0m[1m[32m Compiling[0m bitflags v1.3.2 | |
[0m[0m[1m[32m Compiling[0m hashbrown v0.12.3 | |
[0m[0m[1m[32m Compiling[0m httparse v1.8.0 | |
[0m[0m[1m[32m Compiling[0m pin-project-lite v0.2.9 | |
[0m[0m[1m[32m Compiling[0m errno v0.3.1 | |
[0m[0m[1m[32m Compiling[0m scopeguard v1.1.0 | |
[0m[0m[1m[32m Compiling[0m fastrand v1.8.0 | |
[0m[0m[1m[32m Compiling[0m regex-syntax v0.6.28 | |
[0m[0m[1m[32m Compiling[0m ryu v1.0.12 | |
[0m[0m[1m[32m Compiling[0m time-core v0.1.0 | |
[0m[0m[1m[32m Compiling[0m lock_api v0.4.6 | |
[0m[0m[1m[32m Compiling[0m time-macros v0.2.6 | |
[0m[0m[1m[32m Compiling[0m thiserror v1.0.40 | |
[0m[0m[1m[32m Compiling[0m adler v1.0.2 | |
[0m[0m[1m[32m Compiling[0m anyhow v1.0.66 | |
[0m[0m[1m[32m Compiling[0m miniz_oxide v0.5.1 | |
[0m[0m[1m[32m Compiling[0m rand_core v0.6.2 | |
[0m[0m[1m[32m Compiling[0m backtrace v0.3.66 | |
[0m[0m[1m[32m Compiling[0m tempfile v3.5.0 | |
[0m[0m[1m[32m Compiling[0m num_cpus v1.15.0 | |
[0m[0m[1m[32m Compiling[0m aho-corasick v0.7.20 | |
[0m[0m[1m[32m Compiling[0m gimli v0.26.1 | |
[0m[0m[1m[32m Compiling[0m native-tls v0.2.11 | |
[0m[0m[1m[32m Compiling[0m object v0.29.0 | |
[0m[0m[1m[32m Compiling[0m num-integer v0.1.44 | |
[0m[0m[1m[32m Compiling[0m rustc-demangle v0.1.16 | |
[0m[0m[1m[32m Compiling[0m regex v1.7.0 | |
[0m[0m[1m[32m Compiling[0m ppv-lite86 v0.2.10 | |
[0m[0m[1m[32m Compiling[0m futures-sink v0.3.28 | |
[0m[0m[1m[32m Compiling[0m mio v0.8.5 | |
[0m[0m[1m[32m Compiling[0m signal-hook-registry v1.4.1 | |
[0m[0m[1m[32m Compiling[0m rand_chacha v0.3.0 | |
[0m[0m[1m[32m Compiling[0m socket2 v0.4.9 | |
[0m[0m[1m[32m Compiling[0m addr2line v0.17.0 | |
[0m[0m[1m[32m Compiling[0m rand v0.8.5 | |
[0m[0m[1m[32m Compiling[0m pin-utils v0.1.0 | |
[0m[0m[1m[32m Compiling[0m futures-io v0.3.28 | |
[0m[0m[1m[32m Compiling[0m slab v0.4.6 | |
[0m[0m[1m[32m Compiling[0m fnv v1.0.7 | |
[0m[0m[1m[32m Compiling[0m heck v0.4.0 | |
[0m[0m[1m[32m Compiling[0m semver v1.0.16 | |
[0m[0m[1m[32m Compiling[0m pkg-config v0.3.20 | |
[0m[0m[1m[32m Compiling[0m allocator-api2 v0.2.16 | |
[0m[0m[1m[32m Compiling[0m serde_derive v1.0.164 | |
[0m[0m[1m[32m Compiling[0m tokio-macros v2.0.0 | |
[0m[0m[1m[32m Compiling[0m futures-macro v0.3.28 | |
[0m[0m[1m[32m Compiling[0m thiserror-impl v1.0.40 | |
[0m[0m[1m[32m Compiling[0m hashbrown v0.14.0 | |
[0m[0m[1m[32m Compiling[0m equivalent v1.0.1 | |
[0m[0m[1m[32m Compiling[0m indexmap v2.0.0 | |
[0m[0m[1m[32m Compiling[0m tracing-attributes v0.1.23 | |
[0m[0m[1m[32m Compiling[0m pin-project-internal v1.0.12 | |
[0m[0m[1m[32m Compiling[0m tracing-core v0.1.30 | |
[0m[0m[1m[32m Compiling[0m crc32fast v1.3.2 | |
[0m[0m[1m[32m Compiling[0m openssl-src v111.25.0+1.1.1t | |
[0m[0m[1m[32m Compiling[0m crossbeam-utils v0.8.7 | |
[0m[0m[1m[32m Compiling[0m async-trait v0.1.68 | |
[0m[0m[1m[32m Compiling[0m openssl-sys v0.9.90 | |
[0m[0m[1m[32m Compiling[0m percent-encoding v2.2.0 | |
[0m[0m[1m[32m Compiling[0m tracing v0.1.37 | |
[0m[0m[1m[32m Compiling[0m tinyvec_macros v0.1.0 | |
[0m[0m[1m[32m Compiling[0m matches v0.1.9 | |
[0m[0m[1m[32m Compiling[0m tinyvec v1.6.0 | |
[0m[0m[1m[32m Compiling[0m unicode-bidi v0.3.4 | |
[0m[0m[1m[32m Compiling[0m memoffset v0.7.1 | |
[0m[0m[1m[32m Compiling[0m tower-service v0.3.1 | |
[0m[0m[1m[32m Compiling[0m subtle v2.4.1 | |
[0m[0m[1m[32m Compiling[0m uncased v0.9.7 | |
[0m[0m[1m[32m Compiling[0m form_urlencoded v1.1.0 | |
[0m[0m[1m[32m Compiling[0m unicode-normalization v0.1.21 | |
[0m[0m[1m[32m Compiling[0m try-lock v0.2.2 | |
[0m[0m[1m[32m Compiling[0m httpdate v1.0.2 | |
[0m[0m[1m[32m Compiling[0m block-buffer v0.10.0 | |
[0m[0m[1m[32m Compiling[0m crypto-common v0.1.3 | |
[0m[0m[1m[32m Compiling[0m want v0.3.0 | |
[0m[0m[1m[32m Compiling[0m digest v0.10.6 | |
[0m[0m[1m[32m Compiling[0m security-framework-sys v2.6.1 | |
[0m[0m[1m[32m Compiling[0m core-foundation v0.9.3 | |
[0m[0m[1m[32m Compiling[0m crossbeam-epoch v0.9.13 | |
[0m[0m[1m[32m Compiling[0m byteorder v1.4.3 | |
[0m[0m[1m[32m Compiling[0m cpufeatures v0.2.1 | |
[0m[0m[1m[32m Compiling[0m security-framework v2.7.0 | |
[0m[0m[1m[32m Compiling[0m idna v0.3.0 | |
[0m[0m[1m[32m Compiling[0m quickcheck v1.0.3 | |
[0m[0m[1m[32m Compiling[0m rustversion v1.0.9 | |
[0m[0m[1m[32m Compiling[0m tower-layer v0.3.2 | |
[0m[0m[1m[32m Compiling[0m openssl v0.10.55 | |
[0m[0m[1m[32m Compiling[0m outref v0.5.1 | |
[0m[0m[1m[32m Compiling[0m vsimd v0.8.0 | |
[0m[0m[1m[32m Compiling[0m base64-simd v0.8.0 | |
[0m[0m[1m[32m Compiling[0m pin-project v1.0.12 | |
[0m[0m[1m[32m Compiling[0m openssl-macros v0.1.0 | |
[0m[0m[1m[32m Compiling[0m base64 v0.21.0 | |
[0m[0m[1m[32m Compiling[0m tokio-openssl v0.6.3 | |
[0m[0m[1m[32m Compiling[0m bytes v1.4.0 | |
[0m[0m[1m[32m Compiling[0m either v1.8.0 | |
[0m[0m[1m[32m Compiling[0m smallvec v1.10.0 | |
[0m[0m[1m[32m Compiling[0m itertools v0.10.5 | |
[0m[0m[1m[32m Compiling[0m http v0.2.9 | |
[0m[0m[1m[32m Compiling[0m rustc_version v0.4.0 | |
[0m[0m[1m[32m Compiling[0m parking_lot v0.12.1 | |
[0m[0m[1m[32m Compiling[0m http-body v0.4.5 | |
[0m[0m[1m[32m Compiling[0m aws-types v0.55.1 | |
[0m[0m[1m[32m Compiling[0m prost-derive v0.11.9 | |
[0m[0m[1m[32m Compiling[0m time v0.3.17 | |
[0m[0m[1m[32m Compiling[0m url v2.3.1 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-types v0.55.2 | |
[0m[0m[1m[32m Compiling[0m mime v0.3.17 | |
[0m[0m[1m[32m Compiling[0m prost v0.11.9 | |
[0m[0m[1m[32m Compiling[0m strsim v0.10.0 | |
[0m[0m[1m[32m Compiling[0m k8s-openapi v0.19.0 | |
[0m[0m[1m[32m Compiling[0m schemars v0.8.11 | |
[0m[0m[1m[32m Compiling[0m prost-types v0.11.9 | |
[0m[0m[1m[32m Compiling[0m libz-sys v1.1.8 | |
[0m[0m[1m[32m Compiling[0m tokio-util v0.7.4 | |
[0m[0m[1m[32m Compiling[0m serde_derive_internals v0.26.0 | |
[0m[0m[1m[32m Compiling[0m rayon-core v1.9.1 | |
[0m[0m[1m[32m Compiling[0m h2 v0.3.18 | |
[0m[0m[1m[32m Compiling[0m zeroize v1.5.7 | |
[0m[0m[1m[32m Compiling[0m tower v0.4.13 | |
[0m[0m[1m[32m Compiling[0m schemars_derive v0.8.11 | |
[0m[0m[1m[32m Compiling[0m ident_case v1.0.1 | |
[0m[0m[1m[32m Compiling[0m siphasher v0.3.3 | |
[0m[0m[1m[32m Compiling[0m hyper-openssl v0.9.2 | |
[0m[0m[1m[32m Compiling[0m phf_shared v0.11.1 | |
[0m[0m[1m[32m Compiling[0m darling_core v0.14.1 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-eventstream v0.55.2 | |
[0m[0m[1m[32m Compiling[0m bytes-utils v0.1.1 | |
[0m[0m[1m[32m Compiling[0m axum-core v0.3.4 | |
[0m[0m[1m[32m Compiling[0m iana-time-zone v0.1.47 | |
[0m[0m[1m[32m Compiling[0m zstd-sys v2.0.1+zstd.1.5.2 | |
[0m[0m[1m[32m Compiling[0m sha1_smol v1.0.0 | |
[0m[0m[1m[32m Compiling[0m uuid v1.2.2 | |
[0m[0m[1m[32m Compiling[0m hyper v0.14.25 | |
[0m[0m[1m[32m Compiling[0m chrono v0.4.25 | |
[0m[0m[1m[32m Compiling[0m tokio-stream v0.1.11 | |
[0m[0m[1m[32m Compiling[0m darling_macro v0.14.1 | |
[0m[0m[1m[32m Compiling[0m tokio-native-tls v0.3.0 | |
[0m[0m[1m[32m Compiling[0m ring v0.16.20 | |
[0m[0m[1m[32m Compiling[0m num-bigint v0.4.3 | |
[0m[0m[1m[32m Compiling[0m proc-macro-error-attr v1.0.4 | |
[0m[0m[1m[32m Compiling[0m winnow v0.5.4 | |
[0m[0m[1m[32m Compiling[0m toml_datetime v0.6.3 | |
[0m[0m[1m[32m Compiling[0m encoding_rs v0.8.26 | |
[0m[0m[1m[32m Compiling[0m darling v0.14.1 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-async v0.55.2 | |
[0m[0m[1m[32m Compiling[0m axum v0.6.20 | |
[0m[0m[1m[32m Compiling[0m ordered-float v3.4.0 | |
[0m[0m[1m[32m Compiling[0m sha2 v0.10.6 | |
[0m[0m[1m[32m Compiling[0m sha1 v0.10.5 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-http v0.55.2 | |
[0m[0m[1m[32m Compiling[0m hyper-tls v0.5.0 | |
[0m[0m[1m[32m Compiling[0m hmac v0.12.1 | |
[0m[0m[1m[32m Compiling[0m toml_edit v0.19.14 | |
[0m[0m[1m[32m Compiling[0m rayon v1.5.1 | |
[0m[0m[1m[32m Compiling[0m proc-macro-error v1.0.4 | |
[0m[0m[1m[32m Compiling[0m termcolor v1.1.3 | |
[0m[0m[1m[32m Compiling[0m foreign-types-shared v0.1.1 | |
[0m[0m[1m[32m Compiling[0m foreign-types v0.3.2 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-http-tower v0.55.2 | |
[0m[0m[1m[32m Compiling[0m proc-macro-crate v1.3.1 | |
[0m[0m[1m[32m Compiling[0m serde-value v0.7.0 (https://github.com/MaterializeInc/serde-value.git#62c7e5f8) | |
[0m[0m[1m[32m Compiling[0m phf v0.11.1 | |
[0m[0m[1m[32m Compiling[0m md-5 v0.10.5 | |
[0m[0m[1m[32m Compiling[0m decnumber-sys v0.1.5 | |
[0m[0m[1m[32m Compiling[0m cmake v0.1.48 | |
[0m[0m[1m[32m Compiling[0m data-encoding v2.3.2 | |
[0m[0m[1m[32m Compiling[0m utf-8 v0.7.6 | |
[0m[0m[1m[32m Compiling[0m unicode-width v0.1.10 | |
[0m[0m[1m[32m Compiling[0m tungstenite v0.20.0 | |
[0m[0m[1m[32m Compiling[0m rdkafka-sys v4.3.0+1.9.2 (https://github.com/MaterializeInc/rust-rdkafka.git#8ea07c4d) | |
[0m[0m[1m[32m Compiling[0m aws-smithy-client v0.55.2 | |
[0m[0m[1m[32m Compiling[0m num_enum_derive v0.5.7 | |
[0m[0m[1m[32m Compiling[0m aws-credential-types v0.55.1 | |
[0m[0m[1m[32m Compiling[0m treediff v4.0.2 | |
[0m[0m[1m[32m Compiling[0m regex-automata v0.1.9 | |
[0m[0m[1m[32m Compiling[0m futures-executor v0.3.25 | |
[0m[0m[1m[32m Compiling[0m dyn-clone v1.0.9 | |
[0m[0m[1m[32m Compiling[0m linked-hash-map v0.5.4 | |
[0m[0m[1m[32m Compiling[0m linked_hash_set v0.1.4 | |
[0m[0m[1m[32m Compiling[0m futures v0.3.25 | |
[0m[0m[1m[32m Compiling[0m json-patch v1.0.0 | |
[0m[0m[1m[32m Compiling[0m clap_derive v3.2.24 | |
[0m[0m[1m[32m Compiling[0m tokio-tungstenite v0.20.0 | |
[0m[0m[1m[32m Compiling[0m tokio-io-timeout v1.1.1 | |
[0m[0m[1m[32m Compiling[0m stringprep v0.1.2 | |
[0m[0m[1m[32m Compiling[0m derivative v2.2.0 | |
[0m[0m[1m[32m Compiling[0m minimal-lexical v0.2.1 | |
[0m[0m[1m[32m Compiling[0m unsafe-libyaml v0.2.9 | |
[0m[0m[1m[32m Compiling[0m http-range-header v0.3.0 | |
[0m[0m[1m[32m Compiling[0m fallible-iterator v0.2.0 | |
[0m[0m[1m[32m Compiling[0m bitflags v2.3.3 | |
[0m[0m[1m[32m Compiling[0m tower-http v0.4.3 | |
[0m[0m[1m[32m Compiling[0m postgres-protocol v0.6.5 (https://github.com/MaterializeInc/rust-postgres#7bdd17b5) | |
[0m[0m[1m[32m Compiling[0m serde_yaml v0.9.25 | |
[0m[0m[1m[32m Compiling[0m nom v7.1.2 | |
[0m[0m[1m[32m Compiling[0m hyper-timeout v0.4.1 | |
[0m[0m[1m[32m Compiling[0m crossbeam-deque v0.8.2 | |
[0m[0m[1m[32m Compiling[0m crossbeam-channel v0.5.8 | |
[0m[0m[1m[32m Compiling[0m secrecy v0.8.0 | |
[0m[0m[1m[32m Compiling[0m jsonpath_lib v0.3.0 | |
[0m[0m[1m[32m Compiling[0m pem v2.0.1 | |
[0m[0m[1m[32m Compiling[0m terminal_size v0.2.6 | |
[0m[0m[1m[32m Compiling[0m instant v0.1.12 | |
[0m[0m[1m[32m Compiling[0m base64 v0.13.1 | |
[0m[0m[1m[32m Compiling[0m home v0.5.5 | |
[0m[0m[1m[32m Compiling[0m plotters-backend v0.3.2 | |
[0m[0m[1m[32m Compiling[0m half v1.6.0 | |
[0m[0m[1m[32m Compiling[0m os_str_bytes v6.0.0 | |
[0m[0m[1m[32m Compiling[0m ciborium-io v0.2.0 | |
[0m[0m[1m[32m Compiling[0m hex v0.4.3 | |
[0m[0m[1m[32m Compiling[0m ciborium-ll v0.2.0 | |
[0m[0m[1m[32m Compiling[0m clap_lex v0.2.2 | |
[0m[0m[1m[32m Compiling[0m plotters-svg v0.3.1 | |
[0m[0m[1m[32m Compiling[0m aws-sigv4 v0.55.1 | |
[0m[0m[1m[32m Compiling[0m backoff v0.4.0 | |
[0m[0m[1m[32m Compiling[0m textwrap v0.16.0 | |
[0m[0m[1m[32m Compiling[0m postgres-types v0.2.5 (https://github.com/MaterializeInc/rust-postgres#7bdd17b5) | |
[0m[0m[1m[32m Compiling[0m bstr v0.2.14 | |
[0m[0m[1m[32m Compiling[0m kube-derive v0.85.0 | |
[0m[0m[1m[32m Compiling[0m headers-core v0.2.0 | |
[0m[0m[1m[32m Compiling[0m serde_urlencoded v0.7.1 | |
[0m[0m[1m[32m Compiling[0m atty v0.2.14 | |
[0m[0m[1m[32m Compiling[0m socket2 v0.5.3 | |
[0m[0m[1m[32m Compiling[0m urlencoding v2.1.2 | |
[0m[0m[1m[32m Compiling[0m static_assertions v1.1.0 | |
[0m[0m[1m[32m Compiling[0m xmlparser v0.13.5 | |
[0m[0m[1m[32m Compiling[0m overload v0.1.1 | |
[0m[0m[1m[32m Compiling[0m cast v0.3.0 | |
[0m[0m[1m[32m Compiling[0m same-file v1.0.4 | |
[0m[0m[1m[32m Compiling[0m walkdir v2.3.2 | |
[0m[0m[1m[32m Compiling[0m criterion-plot v0.5.0 | |
[0m[0m[1m[32m Compiling[0m nu-ansi-term v0.46.0 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-xml v0.55.2 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-query v0.55.2 | |
[0m[0m[1m[32m Compiling[0m tokio-postgres v0.7.8 (https://github.com/MaterializeInc/rust-postgres#7bdd17b5) | |
[0m[0m[1m[32m Compiling[0m clap v3.2.24 | |
[0m[0m[1m[32m Compiling[0m headers v0.3.8 | |
[0m[0m[1m[32m Compiling[0m aws-sig-auth v0.55.1 | |
[0m[0m[1m[32m Compiling[0m ciborium v0.2.0 | |
[0m[0m[1m[32m Compiling[0m plotters v0.3.1 | |
[0m[0m[1m[32m Compiling[0m aws-http v0.55.1 | |
[0m[0m[1m[32m Compiling[0m aws-endpoint v0.55.1 | |
[0m[0m[1m[32m Compiling[0m num_enum v0.5.7 | |
[0m[0m[1m[32m Compiling[0m matchers v0.1.0 | |
[0m[0m[1m[32m Compiling[0m aws-smithy-json v0.55.2 | |
[0m[0m[1m[32m Compiling[0m tinytemplate v1.1.0 | |
[0m[0m[1m[32m Compiling[0m tracing-serde v0.1.3 | |
[0m[0m[1m[32m Compiling[0m serde_path_to_error v0.1.8 | |
[0m[0m[1m[32m Compiling[0m tracing-log v0.1.3 | |
[0m[0m[1m[32m Compiling[0m sharded-slab v0.1.4 | |
[0m[0m[1m[32m Compiling[0m thread_local v1.1.4 | |
[0m[0m[1m[32m Compiling[0m ipnet v2.5.0 | |
[0m[0m[1m[32m Compiling[0m anes v0.1.6 | |
[0m[0m[1m[32m Compiling[0m sync_wrapper v0.1.1 | |
[0m[0m[1m[32m Compiling[0m matchit v0.7.0 | |
[0m[0m[1m[32m Compiling[0m spin v0.5.2 | |
[0m[0m[1m[32m Compiling[0m unicode-segmentation v1.10.1 | |
[0m[0m[1m[32m Compiling[0m untrusted v0.7.1 | |
[0m[0m[1m[32m Compiling[0m oorandom v11.1.0 | |
[0m[0m[1m[32m Compiling[0m reqwest v0.11.13 | |
[0m[0m[1m[32m Compiling[0m criterion v0.4.0 | |
[0m[0m[1m[32m Compiling[0m tracing-subscriber v0.3.16 | |
[0m[0m[1m[32m Compiling[0m similar v2.2.1 | |
[0m[0m[1m[32m Compiling[0m aws-sdk-sts v0.26.0 | |
[0m[0m[1m[32m Compiling[0m postgres v0.19.5 (https://github.com/MaterializeInc/rust-postgres#7bdd17b5) | |
[0m[0m[1m[32m Compiling[0m kube-core v0.85.0 (https://github.com/MaterializeInc/kube-rs.git?rev=838a7981483005e1af7c1338c48a4d0540a33ce4#838a7981) | |
[0m[0m[1m[32m Compiling[0m kube-client v0.85.0 (https://github.com/MaterializeInc/kube-rs.git?rev=838a7981483005e1af7c1338c48a4d0540a33ce4#838a7981) | |
[0m[0m[1m[32m Compiling[0m nix v0.26.1 | |
[0m[0m[1m[32m Compiling[0m globset v0.4.9 | |
[0m[0m[1m[32m Compiling[0m console v0.15.5 | |
[0m[0m[1m[32m Compiling[0m prost-reflect v0.11.4 | |
[0m[0m[1m[32m Compiling[0m lru v0.11.0 | |
[0m[0m[1m[32m Compiling[0m autotools v0.2.5 | |
[0m[0m[1m[32m Compiling[0m kube-runtime v0.85.0 | |
[0m[0m[1m[32m Compiling[0m protobuf-src v1.1.0+21.5 | |
[0m[0m[1m[32m Compiling[0m kube v0.85.0 | |
[0m[0m[1m[32m Compiling[0m prettyplease v0.1.25 | |
[0m[0m[1m[32m Compiling[0m fixedbitset v0.4.1 | |
[0m[0m[1m[32m Compiling[0m which v4.2.2 | |
[0m[0m[1m[32m Compiling[0m petgraph v0.6.0 | |
[0m[0m[1m[32m Compiling[0m multimap v0.8.3 | |
[0m[0m[1m[32m Compiling[0m prost-build v0.11.9 | |
[0m[0m[1m[32m Compiling[0m paste v1.0.11 | |
[0m[0m[1m[32m Compiling[0m debugid v0.8.0 | |
[0m[0m[1m[32m Compiling[0m sentry-types v0.29.1 | |
[0m[0m[1m[32m Compiling[0m sentry-core v0.29.1 | |
[0m[1m[38;5;9merror[0m[0m[1m: linking with `clang` failed: exit status: 1[0m | |
[0m [0m[0m[1m[38;5;12m|[0m | |
[0m [0m[0m[1m[38;5;12m= [0m[0m[1mnote[0m[0m: LC_ALL="C" PATH="/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/bin:/nix/store/hmcqm87saxlcjzm3r636i9s8d7fxyn1y-cargo-1.71.1/bin:/nix/store/531fip043hgmi8dmr1r75h6mgjml69x8-cargo-auditable-0.6.1/bin:/nix/store/9b0p10ymqqsym71f7xq4cx3fh59jvb7w-cmake-3.26.4/bin:/nix/store/pc9klb0nmw954sxlqq835k2y4rsjk9i4-ps-adv_cmds-119/bin:/nix/store/m821fxa1c3yhjqhvvw4j7hnfzbqhg6ya-perl-5.38.0/bin:/nix/store/30dkgjwic2y26j17z8y9rd21nhpzx8sh-pkg-config-wrapper-0.29.2/bin:/nix/store/hrb2qka3ifk0fqw2580xbff465153d9p-bootstrap_cmds-121/bin:/nix/store/d6wmlcs9kv8gf752q3j3x0l3vipbj6mg-auditable-cargo-1.71.1/bin:/nix/store/hmcqm87saxlcjzm3r636i9s8d7fxyn1y-cargo-1.71.1/bin:/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/bin:/nix/store/21apr3mbmghnkd6zy2axxli2s36js3n8-clang-wrapper-11.1.0/bin:/nix/store/j979im1nim264y14d6k26dlbiwrnpijs-clang-11.1.0/bin:/nix/store/jfkxszd5mclhbqygx9lm1jy5gq2a5rw6-coreutils-9.3/bin:/nix/store/f0is0g9aafkjd7vyhzia7axcp45rcv9g-cctools-binutils-darwin-wrapper-11.1.0-973.0.1/bin:/nix/store/wnj5203979qy5i69zr9jznc6mncybpap-cctools-binutils-darwin-11.1.0-973.0.1/bin:/nix/store/jfkxszd5mclhbqygx9lm1jy5gq2a5rw6-coreutils-9.3/bin:/nix/store/hkjwkyvspdyz5v6bbdmzpgkqy38sk3id-findutils-4.9.0/bin:/nix/store/fac5y9gsaij3vsywyix99ni2bidbdvbl-diffutils-3.10/bin:/nix/store/0915q6jj8wdym586zjfijhrw3aqflibf-gnused-4.9/bin:/nix/store/qpk9fb3wn6qkvjpnznjkcx0hb7lpm41w-gnugrep-3.11/bin:/nix/store/m223lvwiz7v47djkm861524r350lwj71-gawk-5.2.2/bin:/nix/store/6baws0dbshlirv7dqqkmcrc7jpnxqri6-gnutar-1.35/bin:/nix/store/cwgy31xxhnxgf4hjahas02xa1bn1ji36-gzip-1.12/bin:/nix/store/hlmv5j1kwx737d6p4c8pblqbfr6f5yck-bzip2-1.0.8-bin/bin:/nix/store/ac9577gx85az323gjws1n52ar7w4b3x1-gnumake-4.4.1/bin:/nix/store/vvga016yc68k1y6n08qym93l5zna305q-bash-5.2-p15/bin:/nix/store/mmnkwyfc8rhddv6pqvmcmm2yxg54pq2p-patch-2.7.6/bin:/nix/store/skfb9v88g69mad3x5jvsj4vlrjv7i3g7-xz-5.4.3-bin/bin:/nix/store/s3x10q1z697dvpcd2l2cw9a21j71xaa2-file-5.44/bin" VSLANG="1033" ZERO_AR_DATE="1" "clang" "-Wl,-exported_symbols_list,/private/tmp/nix-build-materialize-0.65.1.drv-2/rustccvajiR/list" "-arch" "x86_64" "-m64" "/private/tmp/nix-build-materialize-0.65.1.drv-2/rustccvajiR/symbols.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.0.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.1.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.10.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.11.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.12.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.13.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.14.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.15.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.2.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.3.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.4.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.5.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.6.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.7.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.8.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.jsonpath_lib.6cd39ee96fbe9c3c-cgu.9.rcgu.o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/jsonpath_lib-8fd5e92d3a33b48f.1yb1ke397efjcoaf.rcgu.o" "-L" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps" "-L" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/release/deps" "-L" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libserde_json-0be85e546bbd6945.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libryu-8ddb50f373250ca6.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libitoa-b25e9e684159bad8.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libindexmap-d0851ea3ebface99.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libequivalent-c7ae25d105fef782.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libhashbrown-7ff8f664e81a4079.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libahash-c6fe3c5c61834d87.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libgetrandom-f7b21d1ed81e8b98.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/liblibc-849a7ce0e97c1950.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libonce_cell-9c6cf0dd059990d1.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/liballocator_api2-a0848f984f995782.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libserde-082c68bf8ab64bf8.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/liblog-3e09a901e0a8f412.rlib" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libcfg_if-36c929a87dc2cda8.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libstd-f27a182a2b925a38.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libpanic_unwind-6f5e6cca0625ea5c.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libobject-2c20652a08cb830f.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libmemchr-a6495d46c14c8f62.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libaddr2line-1692c1080c898b13.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libgimli-7c83fd92591c7360.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/librustc_demangle-4a88ffb19fc48e97.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libstd_detect-522f2a5a03fe369e.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libhashbrown-21a3247f6d546822.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_alloc-11a89b807511a6fd.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libminiz_oxide-f34b6f7df82c69ed.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libadler-bf8aa187bf37a21c.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libunwind-e96e48efd617e950.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libcfg_if-3ddbfe79387f2db0.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/liblibc-9b061cc4588dd59d.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/liballoc-58bb884f889e4d03.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_core-69a8d0d2fdd1ed85.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libcore-35944fe15ab21fee.rlib" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib/libcompiler_builtins-6dd91f64642791a1.rlib" "-liconv" "-lSystem" "-lc" "-lm" "-L" "/nix/store/hpjqhn4jv85b1rx20fj5i1c5d9aw5pip-rustc-1.71.1/lib/rustlib/x86_64-apple-darwin/lib" "-o" "/private/tmp/nix-build-materialize-0.65.1.drv-2/source/target/x86_64-apple-darwin/release/deps/libjsonpath_lib-8fd5e92d3a33b48f.dylib" "-Wl,-dead_strip" "-dynamiclib" "-Wl,-dylib" "-nodefaultlibs" "--ld-path=/nix/store/cg869jlpzrh5xgc0hcll7risc5gsk611-mold-2.1.0/bin/mold"[0m | |
[0m [0m[0m[1m[38;5;12m= [0m[0m[1mnote[0m[0m: clang-11: error: unsupported option '--ld-path=/nix/store/cg869jlpzrh5xgc0hcll7risc5gsk611-mold-2.1.0/bin/mold'[0m | |
[0m [0m | |
[0m[0m[1m[31merror[0m[1m:[0m could not compile `jsonpath_lib` (lib) due to previous error | |
[0m[0m[1m[33mwarning[0m[1m:[0m build failed, waiting for other jobs to finish... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment