mirror of
https://github.com/wolfSSL/wolfssl
synced 2026-05-24 10:18:22 +00:00
31 lines
671 B
Text
31 lines
671 B
Text
SECTIONS {
|
|
. = ALIGN(4096);
|
|
.text_wolfcrypt : {
|
|
__wc_text_start = .;
|
|
*(.text_wolfcrypt)
|
|
. = ALIGN(4096);
|
|
__wc_text_end = .;
|
|
}
|
|
. = ALIGN(4096);
|
|
.rodata_wolfcrypt : {
|
|
__wc_rodata_start = .;
|
|
*(.rodata_wolfcrypt)
|
|
. = ALIGN(4096);
|
|
__wc_rodata_end = .;
|
|
}
|
|
. = ALIGN(4096);
|
|
.data_wolfcrypt : {
|
|
__wc_rwdata_start = .;
|
|
*(.data_wolfcrypt)
|
|
. = ALIGN(4096);
|
|
__wc_rwdata_end = .;
|
|
}
|
|
. = ALIGN(4096);
|
|
.bss_wolfcrypt : {
|
|
__wc_bss_start = .;
|
|
*(.bss_wolfcrypt)
|
|
. = ALIGN(4096);
|
|
__wc_bss_end = .;
|
|
}
|
|
. = ALIGN(4096);
|
|
}
|