-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install failure #1
Comments
Thank you for reporting this. I was able to verify the same issue on the latest macOS Turns out, this is actually an issue with the default homebrew version as well. Homebrew is building the bottles (pre-built) and installing that. As long as they're not being built on the latest macOS, they appear to still build. However, if you try to build it yourself and not use a bottle, you'll get the same error. For example: brew install --build-from-source netperf I played around with this tonight and figured out a way to get this working. The I git cloned the latest from HP's repo, created my own tar.gz file, and stuck that up on my S3 bucket. I didn't change anything in there as I wanted it to be 1:1, I just wanted to get the latest copy of everything from that repo. I then updated my homebrew formula here to grab the new file from my S3 bucket. In addition to that, I also ran into a build issue on macOS where there's an open PR on the HP side of things that hadn't been merged, so I include that as well. Here's the open PR on HP's end: With both the latest files from HP and that extra PR that hadn't been merged, I am able to Would you mind updating the the latest version and see if it's working again for you? |
Thanks @kris-anderson - here's the current output which gets stuck on
|
@vielmetti thank you again for the feedback. I was also able to reproduce that on my M1. I previously only tested on my intel device. And thank for for the PR. That got me thinking some more, and I made a few other changes to this that I'd like to get your thoughts on. I added the following: depends_on "automake"
system "./autogen.sh" I believe this is similar to what your PR does. Previously, on my intel, I ran the Instead, I now did a git clone of HP's repo, and create an exact copy of that repo as my gzip file. Then, I updated this build process to call that Can you try the latest changes I just pushed and see if this is working for you? Alternatively, you don't even need to use my gzip file to install this. You can install directly from HP's main source branch if you'd like with the following command: brew install --HEAD kris-anderson/netperf/netperf-enable-demo |
Thanks @kris-anderson ! I did the My next step is to get |
The system is a MacBook Air M1, running Ventura 13.4. Happy to provide additional info as needed or to test code.
The text was updated successfully, but these errors were encountered: