The sections already carry their required alignment - the force align
is a leftover from past code.
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "config.h"
-
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
OUTPUT_ARCH("i386")
ENTRY(post32);
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "config.h"
+#include "config.h" // BUILD_BIOS_ADDR
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
OUTPUT_ARCH("i386")
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "config.h"
+#include "config.h" // BUILD_BIOS_ADDR
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
OUTPUT_ARCH("i386")
code32_rodata = . ;
*(.rodata*)
*(.data)
- . = ALIGN(16) ;
- code32_bss = . ;
*(.bss)
*(COMMON)
}