build: Fix i386/pc386 link of SMP start file

Update #3818.
This commit is contained in:
Sebastian Huber
2020-09-15 15:06:48 +02:00
parent d9d31b381c
commit 8f424e4580

View File

@@ -12,7 +12,7 @@ do-build: |
startAP_exe = startAP + ".exe"
ldflags = "-N -Ttext 0x70000 -e app_processor_start -nostdlib"
bld(
rule="${LD} " + ldflags + " -o ${TGT} -r ${SRC}",
rule="${LD} " + ldflags + " -o ${TGT} ${SRC}",
source=startAP_o,
target=startAP_exe,
)