-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Provide darwin/arm64 builds of jq #2386
Comments
There's a macOS arm64 version installable via brew:
You can see the patch which was necessary to get this to work on macOS: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/jq.rb |
Looks like that fix already has made it into The homebrew bottle does not run |
Could we still add an OSX ARM64 build to the Downloads page, for those of us who don't use Homebrew? |
@cfstras @grnch I've been able to use the $ uname -m
arm64
$ system_profiler SPHardwareDataType
Hardware:
Hardware Overview:
Model Name: MacBook Pro
Model Identifier: MacBookPro18,3
Chip: Apple M1 Pro
Total Number of Cores: 8 (6 performance and 2 efficiency)
Memory: 16 GB
System Firmware Version: 7429.30.65
OS Loader Version: 7429.30.65
...
$ file jq-osx-amd64
jq-osx-amd64: Mach-O 64-bit executable x86_64
$ chmod +x jq-osx-amd64
$ ./jq-osx-amd64 --version
jq-1.6 |
@deric4 Of course you can run the Intel binary on an M1 Mac, but it will run under Rosetta 2 emulation which will impact its performance. You won't notice any difference on small JSON files, but if you use |
That makes sense! I typically am only dealing with, at most, a few MB. Just for fun (and to see if casual usage would be noticeably impacted) I tried a couple of the jeopardy benchmark tests mentioned in the wiki. $ time md5 jeopardy.json
MD5 (jeopardy.json) = 2075398fa049b1c00223b2279ca5281d
real 0m0.133s
user 0m0.124s
sys 0m0.019s $ time ./jq-osx-amd64 length jeopardy.json
216930
real 0m1.226s
user 0m1.113s
sys 0m0.061s Note: the Assuming this version of $ time ./jq-osx-amd64 -f schema2017.jq jeopardy.json > jeopardy2017.schema.json
real 0m6.374s
user 0m6.259s
sys 0m0.066s
$ cat jeopardy2017.schema.json
{
"air_date": "string",
"answer": "string",
"category": "string",
"question": "string",
"round": "string",
"show_number": "string",
"value": "string"
} current version of $ time ./jq-osx-amd64 -f schema.jq jeopardy.json > jeopardy.schema.json
real 0m15.806s
user 0m15.672s
sys 0m0.078s
$ cat jeopardy.schema.json
{
"air_date": "string",
"answer": "string",
"category": "string",
"question": "string",
"round": "string",
"show_number": "string",
"value": [
"+",
"null",
"string"
]
} I'll stop creating noise in the issue but thought it was pretty cool that it doesn't seem to be any worse than a machine from back in 2018 😅 |
Here's my manually compiled version ( ➜ hyperfine --warmup 2 "./jq-arm length jeopardy.json"
Benchmark 1: ./jq-arm length jeopardy.json
Time (mean ± σ): 492.8 ms ± 8.6 ms [User: 450.7 ms, System: 38.1 ms]
Range (min … max): 484.2 ms … 508.9 ms 10 runs
➜ hyperfine --warmup 2 "./jq-amd length jeopardy.json"
Benchmark 1: ./jq-amd length jeopardy.json
Time (mean ± σ): 1.190 s ± 0.022 s [User: 1.111 s, System: 0.057 s]
Range (min … max): 1.169 s … 1.229 s 10 runs With schema (the version you linked, after uncommenting the last line): ➜ hyperfine --warmup 2 "./jq-arm -f schema.jq jeopardy.json"
Benchmark 1: ./jq-arm -f schema.jq jeopardy.json
Time (mean ± σ): 3.543 s ± 0.045 s [User: 3.479 s, System: 0.046 s]
Range (min … max): 3.482 s … 3.618 s 10 runs
➜ hyperfine --warmup 2 "./jq-amd -f schema.jq jeopardy.json"
Benchmark 1: ./jq-amd -f schema.jq jeopardy.json
Time (mean ± σ): 6.550 s ± 0.102 s [User: 6.454 s, System: 0.071 s]
Range (min … max): 6.430 s … 6.740 s 10 runs With no data at all, measuring startup time: ➜ hyperfine --warmup 2 "echo '{}' | ./jq-arm .test"
Benchmark 1: echo '{}' | ./jq-arm .test
Time (mean ± σ): 3.1 ms ± 4.5 ms [User: 1.3 ms, System: 0.9 ms]
Range (min … max): 0.0 ms … 63.1 ms 249 runs
Warning: Command took less than 5 ms to complete. Results might be inaccurate.
Warning: Statistical outliers were detected. Consider re-running this benchmark on a quiet PC without any interferences from other programs. It might help to use the '--warmup' or '--prepare' options.
➜ hyperfine --warmup 2 "echo '{}' | ./jq-amd .test"
Benchmark 1: echo '{}' | ./jq-amd .test
Time (mean ± σ): 34.9 ms ± 2.1 ms [User: 24.4 ms, System: 2.1 ms]
Range (min … max): 31.5 ms … 45.6 ms 69 runs So: I get ~2x performance by using the native ARM build over rosetta, and startup time goes down from 30ms to 1ms. |
you can use arm 1.6 binary from https://github.com/slamdev/rules_jq/releases/download/0.0.1/jq-osx-arm64 until the official build is released. |
- No official arm64 build for now but currnet amd64 binary works for the M1 env, should change to the arm64 binary once jq have official arm64 version in its Github release. - Reference Github issue: jqlang/jq#2386 Signed-off-by: HungWei Chiu <sppsorrg@gmail.com>
- No official arm64 build for now but the current amd64 binary works for the M1 env, should change to the arm64 binary once jq has official arm64 version in its Github release. - Reference Github issue: jqlang/jq#2386 Signed-off-by: HungWei Chiu <sppsorrg@gmail.com>
- No official arm64 build for now but the current amd64 binary works for the M1 env, should change to the arm64 binary once jq has official arm64 version in its Github release. - Reference Github issue: jqlang/jq#2386 Signed-off-by: HungWei Chiu <sppsorrg@gmail.com>
On my mac mini m1, which is running macos in a parallels virtual machine, the https://github.com/stedolan/jq/releases/download/jq-1.6/jq-osx-amd64 binary is failing with:
I tried using
Here's the arch details if that helps:
|
Okay installing rosetta via the CLI solved it:
|
- No official arm64 build for now but the current amd64 binary works for the M1 env, should change to the arm64 binary once jq has official arm64 version in its Github release. - Reference Github issue: jqlang/jq#2386 Signed-off-by: HungWei Chiu <sppsorrg@gmail.com>
Thanks @slamdev - sadly it's not statically compiled.
I don't use homebrew. |
Okay - got inspired to cobble up a solution to build https://gist.github.com/magnetikonline/58eb344e724d878345adc8622f72be13 Installs Result: $ file /usr/local/bin/jq
/usr/local/bin/jq: Mach-O 64-bit executable arm64 Tested on MacBook Apple M1 Pro under |
- No official arm64 build for now but the current amd64 binary works for the M1 env, should change to the arm64 binary once jq has official arm64 version in its Github release. - Reference Github issue: jqlang/jq#2386 Signed-off-by: HungWei Chiu <sppsorrg@gmail.com>
What's the status here? Are we going to see an official M1 release? Is one in the making? I've tried installing it via asdf-vm, to no avail. It states that, Sadly, there are no official releases for your architecture |
Still no movement here? |
Just a +1 here. I'm another one who never plans to use homebrew, and I can find M1-compatible installers for most software I use, except for jq. |
Is this not doable? I can't debug the GitHub workflow with act, but building on M1 shows 7 tests passed.
|
@reneleonhardt sorry, I missed your response, and thanks. The problem is that jq comes with |
@uogbuji Hi, versioned release like $ curl -sL https://github.com/jqlang/jq/archive/refs/tags/jq-1.6.tar.gz | tar tz | grep configure
jq-jq-1.6/configure.ac
$ curl -sL https://github.com/jqlang/jq/releases/download/jq-1.6/jq-1.6.tar.gz | tar tz | grep configure
jq-1.6/configure
jq-1.6/configure.ac
jq-1.6/modules/oniguruma/configure.ac |
Ah. Helpful; thanks! |
Would it be possible to release a jq version with a built binary for M1 Macs?
I didn't find any release scripts for mac, otherwise I'd made a PR :)
Using the build instructions in the README, I was able to produce a arm64 macOS binary of jq. I haven't extensively tested it, but it seems to work fine.
However, I saw an issue with
make check
:The text was updated successfully, but these errors were encountered: