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
I found out that this is clang's new error since clang 16. I have no idea why this is happening in Xcode 15.3's CLT. Maybe Apple merged some clang 16's code.
FreeBSD had the same problem about 10 months ago, and they solved by patching hpricot. FreeBSD bug
1 --- ext/fast_xs/fast_xs.c.orig 2023-05-04 17:51:30 UTC
2 +++ ext/fast_xs/fast_xs.c
3 @@ -144,7 +144,7 @@ static VALUE unpack_utf8(VALUE self)
4 return rb_funcall(self, unpack_id, 1, U_fmt);
5 }
6
7 -static VALUE unpack_uchar(VALUE self)
8 +static VALUE unpack_uchar(VALUE self, VALUE exc)
9 {
10 return rb_funcall(self, unpack_id, 1, C_fmt);
11 }
1 --- ext/hpricot_scan/hpricot_scan.c.orig 2023-05-04 18:05:46 UTC
2 +++ ext/hpricot_scan/hpricot_scan.c
3 @@ -22,7 +22,7 @@ struct hpricot_struct {
4 #define RSTRING_PTR(str) RSTRING(str)->ptr
5 #endif
6
7 -VALUE hpricot_css(VALUE, VALUE, VALUE, VALUE, VALUE);
8 +VALUE hpricot_css(VALUE, VALUE, VALUE, VALUE);
9
10 #define NO_WAY_SERIOUSLY "*** This should not happen, please file a bug report with the HTML you're parsing at http://github.com/hpricot/hpricot/issues. So sorry!"
11
brew doctor
outputVerification
brew doctor
output" above saysYour system is ready to brew.
and am still able to reproduce my issue.brew update
twice and am still able to reproduce my issue.brew install wget
. If they do, open an issue at https://github.com/Homebrew/homebrew-core/issues/new/choose instead.brew config
outputWhat were you trying to do (and why)?
Running
brew test
on my mac.What happened (include all command output)?
What did you expect to happen?
brew tests
should be successful and brew tests should be usuable for creating PRs.Step-by-step reproduction instructions (by running
brew
commands)The text was updated successfully, but these errors were encountered: