We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
make install
Linked to #298
Currently for make install, we require write access to /opt which is root-only
/opt
raiko/makefile
Lines 2 to 3 in 546ab19
raiko/script/install.sh
Lines 23 to 24 in 546ab19
Instead we should:
riscv32-unknown-elf-gcc
$HOME/.local/bin
$HOME/raiko/bin
The SP1 part is assuming /home/runner and $GITHUB_PATH which are Github Action specific.
/home/runner
$GITHUB_PATH
Lines 50 to 64 in 546ab19
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Linked to #298
Root access
Currently for
make install
, we require write access to/opt
which is root-onlyraiko/makefile
Lines 2 to 3 in 546ab19
raiko/script/install.sh
Lines 23 to 24 in 546ab19
Instead we should:
riscv32-unknown-elf-gcc
is in PATH$HOME/.local/bin
following Freedesktop XDG specification (https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). Or decide to have our own environment like$HOME/raiko/bin
.Assumes running in Github Action
The SP1 part is assuming
/home/runner
and$GITHUB_PATH
which are Github Action specific.raiko/script/install.sh
Lines 50 to 64 in 546ab19
The text was updated successfully, but these errors were encountered: