Ld: framework 'CoreText' not found

If encountered this error on macOS now multiple times but haven't found any solution. Every time an apple framework is used by a crate my project depends on the linker is not able to find it.

I'm running on a M1 MacBook Pro - XCode as well as command line tools are installed.

This time I would have liked to use plotters but was unable to do so.
Has anybody encountered this error before and was able to solve it? I really would appreciate your help!

Cargo.toml

[package]
name = "gp"
version = "0.1.0"
edition = "2021"

[dependencies]
plotters = "0.3.6"

src/main.rs: Example code from the plotters readme.md

use plotters::prelude::*;
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let root = BitMapBackend::new("plotters-doc-data/0.png", (640, 480)).into_drawing_area();
    root.fill(&WHITE)?;
    let mut chart = ChartBuilder::on(&root)
        .caption("y=x^2", ("sans-serif", 50).into_font())
        .margin(5)
        .x_label_area_size(30)
        .y_label_area_size(30)
        .build_cartesian_2d(-1f32..1f32, -0.1f32..1f32)?;

    chart.configure_mesh().draw()?;

    chart
        .draw_series(LineSeries::new(
            (-50..=50).map(|x| x as f32 / 50.0).map(|x| (x, x * x)),
            &RED,
        ))?
        .label("y = x^2")
        .legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &RED));

    chart
        .configure_series_labels()
        .background_style(&WHITE.mix(0.8))
        .border_style(&BLACK)
        .draw()?;

    root.present()?;

    Ok(())
}

cargo run

  Compiling gp v0.1.0 (/Users/leon/dev/ba/gp)
