You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
╰─❯ brew upgrade
==> Upgrading 1 outdated package:
uptech/oss/git-ps-rs 6.3.1 -> 6.5.0
==> Fetching uptech/oss/git-ps-rs
==> Cloning https://github.com/uptech/git-ps-rs.git
Updating /home/kumoricon/.cache/Homebrew/git-ps-rs--git
==> Checking out tag 6.5.0
HEAD is now at 3e3a1e5 Bump version to v6.5.0
HEAD is now at 3e3a1e5 Bump version to v6.5.0
==> Upgrading uptech/oss/git-ps-rs
6.3.1 -> 6.5.0
==> cargo install
Last 15 lines from /home/coder/.cache/Homebrew/Logs/git-ps-rs/01.cargo:
$HOST = x86_64-unknown-linux-gnu
$TARGET = x86_64-unknown-linux-gnu
openssl-sys = 0.9.74
It looks like you're compiling on Linux and also targeting Linux. Currently this requires the `pkg-config` utility to find OpenSSL but unfortunately `pkg-config` could not be found. If you have OpenSSL installed you can likely fix this by installing `pkg-config`.', /home/coder/.cache/Homebrew/cargo_cache/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.74/build/find_normal.rs:191:5
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
warning: build failed, waiting for other jobs to finish...
error: failed to compile `gps v6.5.0 (/tmp/git-ps-rs-20230316-41823-5rb6wd)`, intermediate artifacts can be found at `/tmp/git-ps-rs-20230316-41823-5rb6wd/target`
If reporting this issue please do so at (not Homebrew/brew or Homebrew/homebrew-core):
https://github.com/uptech/homebrew-oss/issues
Brew list includes: openssl@3openssl@1.1pkg-config
I tried with the environment variable: RUST_BACKTRACE=1 and did not notice any different output.
The file throwing this error is from: /home/coder/.cache/Homebrew/cargo_cache/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.74/build/find_normal.rs
if host.contains("unknown-linux")
&& target.contains("unknown-linux-gnu")
&& Command::new("pkg-config").output().is_err(){
msg.push_str("It looks like you're compiling on Linux and also targeting Linux. Currently thisrequires the `pkg-config` utility to find OpenSSL but unfortunately `pkg-config`could not be found. If you have OpenSSL installed you can likely fix this byinstalling `pkg-config`.",);}
So this must be true: Command::new("pkg-config").output().is_err()
The text was updated successfully, but these errors were encountered:
Brew list includes:
openssl@3
openssl@1.1
pkg-config
I tried with the environment variable:
RUST_BACKTRACE=1
and did not notice any different output.The file throwing this error is from:
/home/coder/.cache/Homebrew/cargo_cache/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.74/build/find_normal.rs
So this must be true:
Command::new("pkg-config").output().is_err()
The text was updated successfully, but these errors were encountered: