-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
pkgx deno compile --target aarch64-apple-darwin main.ts
on linux always generate executable for linux
#6790
Comments
I wonder if that's related to this: denoland/deno#22690 Does it work with older version? if you do |
note that you also have two --output statements to the same destination. i don't know if that significant with the placement order of flags. |
it appears the issue is not related to Deno itself but rather to the Deno installation from pkgx. It works pretty good in ubuntu:latest and deno:latest |
And those are the up-to-date version as well? I can look into it, but based on that issue versions was my first guess. |
Yes, I can confirm that I am using the latest version of deno (1.45.3) |
ok, interesting one. the problem is this: runtime:
env:
DENORT_BIN: '{{prefix}}/bin/denort' so, that line is there because their recently-added linux/aarch64 support targeted the glibc for ubuntu22.04 and we support much further back than that. if i comment that out, i can cross-build the apple targets (with unzip) as it grabs their downloadable runtime. so, I think for now, I'm going to remove this, and explicitly set it in the test stanza. we'll need to update the couple of builds that rely on it ( |
pkgx deno compile -A --output main --target aarch64-apple-darwin main.ts
on linux always generate executable for linux.The text was updated successfully, but these errors were encountered: