Replies: 1 comment
-
|
I had to run I have Which led me to trying that "bz2" seems to be correct, but yet things build correctly with "bzip2" when you run zig build, but when you use the Seems to be related to It works with |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I tried building ghostty v1.0.0 on Ubuntu 24.04 and zig could not find the bzip2 library unless I made the following changed this line: https://github.com/ghostty-org/ghostty/blob/v1.0.0/build.zig#L1067
change from
step.linkSystemLibrary2("bzip2", dynamic_link_opts);change to
step.linkSystemLibrary2("bz2", dynamic_link_opts);Is this a known issue? Reporting here just in case someone else runs into this problem.
Beta Was this translation helpful? Give feedback.
All reactions