mirror of
https://github.com/gbdev/rgbds.git
synced 2025-12-01 07:17:49 +00:00
Don't output sections in reverse order (#1613)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
error: Section "_INITIALIZER" has not been assigned a type by a linker script
|
||||
error: Section "_GSFINAL" has not been assigned a type by a linker script
|
||||
error: Section "_GSINIT" has not been assigned a type by a linker script
|
||||
error: Section "_HOME" has not been assigned a type by a linker script
|
||||
error: Section "_INITIALIZED" has not been assigned a type by a linker script
|
||||
error: Section "_DATA" has not been assigned a type by a linker script
|
||||
error: Section "_CODE" has not been assigned a type by a linker script
|
||||
error: Section "_DATA" has not been assigned a type by a linker script
|
||||
error: Section "_INITIALIZED" has not been assigned a type by a linker script
|
||||
error: Section "_HOME" has not been assigned a type by a linker script
|
||||
error: Section "_GSINIT" has not been assigned a type by a linker script
|
||||
error: Section "_GSFINAL" has not been assigned a type by a linker script
|
||||
error: Section "_INITIALIZER" has not been assigned a type by a linker script
|
||||
Linking failed with 7 errors
|
||||
|
||||
@@ -1 +1 @@
|
||||
error: "Same" is defined as a label at section-union/same-export/a.asm(2), but as another label at section-union/same-export/b.asm(2)
|
||||
error: "Same" is defined as a label at section-union/same-export/b.asm(2), but as another label at section-union/same-export/a.asm(2)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
00:0006 End
|
||||
00:c000 wStart
|
||||
00:c000 wStart
|
||||
00:c000 wStart.long1
|
||||
00:c000 wStart.word1
|
||||
00:c000 wStart.long1
|
||||
00:c002 wStart.word2
|
||||
00:c004 wEnd
|
||||
00:c004 wEnd
|
||||
|
||||
@@ -145,7 +145,7 @@ startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
"$RGBASM" -o "$gbtemp2" "$test"/b.asm
|
||||
continueTest
|
||||
rgblinkQuiet -o "$gbtemp" "$gbtemp2" "$otemp" 2>"$outtemp"
|
||||
rgblinkQuiet -o "$gbtemp" "$otemp" "$gbtemp2" 2>"$outtemp"
|
||||
tryDiff "$test"/out.err "$outtemp"
|
||||
evaluateTest
|
||||
|
||||
@@ -237,7 +237,7 @@ startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
"$RGBASM" -o "$gbtemp2" "$test"/b.asm
|
||||
continueTest
|
||||
rgblinkQuiet -o "$gbtemp" "$gbtemp2" "$otemp" 2>"$outtemp"
|
||||
rgblinkQuiet -o "$gbtemp" "$otemp" "$gbtemp2" 2>"$outtemp"
|
||||
tryDiff "$test"/out.err "$outtemp"
|
||||
evaluateTest
|
||||
|
||||
@@ -319,7 +319,7 @@ startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
"$RGBASM" -o "$gbtemp2" "$test"/b.asm
|
||||
continueTest
|
||||
rgblinkQuiet "$gbtemp2" "$otemp" 2>"$outtemp"
|
||||
rgblinkQuiet "$otemp" "$gbtemp2" 2>"$outtemp"
|
||||
tryDiff "$test"/out.err "$outtemp"
|
||||
evaluateTest
|
||||
|
||||
@@ -328,7 +328,7 @@ startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
"$RGBASM" -o "$gbtemp2" "$test"/b.asm
|
||||
continueTest
|
||||
rgblinkQuiet -o "$gbtemp" "$gbtemp2" "$otemp" 2>"$outtemp"
|
||||
rgblinkQuiet -o "$gbtemp" "$otemp" "$gbtemp2" 2>"$outtemp"
|
||||
tryDiff "$test"/out.err "$outtemp"
|
||||
tryCmpRom "$test"/ref.out.bin
|
||||
evaluateTest
|
||||
@@ -364,7 +364,7 @@ startTest
|
||||
"$RGBASM" -o "$otemp" "$test"/a.asm
|
||||
"$RGBASM" -o "$gbtemp2" "$test"/b.asm
|
||||
continueTest
|
||||
rgblinkQuiet -o "$gbtemp" -n "$outtemp2" "$gbtemp2" "$otemp" 2>"$outtemp"
|
||||
rgblinkQuiet -o "$gbtemp" -n "$outtemp2" "$otemp" "$gbtemp2" 2>"$outtemp"
|
||||
tryDiff "$test"/out.err "$outtemp"
|
||||
tryDiff "$test"/ref.out.sym "$outtemp2"
|
||||
tryCmpRom "$test"/ref.out.bin
|
||||
|
||||
Reference in New Issue
Block a user