add ensured 8-byte alignment to the end of each sy section in symbol_set.ld_meta

main
Allen Webster 2026-07-15 14:26:59 -07:00
parent b755026ba6
commit b31bf98d00
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ int main(int argc, char **argv){
for (String8Node *node = symbol_set_names_list.first;
node != 0; node = node->next){
stream_printf(stream, " syfirst__%S = .; *(.sy.%S); syopl__%S = .;\n",
stream_printf(stream, " syfirst__%S = .; *(.sy.%S); . = ALIGN(8); syopl__%S = .;\n",
&node->string, &node->string, &node->string);
}