Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
redoxer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
redoxer
Commits
a66151be
Commit
a66151be
authored
5 months ago
by
Jeremy Soller
Browse files
Options
Downloads
Plain Diff
Merge branch 'riscv' into 'master'
RISC-V target support See merge request
!24
parents
27fa0914
6aea2b05
No related branches found
Branches containing commit
No related tags found
1 merge request
!24
RISC-V target support
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/env.rs
+5
-4
5 additions, 4 deletions
src/env.rs
src/lib.rs
+10
-0
10 additions, 0 deletions
src/lib.rs
with
15 additions
and
4 deletions
src/env.rs
+
5
−
4
View file @
a66151be
use
std
::{
env
,
ffi
,
io
,
process
};
use
std
::{
env
,
ffi
,
io
,
process
};
use
crate
::{
status_error
,
target
,
toolchain
};
use
crate
::{
gnu_target
,
status_error
,
target
,
toolchain
};
pub
fn
command
<
S
:
AsRef
<
ffi
::
OsStr
>>
(
program
:
S
)
->
io
::
Result
<
process
::
Command
>
{
pub
fn
command
<
S
:
AsRef
<
ffi
::
OsStr
>>
(
program
:
S
)
->
io
::
Result
<
process
::
Command
>
{
let
toolchain_dir
=
toolchain
()
?
;
let
toolchain_dir
=
toolchain
()
?
;
...
@@ -15,9 +15,9 @@ pub fn command<S: AsRef<ffi::OsStr>>(program: S) -> io::Result<process::Command>
...
@@ -15,9 +15,9 @@ pub fn command<S: AsRef<ffi::OsStr>>(program: S) -> io::Result<process::Command>
env
::
set_var
(
"PATH"
,
new_path
);
env
::
set_var
(
"PATH"
,
new_path
);
}
}
let
ar
=
format!
(
"{}-ar"
,
target
());
let
ar
=
format!
(
"{}-ar"
,
gnu_
target
());
let
cc
=
format!
(
"{}-gcc"
,
target
());
let
cc
=
format!
(
"{}-gcc"
,
gnu_
target
());
let
cxx
=
format!
(
"{}-g++"
,
target
());
let
cxx
=
format!
(
"{}-g++"
,
gnu_
target
());
let
cc_target_var
=
target
()
.replace
(
"-"
,
"_"
);
let
cc_target_var
=
target
()
.replace
(
"-"
,
"_"
);
let
cargo_target_var
=
cc_target_var
.to_uppercase
();
let
cargo_target_var
=
cc_target_var
.to_uppercase
();
...
@@ -28,6 +28,7 @@ pub fn command<S: AsRef<ffi::OsStr>>(program: S) -> io::Result<process::Command>
...
@@ -28,6 +28,7 @@ pub fn command<S: AsRef<ffi::OsStr>>(program: S) -> io::Result<process::Command>
command
.env
(
format!
(
"CXX_{}"
,
cc_target_var
),
&
cxx
);
command
.env
(
format!
(
"CXX_{}"
,
cc_target_var
),
&
cxx
);
command
.env
(
"RUSTUP_TOOLCHAIN"
,
&
toolchain_dir
);
command
.env
(
"RUSTUP_TOOLCHAIN"
,
&
toolchain_dir
);
command
.env
(
"TARGET"
,
target
());
command
.env
(
"TARGET"
,
target
());
command
.env
(
"GNU_TARGET"
,
gnu_target
());
Ok
(
command
)
Ok
(
command
)
}
}
...
...
This diff is collapsed.
Click to expand it.
src/lib.rs
+
10
−
0
View file @
a66151be
...
@@ -12,6 +12,7 @@ const SUPPORTED_TARGETS: &'static [&'static str] = &[
...
@@ -12,6 +12,7 @@ const SUPPORTED_TARGETS: &'static [&'static str] = &[
"x86_64-unknown-redox"
,
"x86_64-unknown-redox"
,
"aarch64-unknown-redox"
,
"aarch64-unknown-redox"
,
"i686-unknown-redox"
,
"i686-unknown-redox"
,
"riscv64gc-unknown-redox"
,
];
];
fn
installed
(
program
:
&
str
)
->
io
::
Result
<
bool
>
{
fn
installed
(
program
:
&
str
)
->
io
::
Result
<
bool
>
{
...
@@ -71,6 +72,15 @@ pub fn target() -> &'static str {
...
@@ -71,6 +72,15 @@ pub fn target() -> &'static str {
SUPPORTED_TARGETS
[
index
]
SUPPORTED_TARGETS
[
index
]
}
}
pub
fn
gnu_target
()
->
&
'static
str
{
let
rust_target
=
target
();
if
rust_target
==
"riscv64gc-unknown-redox"
{
"riscv64-unknown-redox"
}
else
{
rust_target
}
}
pub
fn
main
(
args
:
&
[
String
])
{
pub
fn
main
(
args
:
&
[
String
])
{
match
args
.get
(
1
)
{
match
args
.get
(
1
)
{
Some
(
arg
)
=>
match
arg
.as_str
()
{
Some
(
arg
)
=>
match
arg
.as_str
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment