Skip to content

Fixed warning: changing start of section .text by x bytes #149

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

Merged
merged 1 commit into from
Nov 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion variants/DISCO_F100RB/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/DISCO_F407VG/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/DISCO_F746NG/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text ALIGN(8):
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
4 changes: 2 additions & 2 deletions variants/NUCLEO_F030R8/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down Expand Up @@ -164,4 +164,4 @@ SECTIONS
}

.ARM.attributes 0 : { *(.ARM.attributes) }
}
}
2 changes: 1 addition & 1 deletion variants/NUCLEO_F091RC/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text ALIGN(4) :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F103RB/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F207ZG/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F302R8/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F303K8/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F401RE/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F411RE/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text ALIGN(8):
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_F429ZI/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_L053R8/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_L152RE/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_L432KC/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(8):
{
. = ALIGN(8);
*(.text) /* .text sections (code) */
Expand Down
2 changes: 1 addition & 1 deletion variants/NUCLEO_L476RG/ldscript.ld
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SECTIONS
} >FLASH

/* The program code and other data goes into FLASH */
.text :
.text ALIGN(4):
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
Expand Down