error: linking with `cc` failed: exit status: 1
  |
  = note: env -u IPHONEOS_DEPLOYMENT_TARGET -u TVOS_DEPLOYMENT_TARGET -u XROS_DEPLOYMENT_TARGET LC_ALL="C" PATH="/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/bin:/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/bin:/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/bin:/Users/leon/.cabal/bin:/Users/leon/.local/share/nvm/v20.16.0/bin:/System/Library/Frameworks:/opt/homebrew/sbin:/Users/leon/.pyenv/bin:/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks:/opt/homebrew/opt/icu4c/sbin:/opt/homebrew/opt/icu4c/bin:/opt/homebrew/opt/openjdk/bin:/Users/leon/Library/Python/3.9/bin:/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib:/Library/Developer/CommandLineTools/usr/bin:/Users/leon/fvm/default/bin:/Users/leon/.cargo/bin:/opt/homebrew/bin:/Users/leon/.rye/shims:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Library/TeX/texbin:/Users/leon/.cabal/bin:/opt/homebrew/opt/sdkman-cli/libexec/candidates/java/current/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/leon/.ghcup/bin:/Users/leon/.ghcup/bin" VSLANG="1033" ZERO_AR_DATE="1" "cc" "-arch" "arm64" "/var/folders/lb/kvk_1rb974976l2h38r2h5gh0000gn/T/rustcDDXAmV/symbols.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.02pl8xs13jw3mgbcvah78ytur.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.05hm21cppxzp0qizsduwdaz1x.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.0fk80vrwmyj5lbgud4hoc98sm.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.0l67n3odma69omwrywxij1pgt.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.0plo9bdhe89jwu4p44yutii79.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.0pnraao7tsbyg6oehnud1zyp4.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.10ce5cixtt52k0edrt8gjxd5d.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.11ubvtq7vajdsmtaerlbjghzk.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.1hejq7al6d3o1x4kjiq2bclq0.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.1ikiqwvrjgxwic2occ4lfz93h.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.1kqlc2ctokicgtple4e8f4per.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.1lulkueim5huizz6wsavffdgq.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.1mahxdtrncok6qwb3hmrkedz5.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.220ek2n1ni8nh4njbk95vo5qc.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.23z6bkutgqnz3t4z6pims559q.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.2in5c6isp262nib9pttwfweww.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.2ox5fzn079m93475fupkpic20.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.2wi9g0m70js7mvtz0pei95quo.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.33uwtlmurlitoqtcoadqzwe8o.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.36iwemr0ur1otzi8xiovcf0rv.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3ejr9ff1279i9v4gnt4xp4q1j.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3mu9vpkgcrcf2rj59fogmr6q1.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3qzlqeqmgkujmcer3574k54wj.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3tiqk2gztg25cd2kwb7dm9z4a.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3tjv2914b96sgv12a7gg3az9r.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3wtvpdjtygshgadtqq08akr7i.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3y5704mtbnqka49df0sgfbokb.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.3z50x5sduiz5jnnhbovhu0mjo.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.42fpqooncrhvm94us4wntvqx1.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.42t426d1npuckwq9lrgtwd8as.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.49klu8df6mubmf00atp2rlbsi.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.4af39h0h18grsx4l5usnqf54t.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.4p1qqxtyhhotj6bueb87kce76.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.4zn7pzvsgrl5ktvp3whpyklvv.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.55eo8x9e7odu03aknl2xcvmi1.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.56ctxvkq66qccnvvaaksb3d6b.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.5gwr55c67mjaw7acp0xt8hmr1.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.5jhed3s9wqxp998e3dvxgofps.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.5od6jm1thynac6d0kldi5nk00.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.5u0a11eat3e3jlykcej32ltr3.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.65e7q1h0eh0r1vf82c4ryzupy.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.694i3j742y8ic1dkx8gknw8jn.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.6me6bsqawc4181i3jkykcj6n9.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.6ol18zs41fn0c1pafbd596ltw.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.798aci9t8m3yjcva0bf1w43r8.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.7hmubdgm5d3wtryufbzarylkq.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.7jgaw5lt18i5useel0eeydgd4.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.7zhekzgmn6nny288o6qijlzf4.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.813rxhts69l533wxjj2m07pi6.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.869yt8w7q447el0q3uqsxx9ke.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.8b25rd95ofa5g51wc1e0icyxn.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.8bcgksa6wi73n1ns1rhwhfm3q.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.8en3abfvq8aylyl9j993j4ena.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.8iicnzpoxvseepqzqyymccxgg.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.8qaf9e5qz6jcalfzd3y8e2mgf.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.8w28y20hybybkjygc1vxl7a2b.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.91xwyi1rw3tguu1f1yrlw3gew.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.965egf1i0a73ix8i768dfiz21.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.991u9am6jj8c2voszqlicnar8.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.99dvzl4tpslvauvul1ou644ut.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9cdcahan6nkxwiey7jzovd898.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9ckiv13dld5wijrm0pzdsbph5.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9f6m2thtl9cu76h317ujhlc0s.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9rctl9ip0r383fus52mry4h6l.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9sdo6240g1nkiarppgvdi5axc.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9t5v0y1hrz3yypd6p7k7p6uz3.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9uq25hv7piqqe35qbkutqyq66.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.9w9kn7r2maug5zasin5nwax33.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.a7i76icz485jyw9v2v9dme89f.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.ab9gkjla9c6ztuq3ikrp62bmf.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.acuvjnngisnvi1u2bwkqa4lbv.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.ad0wmn4jo9n8keyl2b5hmqkbx.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.adbivhi6iehbxaxf3osdk25tn.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.ae89bs8caw9m9ehiaw1j87rbk.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.aegz11yvir9mw24rtdb4smpe9.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.ailv7b1dwkiog6y6mctmtrmuw.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.ajp2xeoi43tgyndmgaedril1a.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.akx7qeg4y6a158z5l24q63y45.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.aneynf3922jtnnaecdlmir42k.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.as4fwp5vfo1k9o8d53sbvlty3.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.avu6xqc4l4jeshpneo2nf9yny.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.aw0li23309fgyauf0rzv5hdzi.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.b2krr8tw4tnd2zq0aa3g32qn8.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.b9r2zbzex33zj81dal7yzk5u9.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bg2pz7xmy58gwfk9i8mh91qk1.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bhutsqbotrj8m8gvqqwkiqkjz.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bmnz8t4q65hih9lh0bu8n9kci.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.boz615mp3r7kv90qyfwdqgqk9.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bpywqqvcxf3o2dmszbdnrz7rk.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bq4y8znop5dtqqppkou539g2q.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bri0u2ijt5u1qhb4gl41dx7zc.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.bw3j311lmk8ll5z06e4bxvtou.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.c6ebpsf0f9cuh8pxnwyu3hzod.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.c8um9kycrr20lc66zwqgtwvmk.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.c9meszhf0svis0ie41tlk498x.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.ca32z1gl291fmdbww64sgfxi5.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.cb3mq9mq47qgiv38itiyxbsg5.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.cgzvze1t809g8ivmz4u259ni2.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.cheh1h2sywp9abp48nxze3fru.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.cl66zzsrcybwufdl47h0bwidk.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.covzx4xmjsci3tfozd1qvvpch.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.cqjm5hadpnha247puku6e0uj9.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.cr354mn6d8u4y1pwt0c0c2tj2.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.d5yfdgibdj6xz0duhvssogb07.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.dga76xz7ca3ved72p67lm3awf.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.dlvwzl3g9jygvwxp28tn7y63y.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.dntwsfxb1t37mdzizkcnybgc6.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.doxb5420c7myurbtosdro5llr.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.dpik28e5s6oayussboz20biry.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.dqehrkfa5gqrfgtgd3enp9n21.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.du1wsqr4n3ilv2l9qwsjpgzu0.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.e1bvq7i8nbc8tjj7kpsf5pmia.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.e6hhwl8nnh9gyuch7xwoa2tqg.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.efvajiyc7fxugaw5xfsoza9gl.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.enaqqjr5k8tkokb3es532d3q7.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.f14dfnh4rgb57mra6czdlxc22.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.f1s5kanla7tqpiujyzxjuqv2i.rcgu.o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49.0hgcz7oru5pi4ffww4xeze5d7.rcgu.o" "-L" "/Users/leon/dev/ba/gp/target/debug/deps" "-L" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib" "/Users/leon/dev/ba/gp/target/debug/deps/libplotters-bdec0be182fe2e87.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libplotters_svg-c222bec04c7ced45.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libttf_parser-58d0c3a499d6df15.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libfont_kit-452978d4d2bf3996.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libfloat_ord-d7410306b006eeed.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libdirs_next-e2dd1bc6cd9ac078.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libdirs_sys_next-1d94fab180c7dcd1.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libwalkdir-085bc6a9a85902b9.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libsame_file-cf0625247444fb43.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcore_text-78a0012140de97a8.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcore_graphics-4d46acd4788b151a.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcore_graphics_types-8d0a8105665b6174.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libforeign_types-97aa8fe27b056999.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libforeign_types_shared-03ac740d59b9baf2.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcore_foundation-6a1d119c7d492d61.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/liblibc-545da2b2314e47de.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/liblog-1c29e80a499abab7.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libpathfinder_geometry-1788be8ac51dc455.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libpathfinder_simd-3615b4f817186b4e.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libbitflags-18b73f52affa74a0.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/liblazy_static-a4e0d6d3c85ac08e.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libplotters_bitmap-a50d4cb09ddc9aef.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libgif-e84346d8f2390b0a.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libweezl-74e60a17e3ec834f.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libimage-fd9814fb5e96bdc0.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libbytemuck-448f6b2edf74ba85.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcolor_quant-4b0b1fd54822647b.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libpng-3fc33bd69dbd635a.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libflate2-5e3af1ee98bd06ce.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libminiz_oxide-977c5661b12b45ec.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libadler2-26dcf787a39dec76.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libfdeflate-365ce923156afa1c.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libsimd_adler32-fed46eceddc57cda.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcrc32fast-ae2e8f835aebb504.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcfg_if-708624bee5970fc4.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libbitflags-36d60268ceedfaf1.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libjpeg_decoder-a9b692a2997cab1a.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libbyteorder-f506f84707ac87c1.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libchrono-42a26da737833087.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libnum_traits-55a1d851ab0e37de.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libiana_time_zone-01812eb8e3231cdb.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libcore_foundation_sys-78af09bb8deef1b2.rlib" "/Users/leon/dev/ba/gp/target/debug/deps/libplotters_backend-5b18f3250aad0aba.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libstd-4660195e40d1caa2.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libpanic_unwind-db24976b4a143f5b.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libobject-753024f8b1329867.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libmemchr-926dfdc3a6c0e753.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libaddr2line-43d582d3cac33899.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libgimli-fc73a57ad7ed2a0b.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/librustc_demangle-c2ed8b7ec4bfeb34.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libstd_detect-60d7c0705d969f46.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libhashbrown-18d33498f2e954c4.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/librustc_std_workspace_alloc-b39c946b13bf038c.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libminiz_oxide-ac55c803a24c5c25.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libadler-ce7d16f103e5ca1c.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libunwind-59087b9a5642f6c7.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libcfg_if-4e2d55f7c361803f.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/liblibc-d5410186db5469b8.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/liballoc-49a09d1649b15de2.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/librustc_std_workspace_core-b5ebe01a91085ca1.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libcore-855de1c067a46793.rlib" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib/libcompiler_builtins-db7578c38859ed37.rlib" "-framework" "CoreText" "-framework" "CoreGraphics" "-framework" "CoreGraphics" "-liconv" "-framework" "CoreFoundation" "-lSystem" "-lc" "-lm" "-L" "/Users/leon/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/aarch64-apple-darwin/lib" "-o" "/Users/leon/dev/ba/gp/target/debug/deps/gp-8d00200489008e49" "-Wl,-dead_strip" "-nodefaultlibs"
  = note: ld: framework 'CoreText' not found
          clang: error: linker command failed with exit code 1 (use -v to see invocation)


error: could not compile `gp` (bin "gp") due to 1 previous error

I was able to fix this problem with the $SDKROOT env variable. I'm not sure how it happened to be deleted but you can easily set it to the right value with:

 export SDKROOT=$(xcrun --show-sdk-path)

or in fish

set -Ux SDKROOT (xcrun --show-sdk-path)

Just make sure beforehand that you already have the command line tools ($ xcode-select --install) and XCode (AppStore) installed on your system.

I hope this will save you the hours of investigating that I put into this issue :slight_smile:

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.