advent of code 2023 edition
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
40 KiB

{"message":"unused import: `ndarray_linalg::Solve`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":52,"byte_end":73,"line_start":3,"line_end":3,"column_start":5,"column_end":26,"is_primary":true,"text":[{"text":"use ndarray_linalg::Solve;","highlight_start":5,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":48,"byte_end":74,"line_start":3,"line_end":3,"column_start":1,"column_end":27,"is_primary":true,"text":[{"text":"use ndarray_linalg::Solve;","highlight_start":1,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `ndarray_linalg::Solve`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:3:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse ndarray_linalg::Solve;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
{"message":"unused import: `ndarray_linalg`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":29,"byte_end":43,"line_start":2,"line_end":2,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":"use ndarray_linalg::*;","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `ndarray_linalg`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:2:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse ndarray_linalg::*;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"}
{"message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":2399,"byte_end":2404,"line_start":79,"line_end":79,"column_start":9,"column_end":14,"is_primary":true,"text":[{"text":" let mut a: Array2<f64> = array![","highlight_start":9,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":2399,"byte_end":2403,"line_start":79,"line_end":79,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut a: Array2<f64> = array![","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:79:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m79\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut a: Array2<f64> = array![\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"}
{"message":"struct `Point` is never constructed","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":251,"byte_end":256,"line_start":13,"line_end":13,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"struct Point { x: f64, y: f64, z: f64 }","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: struct `Point` is never constructed\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:13:8\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m13\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mstruct Point { x: f64, y: f64, z: f64 }\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(dead_code)]` on by default\u001b[0m\n\n"}
{"message":"function `row_zx` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4476,"byte_end":4482,"line_start":149,"line_end":149,"column_start":4,"column_end":10,"is_primary":true,"text":[{"text":"fn row_zx(p1: &Part, p2: &Part) -> [i64;6] {","highlight_start":4,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `row_zx` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:149:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m149\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn row_zx(p1: &Part, p2: &Part) -> [i64;6] {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^\u001b[0m\n\n"}
{"message":"function `b_zx` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":4896,"byte_end":4900,"line_start":166,"line_end":166,"column_start":4,"column_end":8,"is_primary":true,"text":[{"text":"fn b_zx(p1: &Part, p2: &Part) -> i64 {","highlight_start":4,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: function `b_zx` is never used\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/main.rs:166:4\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m166\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mfn b_zx(p1: &Part, p2: &Part) -> i64 {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\n\n"}
{"message":"linking with `cc` failed: exit status: 1","code":null,"level":"error","spans":[],"children":[{"message":"env -u IPHONEOS_DEPLOYMENT_TARGET -u TVOS_DEPLOYMENT_TARGET LC_ALL=\"C\" PATH=\"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/bin:/Users/shoofle/.asdf/shims:/usr/local/opt/asdf/libexec/bin:/usr/local/bin:/usr/local/sbin:/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:/Users/shoofle/.cargo/bin\" VSLANG=\"1033\" ZERO_AR_DATE=\"1\" \"cc\" \"-arch\" \"x86_64\" \"-m64\" \"/var/folders/30/nhcxskyn4csg0_80f4mrx7tm0000gn/T/rustcufBr8j/symbols.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.15mu1ltf469s4y4t.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.18np7ingiw5wbehb.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1a1a0wg945qxw78h.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1abljjg54a8nipa4.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1aivzb9i55iy2z2y.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1aubmen8u7e4iz2l.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1f4q8hs8dhtg7bd7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1h4lzfxewsj24knl.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1hibw16c10bff4od.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1iclvk41w65vykic.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1mlsxdrs83ode884.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1n6lmho8ux1z9xms.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1onejwixs993iotk.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1oqopgoebrznam7s.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1quawwl22kvbv6g9.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1rhtgbgkvllh7o8p.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1wo9rafyqc1mqtcm.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1x0r1pb0j7vfxr00.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.200k7z1arm4jj9it.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.23hr8b97fcys78af.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.262lhfayqpn0eojk.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.27yvl9kf70wfjgov.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.28i9x9gzj2u8a8sz.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.29wl9k7gx43nzacc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2am7f427i9uaho06.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2ebbblxumeviappl.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2fi0skub5gwvw37k.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2fpyhwvbzy5eb9c7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2nd1ofdlj2uxxsqy.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2o14ebymra1zwq38.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2os011ehz993agen.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2qc49m8a9zmjipx3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2u4gfud20qrtya8p.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.33zcdhuuh09ol7gh.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.341716o6mpbg1cmy.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.346d2x881slh6snb.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.35smsolgh4t7ewa1.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3a8741gbv4ufldhf.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3d1icb3goc142t3d.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3dwx33zo4zq4z1yy.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3gxpdotorxiperhp.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3ih8wqbkj0f25wwn.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3ki2vxaxjwmuued1.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3mght8o5zk5oaiio.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3mvbyrxj3pllscbc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3o5rsss7mbwe1zgp.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3pta9r08mjdyjtz3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3wuvx82j8nv1bkjg.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3x6toid05wg59817.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3xwsczwy7xms8ib7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.40t57hx3w47czi0z.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.41yv62d6dgn3vw0k.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.42377y8y83fhj8wo.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.432of8utz28g3xt8.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.43k4n7ct84f8rq2f.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.45e18i4rziavl7af.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.49nwtv94vt5kz71r.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4di8wnqqgzlpznz3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4e5ijzwqhsicx3gn.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4g2limocdnge3kmf.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4gb1lebzwez03c0k.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4j5t9wgtsyjzykdc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4q7o3ijq3uv9tpf7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4qskc2og2dfet0zz.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4r9oizjcwhe6bnyo.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4wgxbq75b2efo0wq.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4xbra6xz6c0dhhy9.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.50e6dflecbdgy0th.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5776xwtn367sclgs.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5cnby1efjxnjcvw3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5d0jq4w1hm1t3vgc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5dwxzmpmzrpeqnk.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5ge2vfjqt8fmu4k7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.61my1x3wy5y6j1e.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.9bar7vgfb34b363.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.eanuvwe0of4g38x.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.g297vw6q6ytfdpm.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.htcg59r7rsszcjo.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.ih6p4yb9iv1n987.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.lhkd4vq51is59g7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.ndpfc5w6lnpu4t8.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.q66m0piebddauek.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.tardu8ba3t10740.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.vzzq2i9btkwn5zt.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.yvkhrp5vmqpymct.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.z05eibjj61beglq.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3l22k3503bbfdvov.rcgu.o\" \"-L\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps\" \"-L\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libndarray_linalg-226d361a8a4fe13a.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/liblax-992b0363394ebb07.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/liblapack_sys-df7cf14a56bc4d6b.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libthiserror-ee3420c32f584d78.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libcauchy-e68f816a9190b541.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libndarray-db399253bcbfb1e2.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libmatrixmultiply-d4a289770adad6fb.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libapprox-cfaf40f70b16ad63.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libnum_complex-fa1c8abc99e86419.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libserde-3bb871b114a73e11.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librand-a442d3a7c6944ed9.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librand_chacha-b03e8cf5ab7142a3.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libppv_lite86-e8c0130be31f583b.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librand_core-9f26556cbf26c840.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libgetrandom-846ea89fc8404049.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libcfg_if-69b9e8e59d0010b0.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libnum_integer-7eb02b5318107f75.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libnum_traits-1aee3141ce653153.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librawpointer-1a4f0b92f14ce415.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libcblas_sys-9ebb5195a98ac3f3.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/liblibc-c0badfbf80c8e1bf.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libstd-d97b4f57756f6955.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libpanic_unwind-a31e9ef067b0fc11.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libobject-4f37846dfbe91375.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libmemchr-2b842487e2111908.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libaddr2line-0a7fcbc7e2bab4d8.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libgimli-0a37f138c51f8bf9.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_demangle-328da5b6d5983783.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libstd_detect-68838c3e4a1ef698.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libhashbrown-9d78c340f712c41b.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_alloc-a2c8ee850ccb6fa0.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libminiz_oxide-ff3fd3d009172e12.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libadler-c6fb2125cb7316b8.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libunwind-6f9251371037363f.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcfg_if-188cc5f092098a2c.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/liblibc-5abdf3874721dbb7.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/liballoc-f1aeea8af8fb5f9c.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_core-68a31292900d3344.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcore-e3b4538d1d6fcb69.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcompiler_builtins-ff6f68c92d39450d.rlib\" \"-liconv\" \"-lSystem\" \"-lc\" \"-lm\" \"-L\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib\" \"-o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d\" \"-Wl,-dead_strip\" \"-nodefaultlibs\"","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"ld: Undefined symbols:\n _dgetrf_, referenced from:\n _$LT$f64$u20$as$u20$lax..solve..LuImpl$GT$::lu::hc74b5c5282eeb147 in liblax-992b0363394ebb07.rlib[7](lax-992b0363394ebb07.lax.7ec83524d516ffa4-cgu.04.rcgu.o)\n _dgetrs_, referenced from:\n _$LT$f64$u20$as$u20$lax..solve..SolveImpl$GT$::solve::h502ea5c58b524320 in liblax-992b0363394ebb07.rlib[7](lax-992b0363394ebb07.lax.7ec83524d516ffa4-cgu.04.rcgu.o)\nclang: error: linker command failed with exit code 1 (use -v to see invocation)\n","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: linking with `cc` failed: exit status: 1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: env -u IPHONEOS_DEPLOYMENT_TARGET -u TVOS_DEPLOYMENT_TARGET LC_ALL=\"C\" PATH=\"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/bin:/Users/shoofle/.asdf/shims:/usr/local/opt/asdf/libexec/bin:/usr/local/bin:/usr/local/sbin:/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:/Users/shoofle/.cargo/bin\" VSLANG=\"1033\" ZERO_AR_DATE=\"1\" \"cc\" \"-arch\" \"x86_64\" \"-m64\" \"/var/folders/30/nhcxskyn4csg0_80f4mrx7tm0000gn/T/rustcufBr8j/symbols.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.15mu1ltf469s4y4t.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.18np7ingiw5wbehb.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1a1a0wg945qxw78h.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1abljjg54a8nipa4.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1aivzb9i55iy2z2y.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1aubmen8u7e4iz2l.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1f4q8hs8dhtg7bd7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1h4lzfxewsj24knl.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1hibw16c10bff4od.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1iclvk41w65vykic.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1mlsxdrs83ode884.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1n6lmho8ux1z9xms.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1onejwixs993iotk.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1oqopgoebrznam7s.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1quawwl22kvbv6g9.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1rhtgbgkvllh7o8p.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1wo9rafyqc1mqtcm.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.1x0r1pb0j7vfxr00.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.200k7z1arm4jj9it.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.23hr8b97fcys78af.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.262lhfayqpn0eojk.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.27yvl9kf70wfjgov.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.28i9x9gzj2u8a8sz.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.29wl9k7gx43nzacc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2am7f427i9uaho06.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2ebbblxumeviappl.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2fi0skub5gwvw37k.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2fpyhwvbzy5eb9c7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2nd1ofdlj2uxxsqy.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2o14ebymra1zwq38.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2os011ehz993agen.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2qc49m8a9zmjipx3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.2u4gfud20qrtya8p.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.33zcdhuuh09ol7gh.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.341716o6mpbg1cmy.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.346d2x881slh6snb.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.35smsolgh4t7ewa1.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3a8741gbv4ufldhf.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3d1icb3goc142t3d.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3dwx33zo4zq4z1yy.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3gxpdotorxiperhp.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3ih8wqbkj0f25wwn.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3ki2vxaxjwmuued1.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3mght8o5zk5oaiio.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3mvbyrxj3pllscbc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3o5rsss7mbwe1zgp.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3pta9r08mjdyjtz3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3wuvx82j8nv1bkjg.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3x6toid05wg59817.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3xwsczwy7xms8ib7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.40t57hx3w47czi0z.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.41yv62d6dgn3vw0k.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.42377y8y83fhj8wo.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.432of8utz28g3xt8.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.43k4n7ct84f8rq2f.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.45e18i4rziavl7af.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.49nwtv94vt5kz71r.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4di8wnqqgzlpznz3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4e5ijzwqhsicx3gn.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4g2limocdnge3kmf.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4gb1lebzwez03c0k.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4j5t9wgtsyjzykdc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4q7o3ijq3uv9tpf7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4qskc2og2dfet0zz.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4r9oizjcwhe6bnyo.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4wgxbq75b2efo0wq.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.4xbra6xz6c0dhhy9.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.50e6dflecbdgy0th.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5776xwtn367sclgs.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5cnby1efjxnjcvw3.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5d0jq4w1hm1t3vgc.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5dwxzmpmzrpeqnk.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.5ge2vfjqt8fmu4k7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.61my1x3wy5y6j1e.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.9bar7vgfb34b363.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.eanuvwe0of4g38x.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.g297vw6q6ytfdpm.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.htcg59r7rsszcjo.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.ih6p4yb9iv1n987.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.lhkd4vq51is59g7.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.ndpfc5w6lnpu4t8.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.q66m0piebddauek.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.tardu8ba3t10740.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.vzzq2i9btkwn5zt.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.yvkhrp5vmqpymct.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.z05eibjj61beglq.rcgu.o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d.3l22k3503bbfdvov.rcgu.o\" \"-L\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps\" \"-L\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libndarray_linalg-226d361a8a4fe13a.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/liblax-992b0363394ebb07.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/liblapack_sys-df7cf14a56bc4d6b.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libthiserror-ee3420c32f584d78.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libcauchy-e68f816a9190b541.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libndarray-db399253bcbfb1e2.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libmatrixmultiply-d4a289770adad6fb.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libapprox-cfaf40f70b16ad63.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libnum_complex-fa1c8abc99e86419.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libserde-3bb871b114a73e11.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librand-a442d3a7c6944ed9.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librand_chacha-b03e8cf5ab7142a3.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libppv_lite86-e8c0130be31f583b.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librand_core-9f26556cbf26c840.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libgetrandom-846ea89fc8404049.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libcfg_if-69b9e8e59d0010b0.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libnum_integer-7eb02b5318107f75.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libnum_traits-1aee3141ce653153.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/librawpointer-1a4f0b92f14ce415.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/libcblas_sys-9ebb5195a98ac3f3.rlib\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/liblibc-c0badfbf80c8e1bf.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libstd-d97b4f57756f6955.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libpanic_unwind-a31e9ef067b0fc11.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libobject-4f37846dfbe91375.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libmemchr-2b842487e2111908.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libaddr2line-0a7fcbc7e2bab4d8.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libgimli-0a37f138c51f8bf9.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_demangle-328da5b6d5983783.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libstd_detect-68838c3e4a1ef698.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libhashbrown-9d78c340f712c41b.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_alloc-a2c8ee850ccb6fa0.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libminiz_oxide-ff3fd3d009172e12.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libadler-c6fb2125cb7316b8.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libunwind-6f9251371037363f.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcfg_if-188cc5f092098a2c.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/liblibc-5abdf3874721dbb7.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/liballoc-f1aeea8af8fb5f9c.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_core-68a31292900d3344.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcore-e3b4538d1d6fcb69.rlib\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcompiler_builtins-ff6f68c92d39450d.rlib\" \"-liconv\" \"-lSystem\" \"-lc\" \"-lm\" \"-L\" \"/Users/shoofle/.rustup/toolchains/stable-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib\" \"-o\" \"/Users/shoofle/Projects/aoc_2023/day24/target/debug/deps/day24-2c41ce2d3092f33d\" \"-Wl,-dead_strip\" \"-nodefaultlibs\"\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: ld: Undefined symbols:\u001b[0m\n\u001b[0m _dgetrf_, referenced from:\u001b[0m\n\u001b[0m _$LT$f64$u20$as$u20$lax..solve..LuImpl$GT$::lu::hc74b5c5282eeb147 in liblax-992b0363394ebb07.rlib[7](lax-992b0363394ebb07.lax.7ec83524d516ffa4-cgu.04.rcgu.o)\u001b[0m\n\u001b[0m _dgetrs_, referenced from:\u001b[0m\n\u001b[0m _$LT$f64$u20$as$u20$lax..solve..SolveImpl$GT$::solve::h502ea5c58b524320 in liblax-992b0363394ebb07.rlib[7](lax-992b0363394ebb07.lax.7ec83524d516ffa4-cgu.04.rcgu.o)\u001b[0m\n\u001b[0m clang: error: linker command failed with exit code 1 (use -v to see invocation)\u001b[0m\n\u001b[0m \u001b[0m\n\n"}
{"message":"aborting due to previous error; 6 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error; 6 warnings emitted\u001b[0m\n\n"}