-
Notifications
You must be signed in to change notification settings - Fork 63
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
Build failure in alire/macOS #1150
Comments
Thank you @simonjwright to trying ALS on Mac OS X (apple silicon?). This
The
If This trick won't be needed in next version of ALS, but |
Found this discussion. Could you try [[actions]]
command = [
"sed",
"-i.bak",
"-e/gpr2/s/^/-- /",
"gnat/lsp_server.gpr",
]
directory = "."
type = "post-fetch" Or [[actions]]
command = [
"sed",
"-i",
"",
"-e/gpr2/s/^/-- /",
"gnat/lsp_server.gpr",
]
directory = "."
type = "post-fetch" |
Both of those suggestions worked. My previous tries worked because I’d accidentally set the backup prefix to And yes, this is Apple silicon. One problem I came up against was
which is because, on aarch64 (at any rate, gcc 13.1.0’s Also the objcopy issue, here & in libadalang_tools. |
May be you can suppress
|
After
alr get ada_language_server
, this happens:I’ve found a working fix: it seems that this action needs the
-E
or-r
switch.The man page for
-E
saysThe man page for
-r
saysThere’s a note: "The -E option[ is a] non-standard FreeBSD extension[s] and may not be available on other operating systems."
The text was updated successfully, but these errors were encountered: