-
-
Notifications
You must be signed in to change notification settings - Fork 229
Support for OpenBSD/adJ #2406
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
Comments
On OpenBSD-current (development version) that includes rust 1.85.0 I was able to compile. Running it presents an error: % ./bin/sentry-cli
/home/vtamara/comp/rust/sentry-cli/js/helper.js:96
throw new Error(
^
Error: Unsupported operating system or architecture! Sentry CLI does not work on this architecture.
Sentry CLI supports:
- Darwin (macOS)
- Linux and FreeBSD on x64, x86, ia32, arm64, and arm architectures
- Windows x64, x86, and ia32 architectures
at throwUnsupportedPlatformError (/home/vtamara/comp/rust/sentry-cli/js/helper.js:96:9)
at getBinaryPath (/home/vtamara/comp/rust/sentry-cli/js/helper.js:120:5)
at Object.getPath (/home/vtamara/comp/rust/sentry-cli/js/helper.js:259:62)
at SentryCli.getPath (/home/vtamara/comp/rust/sentry-cli/js/index.js:54:19)
at Object.<anonymous> (/home/vtamara/comp/rust/sentry-cli/bin/sentry-cli:9:20)
at Module._compile (node:internal/modules/cjs/loader:1469:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1548:10)
at Module.load (node:internal/modules/cjs/loader:1288:32)
at Module._load (node:internal/modules/cjs/loader:1104:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:173:12)
Node.js v20.18.2 Checking % SENTRY_BINARY_PATH=/home/vtamara/comp/rust/sentry-cli/bin/sentry-cli ./bin/sentry-cli But a different error is produced: Error: spawn /home/vtamara/comp/rust/sentry-cli/bin/sentry-cli EAGAIN
at ChildProcess._handle.onexit (node:internal/child_process:285:19)
at onErrorNT (node:internal/child_process:483:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -35,
code: 'EAGAIN',
syscall: 'spawn /home/vtamara/comp/rust/sentry-cli/bin/sentry-cli',
path: '/home/vtamara/comp/rust/sentry-cli/bin/sentry-cli',
spawnargs: []
} Regarding the first error, on OpenBSD there is no way to find the path of an executable unless it is fully specified when it is called, IMHO sentry-cli should not fail when it is called as: % /home/vtamara/comp/rust/sentry-cli/bin/sentry-cli But regarding the second error, do you have suggestions? |
Sorry @vtamara, but as stated in the error messages, Sentry CLI does not support OpenBSD. We have no plans to add support for OpenBSD, and we cannot assist with any problems that arise when attempting to run Sentry CLI on an OpenBSD system. If OpenBSD supports Docker, you could try using our Sentry CLI Docker container. Our recommendation, however, would be to run Sentry CLI on one of our supported operating systems (Linux, macOS, or Windows). |
Uh oh!
There was an error while loading. Please reload this page.
On OpenBSD/adJ 7.6 trying to install from the command line, adapting the instructions of the README, fails with:
OpenBSD/adJ 7.6 includes rustc 1.81.0, however the compilation fails with:
Checking rust-lang/rust#129086 it seems this could require rust 1.82.0 (that is missing in the README of
sentry-cli
). I will be trying with a development version of OpenBSD/adJ with a more updated rust.The text was updated successfully, but these errors were encountered: