Fix alignment in os/build.rs
This commit is contained in:
parent
ab062588aa
commit
b520ed2597
1 changed files with 2 additions and 1 deletions
|
@ -23,7 +23,7 @@ fn insert_app_data() -> Result<()> {
|
|||
apps.sort();
|
||||
|
||||
writeln!(f, r#"
|
||||
.align 4
|
||||
.align 3
|
||||
.section .data
|
||||
.global _num_app
|
||||
_num_app:
|
||||
|
@ -40,6 +40,7 @@ _num_app:
|
|||
.section .data
|
||||
.global app_{0}_start
|
||||
.global app_{0}_end
|
||||
.align 3
|
||||
app_{0}_start:
|
||||
.incbin "{2}{1}"
|
||||
app_{0}_end:"#, idx, app, TARGET_PATH)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue