diff --git a/test/test0000/hello-aarch64.sh b/test/test0000/hello-aarch64.sh index 83a535d..c025bad 100755 --- a/test/test0000/hello-aarch64.sh +++ b/test/test0000/hello-aarch64.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0000-aarch64-binary \ || exit 3 diff --git a/test/test0000/hello-amd64.sh b/test/test0000/hello-amd64.sh index 7686c59..3c61e2d 100755 --- a/test/test0000/hello-amd64.sh +++ b/test/test0000/hello-amd64.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0000-amd64-binary \ || exit 3 diff --git a/test/test0000/hello-armv7l.sh b/test/test0000/hello-armv7l.sh index 00317a3..9b70455 100755 --- a/test/test0000/hello-armv7l.sh +++ b/test/test0000/hello-armv7l.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0000-armv7l-binary \ || exit 3 diff --git a/test/test0000/hello-knight-native.sh b/test/test0000/hello-knight-native.sh index 5a82746..0ae3af3 100755 --- a/test/test0000/hello-knight-native.sh +++ b/test/test0000/hello-knight-native.sh @@ -33,7 +33,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/return.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -41,9 +41,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/return.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x0 \ + --base-address 0x0 \ -o test/results/test0000-knight-native-binary \ || exit 3 diff --git a/test/test0000/hello-x86.sh b/test/test0000/hello-x86.sh index 280e79c..76aad92 100755 --- a/test/test0000/hello-x86.sh +++ b/test/test0000/hello-x86.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0000-x86-binary \ || exit 3 diff --git a/test/test0001/hello-aarch64.sh b/test/test0001/hello-aarch64.sh index 7ee2132..bec79b3 100755 --- a/test/test0001/hello-aarch64.sh +++ b/test/test0001/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/library_call.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/library_call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/library_call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0001-aarch64-binary \ || exit 3 diff --git a/test/test0001/hello-amd64.sh b/test/test0001/hello-amd64.sh index d34ba09..181865b 100755 --- a/test/test0001/hello-amd64.sh +++ b/test/test0001/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/library_call.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/library_call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/library_call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0001-amd64-binary \ || exit 3 diff --git a/test/test0001/hello-armv7l.sh b/test/test0001/hello-armv7l.sh index 180ebcc..dab9265 100755 --- a/test/test0001/hello-armv7l.sh +++ b/test/test0001/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/library_call.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/library_call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/library_call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0001-armv7l-binary \ || exit 3 diff --git a/test/test0001/hello-knight-native.sh b/test/test0001/hello-knight-native.sh index 4ca86e3..5d225c2 100755 --- a/test/test0001/hello-knight-native.sh +++ b/test/test0001/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/library_call.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/library_call.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/library_call.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x0 \ + --base-address 0x0 \ -o test/results/test0001-knight-native-binary \ || exit 3 diff --git a/test/test0001/hello-x86.sh b/test/test0001/hello-x86.sh index 2fb7363..ecab79b 100755 --- a/test/test0001/hello-x86.sh +++ b/test/test0001/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/library_call.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/library_call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/library_call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0001-x86-binary \ || exit 3 diff --git a/test/test0002/hello-aarch64.sh b/test/test0002/hello-aarch64.sh index 594c921..c24d7e8 100755 --- a/test/test0002/hello-aarch64.sh +++ b/test/test0002/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/if.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/if.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/if.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0002-aarch64-binary \ || exit 3 diff --git a/test/test0002/hello-amd64.sh b/test/test0002/hello-amd64.sh index 3e3feb1..27fb110 100755 --- a/test/test0002/hello-amd64.sh +++ b/test/test0002/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/if.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/if.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/if.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0002-amd64-binary \ || exit 3 diff --git a/test/test0002/hello-armv7l.sh b/test/test0002/hello-armv7l.sh index 14f921f..ef82e79 100755 --- a/test/test0002/hello-armv7l.sh +++ b/test/test0002/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/if.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/if.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/if.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0002-armv7l-binary \ || exit 3 diff --git a/test/test0002/hello-knight-native.sh b/test/test0002/hello-knight-native.sh index 04524a1..4d0c760 100755 --- a/test/test0002/hello-knight-native.sh +++ b/test/test0002/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/if.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/if.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/if.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0002-knight-native-binary \ || exit 3 diff --git a/test/test0002/hello-x86.sh b/test/test0002/hello-x86.sh index 643f007..dae54c6 100755 --- a/test/test0002/hello-x86.sh +++ b/test/test0002/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/if.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/if.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/if.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0002-x86-binary \ || exit 3 diff --git a/test/test0003/hello-aarch64.sh b/test/test0003/hello-aarch64.sh index 00848f3..0cba87b 100755 --- a/test/test0003/hello-aarch64.sh +++ b/test/test0003/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/constant.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/constant.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/constant.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0003-aarch64-binary \ || exit 3 diff --git a/test/test0003/hello-amd64.sh b/test/test0003/hello-amd64.sh index 2b9bdf5..c8f1522 100755 --- a/test/test0003/hello-amd64.sh +++ b/test/test0003/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/constant.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/constant.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/constant.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0003-amd64-binary \ || exit 3 diff --git a/test/test0003/hello-armv7l.sh b/test/test0003/hello-armv7l.sh index f9621e7..8e58f17 100755 --- a/test/test0003/hello-armv7l.sh +++ b/test/test0003/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/constant.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/constant.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/constant.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0003-armv7l-binary \ || exit 3 diff --git a/test/test0003/hello-knight-native.sh b/test/test0003/hello-knight-native.sh index c01baaa..1f98e58 100755 --- a/test/test0003/hello-knight-native.sh +++ b/test/test0003/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/constant.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/constant.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/constant.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0003-knight-native-binary \ || exit 3 diff --git a/test/test0003/hello-x86.sh b/test/test0003/hello-x86.sh index 8548169..0a12d8d 100755 --- a/test/test0003/hello-x86.sh +++ b/test/test0003/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/constant.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/constant.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/constant.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0003-x86-binary \ || exit 3 diff --git a/test/test0004/hello-aarch64.sh b/test/test0004/hello-aarch64.sh index aee0358..7671cf7 100755 --- a/test/test0004/hello-aarch64.sh +++ b/test/test0004/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/call.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0004-aarch64-binary \ || exit 3 diff --git a/test/test0004/hello-amd64.sh b/test/test0004/hello-amd64.sh index b1e3b44..669bf72 100755 --- a/test/test0004/hello-amd64.sh +++ b/test/test0004/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/call.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0004-amd64-binary \ || exit 3 diff --git a/test/test0004/hello-armv7l.sh b/test/test0004/hello-armv7l.sh index f2866c5..9bfbdf3 100755 --- a/test/test0004/hello-armv7l.sh +++ b/test/test0004/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/call.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0004-armv7l-binary \ || exit 3 diff --git a/test/test0004/hello-knight-native.sh b/test/test0004/hello-knight-native.sh index b45e408..0218f4c 100755 --- a/test/test0004/hello-knight-native.sh +++ b/test/test0004/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/call.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/call.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/call.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0004-knight-native-binary \ || exit 3 diff --git a/test/test0004/hello-x86.sh b/test/test0004/hello-x86.sh index c0ed8ca..ac25569 100755 --- a/test/test0004/hello-x86.sh +++ b/test/test0004/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/call.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/call.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/call.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0004-x86-binary \ || exit 3 diff --git a/test/test0005/hello-aarch64.sh b/test/test0005/hello-aarch64.sh index 3228b2a..209677c 100755 --- a/test/test0005/hello-aarch64.sh +++ b/test/test0005/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/string.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/string.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/string.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0005-aarch64-binary \ || exit 3 diff --git a/test/test0005/hello-amd64.sh b/test/test0005/hello-amd64.sh index 83f411b..c11bf4e 100755 --- a/test/test0005/hello-amd64.sh +++ b/test/test0005/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/string.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/string.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/string.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0005-amd64-binary \ || exit 3 diff --git a/test/test0005/hello-armv7l.sh b/test/test0005/hello-armv7l.sh index 80267ca..1550f6f 100755 --- a/test/test0005/hello-armv7l.sh +++ b/test/test0005/hello-armv7l.sh @@ -44,7 +44,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/string.M1 \ -f ${TMPDIR}/string-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/string.hex2 \ || exit 3 @@ -53,9 +53,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/string.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0005-armv7l-binary \ || exit 4 diff --git a/test/test0005/hello-knight-native.sh b/test/test0005/hello-knight-native.sh index a9e7ea0..909f9c4 100755 --- a/test/test0005/hello-knight-native.sh +++ b/test/test0005/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/string.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/string.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/string.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0005-knight-native-binary \ || exit 3 diff --git a/test/test0005/hello-x86.sh b/test/test0005/hello-x86.sh index 6909b30..cd003d0 100755 --- a/test/test0005/hello-x86.sh +++ b/test/test0005/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/string.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/string.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/string.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0005-x86-binary \ || exit 3 diff --git a/test/test0006/hello-aarch64.sh b/test/test0006/hello-aarch64.sh index 0e2a325..12358de 100755 --- a/test/test0006/hello-aarch64.sh +++ b/test/test0006/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/for.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0006-aarch64-binary \ || exit 3 diff --git a/test/test0006/hello-amd64.sh b/test/test0006/hello-amd64.sh index b553d23..d60213c 100755 --- a/test/test0006/hello-amd64.sh +++ b/test/test0006/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/for.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0006-amd64-binary \ || exit 3 diff --git a/test/test0006/hello-armv7l.sh b/test/test0006/hello-armv7l.sh index c99696d..ac62f49 100755 --- a/test/test0006/hello-armv7l.sh +++ b/test/test0006/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/for.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0006-armv7l-binary \ || exit 3 diff --git a/test/test0006/hello-knight-native.sh b/test/test0006/hello-knight-native.sh index dc3a34a..164d714 100755 --- a/test/test0006/hello-knight-native.sh +++ b/test/test0006/hello-knight-native.sh @@ -34,7 +34,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/for.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/for.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/for.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0006-knight-native-binary \ || exit 3 diff --git a/test/test0006/hello-x86.sh b/test/test0006/hello-x86.sh index 7754c9f..2f6aa0d 100755 --- a/test/test0006/hello-x86.sh +++ b/test/test0006/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/for.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0006-x86-binary \ || exit 3 diff --git a/test/test0007/hello-aarch64.sh b/test/test0007/hello-aarch64.sh index c34303c..c2d15b1 100755 --- a/test/test0007/hello-aarch64.sh +++ b/test/test0007/hello-aarch64.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/do.M1 \ -f ${TMPDIR}/do-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/do.hex2 \ || exit 2 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0007-aarch64-binary \ || exit 3 diff --git a/test/test0007/hello-amd64.sh b/test/test0007/hello-amd64.sh index 9aeddc6..cb57a9d 100755 --- a/test/test0007/hello-amd64.sh +++ b/test/test0007/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/do.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0007-amd64-binary \ || exit 3 diff --git a/test/test0007/hello-armv7l.sh b/test/test0007/hello-armv7l.sh index 8512b18..dd0e4af 100755 --- a/test/test0007/hello-armv7l.sh +++ b/test/test0007/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/do.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0007-armv7l-binary \ || exit 3 diff --git a/test/test0007/hello-knight-native.sh b/test/test0007/hello-knight-native.sh index 321129d..4ee5817 100755 --- a/test/test0007/hello-knight-native.sh +++ b/test/test0007/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/do.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/do.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/do.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0007-knight-native-binary \ || exit 3 diff --git a/test/test0007/hello-x86.sh b/test/test0007/hello-x86.sh index 6dd1f9b..6524196 100755 --- a/test/test0007/hello-x86.sh +++ b/test/test0007/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/do.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0007-x86-binary \ || exit 3 diff --git a/test/test0008/hello-aarch64.sh b/test/test0008/hello-aarch64.sh index 1c5a148..31a4c63 100755 --- a/test/test0008/hello-aarch64.sh +++ b/test/test0008/hello-aarch64.sh @@ -47,7 +47,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ -f ${TMPDIR}/struct-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -56,9 +56,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0008-aarch64-binary \ || exit 3 diff --git a/test/test0008/hello-amd64.sh b/test/test0008/hello-amd64.sh index b46c3fe..5784ddc 100755 --- a/test/test0008/hello-amd64.sh +++ b/test/test0008/hello-amd64.sh @@ -47,7 +47,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ -f ${TMPDIR}/struct-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -56,9 +56,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0008-amd64-binary \ || exit 3 diff --git a/test/test0008/hello-armv7l.sh b/test/test0008/hello-armv7l.sh index 233b63a..cab02fb 100755 --- a/test/test0008/hello-armv7l.sh +++ b/test/test0008/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0008-armv7l-binary \ || exit 3 diff --git a/test/test0008/hello-knight-native.sh b/test/test0008/hello-knight-native.sh index eb79d31..db4e22a 100755 --- a/test/test0008/hello-knight-native.sh +++ b/test/test0008/hello-knight-native.sh @@ -37,7 +37,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/struct.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -45,9 +45,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/struct.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0008-knight-native-binary \ || exit 3 diff --git a/test/test0008/hello-x86.sh b/test/test0008/hello-x86.sh index 835166f..bd3a287 100755 --- a/test/test0008/hello-x86.sh +++ b/test/test0008/hello-x86.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ -f ${TMPDIR}/struct-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0008-x86-binary \ || exit 3 diff --git a/test/test0009/hello-aarch64.sh b/test/test0009/hello-aarch64.sh index 695f0b3..cbd540f 100755 --- a/test/test0009/hello-aarch64.sh +++ b/test/test0009/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/goto.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/goto.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/goto.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0009-aarch64-binary \ || exit 3 diff --git a/test/test0009/hello-amd64.sh b/test/test0009/hello-amd64.sh index 3f7cc5b..9703464 100755 --- a/test/test0009/hello-amd64.sh +++ b/test/test0009/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/goto.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/goto.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/goto.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0009-amd64-binary \ || exit 3 diff --git a/test/test0009/hello-armv7l.sh b/test/test0009/hello-armv7l.sh index 76041bc..9cdfe6a 100755 --- a/test/test0009/hello-armv7l.sh +++ b/test/test0009/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/goto.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/goto.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/goto.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0009-armv7l-binary \ || exit 3 diff --git a/test/test0009/hello-knight-native.sh b/test/test0009/hello-knight-native.sh index 2dea567..12a28eb 100755 --- a/test/test0009/hello-knight-native.sh +++ b/test/test0009/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/goto.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/goto.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/goto.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0009-knight-native-binary \ || exit 3 diff --git a/test/test0009/hello-x86.sh b/test/test0009/hello-x86.sh index 1173169..85557f8 100755 --- a/test/test0009/hello-x86.sh +++ b/test/test0009/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/goto.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/goto.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/goto.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0009-x86-binary \ || exit 3 diff --git a/test/test0010/hello-aarch64.sh b/test/test0010/hello-aarch64.sh index a5fd539..7c446e2 100755 --- a/test/test0010/hello-aarch64.sh +++ b/test/test0010/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/nested_struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/nested_struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/nested_struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0010-aarch64-binary \ || exit 3 diff --git a/test/test0010/hello-amd64.sh b/test/test0010/hello-amd64.sh index f2f3965..6515937 100755 --- a/test/test0010/hello-amd64.sh +++ b/test/test0010/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/nested_struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/nested_struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/nested_struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0010-amd64-binary \ || exit 3 diff --git a/test/test0010/hello-armv7l.sh b/test/test0010/hello-armv7l.sh index a7cf1e9..2a7129f 100755 --- a/test/test0010/hello-armv7l.sh +++ b/test/test0010/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/nested_struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/nested_struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/nested_struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0010-armv7l-binary \ || exit 3 diff --git a/test/test0010/hello-knight-native.sh b/test/test0010/hello-knight-native.sh index 1d6676a..77b08c2 100755 --- a/test/test0010/hello-knight-native.sh +++ b/test/test0010/hello-knight-native.sh @@ -37,7 +37,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/nested_struct.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/nested_struct.hex2 \ || exit 2 @@ -45,9 +45,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/nested_struct.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0010-knight-native-binary \ || exit 3 diff --git a/test/test0010/hello-x86.sh b/test/test0010/hello-x86.sh index 46b6803..3ab5079 100755 --- a/test/test0010/hello-x86.sh +++ b/test/test0010/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/nested_struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/nested_struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/nested_struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0010-x86-binary \ || exit 3 diff --git a/test/test0011/hello-aarch64.sh b/test/test0011/hello-aarch64.sh index ca2a067..3804d8c 100755 --- a/test/test0011/hello-aarch64.sh +++ b/test/test0011/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/break-do.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/break-do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/break-do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0011-aarch64-binary \ || exit 3 diff --git a/test/test0011/hello-amd64.sh b/test/test0011/hello-amd64.sh index 25b142c..f7b109b 100755 --- a/test/test0011/hello-amd64.sh +++ b/test/test0011/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/break-do.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/break-do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/break-do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0011-amd64-binary \ || exit 3 diff --git a/test/test0011/hello-armv7l.sh b/test/test0011/hello-armv7l.sh index bf3daee..326086a 100755 --- a/test/test0011/hello-armv7l.sh +++ b/test/test0011/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/break-do.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/break-do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/break-do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0011-armv7l-binary \ || exit 3 diff --git a/test/test0011/hello-knight-native.sh b/test/test0011/hello-knight-native.sh index f01cf13..24216e0 100755 --- a/test/test0011/hello-knight-native.sh +++ b/test/test0011/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/break-do.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/break-do.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/break-do.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0011-knight-native-binary \ || exit 3 diff --git a/test/test0011/hello-x86.sh b/test/test0011/hello-x86.sh index 7a7797b..21ce86f 100755 --- a/test/test0011/hello-x86.sh +++ b/test/test0011/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/break-do.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/break-do.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/break-do.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0011-x86-binary \ || exit 3 diff --git a/test/test0012/hello-aarch64.sh b/test/test0012/hello-aarch64.sh index 8c0d124..5ba6ea7 100755 --- a/test/test0012/hello-aarch64.sh +++ b/test/test0012/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/break-for.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/break-for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/break-for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0012-aarch64-binary \ || exit 3 diff --git a/test/test0012/hello-amd64.sh b/test/test0012/hello-amd64.sh index d31962d..5eb9829 100755 --- a/test/test0012/hello-amd64.sh +++ b/test/test0012/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/break-for.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/break-for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/break-for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0012-amd64-binary \ || exit 3 diff --git a/test/test0012/hello-armv7l.sh b/test/test0012/hello-armv7l.sh index 65a4b09..981ca3a 100755 --- a/test/test0012/hello-armv7l.sh +++ b/test/test0012/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/break-for.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/break-for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/break-for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0012-armv7l-binary \ || exit 3 diff --git a/test/test0012/hello-knight-native.sh b/test/test0012/hello-knight-native.sh index 8b83b26..73dc6d5 100755 --- a/test/test0012/hello-knight-native.sh +++ b/test/test0012/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/break-for.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/break-for.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/break-for.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0012-knight-native-binary \ || exit 3 diff --git a/test/test0012/hello-x86.sh b/test/test0012/hello-x86.sh index c2a995a..3a40a5c 100755 --- a/test/test0012/hello-x86.sh +++ b/test/test0012/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/break-for.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/break-for.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/break-for.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0012-x86-binary \ || exit 3 diff --git a/test/test0013/hello-aarch64.sh b/test/test0013/hello-aarch64.sh index ce25dc8..9350a26 100755 --- a/test/test0013/hello-aarch64.sh +++ b/test/test0013/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/break-while.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/break-while.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/break-while.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0013-aarch64-binary \ || exit 3 diff --git a/test/test0013/hello-amd64.sh b/test/test0013/hello-amd64.sh index 337ca5f..b881216 100755 --- a/test/test0013/hello-amd64.sh +++ b/test/test0013/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/break-while.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/break-while.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/break-while.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0013-amd64-binary \ || exit 3 diff --git a/test/test0013/hello-armv7l.sh b/test/test0013/hello-armv7l.sh index e34981f..ad75533 100755 --- a/test/test0013/hello-armv7l.sh +++ b/test/test0013/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/break-while.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/break-while.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/break-while.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0013-armv7l-binary \ || exit 3 diff --git a/test/test0013/hello-knight-native.sh b/test/test0013/hello-knight-native.sh index cfdd263..c5002ea 100755 --- a/test/test0013/hello-knight-native.sh +++ b/test/test0013/hello-knight-native.sh @@ -35,7 +35,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/break-while.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/break-while.hex2 \ || exit 2 @@ -43,9 +43,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/break-while.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0013-knight-native-binary \ || exit 3 diff --git a/test/test0013/hello-x86.sh b/test/test0013/hello-x86.sh index 7f2d547..ff30b09 100755 --- a/test/test0013/hello-x86.sh +++ b/test/test0013/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/break-while.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/break-while.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/break-while.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0013-x86-binary \ || exit 3 diff --git a/test/test0014/hello-aarch64.sh b/test/test0014/hello-aarch64.sh index a3ea7ed..dc5242d 100755 --- a/test/test0014/hello-aarch64.sh +++ b/test/test0014/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/basic_args.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/basic_args.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/basic_args.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0014-aarch64-binary \ || exit 3 diff --git a/test/test0014/hello-amd64.sh b/test/test0014/hello-amd64.sh index 4acb772..7819d3a 100755 --- a/test/test0014/hello-amd64.sh +++ b/test/test0014/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/basic_args.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/basic_args.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/basic_args.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0014-amd64-binary \ || exit 3 diff --git a/test/test0014/hello-armv7l.sh b/test/test0014/hello-armv7l.sh index 25e664a..59bddfd 100755 --- a/test/test0014/hello-armv7l.sh +++ b/test/test0014/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/basic_args.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/basic_args.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/basic_args.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0014-armv7l-binary \ || exit 3 diff --git a/test/test0014/hello-x86.sh b/test/test0014/hello-x86.sh index ca1e368..bc8b6d2 100755 --- a/test/test0014/hello-x86.sh +++ b/test/test0014/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/basic_args.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/basic_args.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/basic_args.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0014-x86-binary \ || exit 3 diff --git a/test/test0015/hello-aarch64.sh b/test/test0015/hello-aarch64.sh index c6b432f..48acb0a 100755 --- a/test/test0015/hello-aarch64.sh +++ b/test/test0015/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/file_read.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/file_read.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/file_read.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0015-aarch64-binary \ || exit 3 diff --git a/test/test0015/hello-amd64.sh b/test/test0015/hello-amd64.sh index d9c3dbb..2c39d24 100755 --- a/test/test0015/hello-amd64.sh +++ b/test/test0015/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/file_read.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/file_read.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/file_read.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0015-amd64-binary \ || exit 3 diff --git a/test/test0015/hello-armv7l.sh b/test/test0015/hello-armv7l.sh index 8c03122..810477a 100755 --- a/test/test0015/hello-armv7l.sh +++ b/test/test0015/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/file_read.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/file_read.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/file_read.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0015-armv7l-binary \ || exit 3 diff --git a/test/test0015/hello-x86.sh b/test/test0015/hello-x86.sh index 90b30af..963c067 100755 --- a/test/test0015/hello-x86.sh +++ b/test/test0015/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/file_read.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/file_read.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/file_read.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0015-x86-binary \ || exit 3 diff --git a/test/test0016/hello-aarch64.sh b/test/test0016/hello-aarch64.sh index a1e1e3e..e421bfc 100755 --- a/test/test0016/hello-aarch64.sh +++ b/test/test0016/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/file_write.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/file_write.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/file_write.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0016-aarch64-binary \ || exit 3 diff --git a/test/test0016/hello-amd64.sh b/test/test0016/hello-amd64.sh index c118e51..9f8d33e 100755 --- a/test/test0016/hello-amd64.sh +++ b/test/test0016/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/file_write.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/file_write.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/file_write.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0016-amd64-binary \ || exit 3 diff --git a/test/test0016/hello-armv7l.sh b/test/test0016/hello-armv7l.sh index 59b7e51..716d9ed 100755 --- a/test/test0016/hello-armv7l.sh +++ b/test/test0016/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/file_write.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/file_write.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/file_write.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0016-armv7l-binary \ || exit 3 diff --git a/test/test0016/hello-x86.sh b/test/test0016/hello-x86.sh index 2f10804..ff7b168 100755 --- a/test/test0016/hello-x86.sh +++ b/test/test0016/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/file_write.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/file_write.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/file_write.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0016-x86-binary \ || exit 3 diff --git a/test/test0017/hello-aarch64.sh b/test/test0017/hello-aarch64.sh index 72e4f1e..401ad13 100755 --- a/test/test0017/hello-aarch64.sh +++ b/test/test0017/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/memset.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/memset.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/memset.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0017-aarch64-binary \ || exit 3 diff --git a/test/test0017/hello-amd64.sh b/test/test0017/hello-amd64.sh index 6ff2dca..005d00a 100755 --- a/test/test0017/hello-amd64.sh +++ b/test/test0017/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/memset.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/memset.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/memset.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0017-amd64-binary \ || exit 3 diff --git a/test/test0017/hello-armv7l.sh b/test/test0017/hello-armv7l.sh index 9daae7c..9ce100e 100755 --- a/test/test0017/hello-armv7l.sh +++ b/test/test0017/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/memset.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/memset.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/memset.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0017-armv7l-binary \ || exit 3 diff --git a/test/test0017/hello-knight-native.sh b/test/test0017/hello-knight-native.sh index 211c13d..27c9e1c 100755 --- a/test/test0017/hello-knight-native.sh +++ b/test/test0017/hello-knight-native.sh @@ -37,7 +37,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/memset.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/memset.hex2 \ || exit 2 @@ -45,9 +45,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/memset.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0017-knight-native-binary \ || exit 3 diff --git a/test/test0017/hello-x86.sh b/test/test0017/hello-x86.sh index 90bd26a..67de167 100755 --- a/test/test0017/hello-x86.sh +++ b/test/test0017/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/memset.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/memset.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/memset.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0017-x86-binary \ || exit 3 diff --git a/test/test0018/hello-aarch64.sh b/test/test0018/hello-aarch64.sh index 14561d3..bc34406 100755 --- a/test/test0018/hello-aarch64.sh +++ b/test/test0018/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/math.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/math.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/math.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0018-aarch64-binary \ || exit 3 diff --git a/test/test0018/hello-amd64.sh b/test/test0018/hello-amd64.sh index a8e84b7..f723498 100755 --- a/test/test0018/hello-amd64.sh +++ b/test/test0018/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/math.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/math.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/math.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0018-amd64-binary \ || exit 3 diff --git a/test/test0018/hello-armv7l.sh b/test/test0018/hello-armv7l.sh index 3c7d0c3..f877e75 100755 --- a/test/test0018/hello-armv7l.sh +++ b/test/test0018/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/math.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/math.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/math.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0018-armv7l-binary \ || exit 3 diff --git a/test/test0018/hello-knight-native.sh b/test/test0018/hello-knight-native.sh index d1a9c8c..848b397 100755 --- a/test/test0018/hello-knight-native.sh +++ b/test/test0018/hello-knight-native.sh @@ -38,7 +38,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native-file.M1 \ -f ${TMPDIR}/math.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/math.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/math.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0018-knight-native-binary \ || exit 3 diff --git a/test/test0018/hello-x86.sh b/test/test0018/hello-x86.sh index b5d6448..3d0e39c 100755 --- a/test/test0018/hello-x86.sh +++ b/test/test0018/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/math.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/math.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/math.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0018-x86-binary \ || exit 3 diff --git a/test/test0019/hello-aarch64.sh b/test/test0019/hello-aarch64.sh index d94552b..90d6e35 100755 --- a/test/test0019/hello-aarch64.sh +++ b/test/test0019/hello-aarch64.sh @@ -41,7 +41,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/getopt.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/getopt.hex2 \ || exit 2 @@ -50,9 +50,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/getopt.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0019-aarch64-binary \ || exit 3 diff --git a/test/test0019/hello-amd64.sh b/test/test0019/hello-amd64.sh index 7083a85..e58cbcc 100755 --- a/test/test0019/hello-amd64.sh +++ b/test/test0019/hello-amd64.sh @@ -41,7 +41,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/getopt.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/getopt.hex2 \ || exit 2 @@ -50,9 +50,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/getopt.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0019-amd64-binary \ || exit 3 diff --git a/test/test0019/hello-armv7l.sh b/test/test0019/hello-armv7l.sh index 95511a2..8257724 100755 --- a/test/test0019/hello-armv7l.sh +++ b/test/test0019/hello-armv7l.sh @@ -41,7 +41,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/getopt.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/getopt.hex2 \ || exit 2 @@ -50,9 +50,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/getopt.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0019-armv7l-binary \ || exit 3 diff --git a/test/test0019/hello-x86.sh b/test/test0019/hello-x86.sh index a38e858..d1952e3 100755 --- a/test/test0019/hello-x86.sh +++ b/test/test0019/hello-x86.sh @@ -41,7 +41,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/getopt.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/getopt.hex2 \ || exit 2 @@ -50,9 +50,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/getopt.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0019-x86-binary \ || exit 3 diff --git a/test/test0020/hello-aarch64.sh b/test/test0020/hello-aarch64.sh index 4db61d6..1b99e56 100755 --- a/test/test0020/hello-aarch64.sh +++ b/test/test0020/hello-aarch64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0020-aarch64-binary \ || exit 3 diff --git a/test/test0020/hello-amd64.sh b/test/test0020/hello-amd64.sh index ff73ce3..7a03519 100755 --- a/test/test0020/hello-amd64.sh +++ b/test/test0020/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0020-amd64-binary \ || exit 3 diff --git a/test/test0020/hello-armv7l.sh b/test/test0020/hello-armv7l.sh index 9a3e125..fe62cf6 100755 --- a/test/test0020/hello-armv7l.sh +++ b/test/test0020/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0020-armv7l-binary \ || exit 3 diff --git a/test/test0020/hello-knight-native.sh b/test/test0020/hello-knight-native.sh index 41d8ea6..ca8de97 100755 --- a/test/test0020/hello-knight-native.sh +++ b/test/test0020/hello-knight-native.sh @@ -37,7 +37,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/struct.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -45,9 +45,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/struct.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0020-knight-native-binary \ || exit 3 diff --git a/test/test0020/hello-x86.sh b/test/test0020/hello-x86.sh index b1f02a0..a9b7817 100755 --- a/test/test0020/hello-x86.sh +++ b/test/test0020/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/struct.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/struct.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/struct.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0020-x86-binary \ || exit 3 diff --git a/test/test0021/hello-aarch64.sh b/test/test0021/hello-aarch64.sh index 03282f2..41f6179 100755 --- a/test/test0021/hello-aarch64.sh +++ b/test/test0021/hello-aarch64.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/chdir.M1 \ -f ${TMPDIR}/chdir-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/chdir.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/chdir.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0021-aarch64-binary \ || exit 4 diff --git a/test/test0021/hello-amd64.sh b/test/test0021/hello-amd64.sh index cbc9ee9..24a0d06 100755 --- a/test/test0021/hello-amd64.sh +++ b/test/test0021/hello-amd64.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/chdir.M1 \ -f ${TMPDIR}/chdir-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/chdir.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/chdir.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0021-amd64-binary \ || exit 4 diff --git a/test/test0021/hello-armv7l.sh b/test/test0021/hello-armv7l.sh index 9290203..0ee4673 100755 --- a/test/test0021/hello-armv7l.sh +++ b/test/test0021/hello-armv7l.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/chdir.M1 \ -f ${TMPDIR}/chdir-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/chdir.hex2 \ || exit 3 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/chdir.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0021-armv7l-binary \ || exit 4 diff --git a/test/test0021/hello-x86.sh b/test/test0021/hello-x86.sh index 629d4e1..7a01163 100755 --- a/test/test0021/hello-x86.sh +++ b/test/test0021/hello-x86.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/chdir.M1 \ -f ${TMPDIR}/chdir-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/chdir.hex2 \ || exit 3 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/chdir.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0021-x86-binary \ || exit 4 diff --git a/test/test0022/hello-aarch64.sh b/test/test0022/hello-aarch64.sh index 5b9a3ad..63c7933 100755 --- a/test/test0022/hello-aarch64.sh +++ b/test/test0022/hello-aarch64.sh @@ -50,7 +50,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/continue.M1 \ -f ${TMPDIR}/continue-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/continue.hex2 \ || exit 3 @@ -59,9 +59,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/continue.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0022-aarch64-binary \ || exit 4 diff --git a/test/test0022/hello-amd64.sh b/test/test0022/hello-amd64.sh index c0d6036..a7a1fc9 100755 --- a/test/test0022/hello-amd64.sh +++ b/test/test0022/hello-amd64.sh @@ -50,7 +50,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/continue.M1 \ -f ${TMPDIR}/continue-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/continue.hex2 \ || exit 3 @@ -59,9 +59,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/continue.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0022-amd64-binary \ || exit 4 diff --git a/test/test0022/hello-armv7l.sh b/test/test0022/hello-armv7l.sh index 7e3cbd3..0aeb015 100755 --- a/test/test0022/hello-armv7l.sh +++ b/test/test0022/hello-armv7l.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/continue.M1 \ -f ${TMPDIR}/continue-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/continue.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/continue.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0022-armv7l-binary \ || exit 4 diff --git a/test/test0022/hello-x86.sh b/test/test0022/hello-x86.sh index 4928f78..1d6dcd4 100755 --- a/test/test0022/hello-x86.sh +++ b/test/test0022/hello-x86.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/continue.M1 \ -f ${TMPDIR}/continue-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/continue.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/continue.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0022-x86-binary \ || exit 4 diff --git a/test/test0023/hello-aarch64.sh b/test/test0023/hello-aarch64.sh index fd8e0dc..ecc2d97 100755 --- a/test/test0023/hello-aarch64.sh +++ b/test/test0023/hello-aarch64.sh @@ -47,7 +47,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/fseek.M1 \ -f ${TMPDIR}/fseek-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/fseek.hex2 \ || exit 3 @@ -56,9 +56,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/fseek.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0023-aarch64-binary \ || exit 4 diff --git a/test/test0023/hello-amd64.sh b/test/test0023/hello-amd64.sh index 18f193d..53c90b1 100755 --- a/test/test0023/hello-amd64.sh +++ b/test/test0023/hello-amd64.sh @@ -47,7 +47,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/fseek.M1 \ -f ${TMPDIR}/fseek-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/fseek.hex2 \ || exit 3 @@ -56,9 +56,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/fseek.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0023-amd64-binary \ || exit 4 diff --git a/test/test0023/hello-armv7l.sh b/test/test0023/hello-armv7l.sh index 418bcbe..0d9c837 100755 --- a/test/test0023/hello-armv7l.sh +++ b/test/test0023/hello-armv7l.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/fseek.M1 \ -f ${TMPDIR}/fseek-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/fseek.hex2 \ || exit 3 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/fseek.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0023-armv7l-binary \ || exit 4 diff --git a/test/test0023/hello-x86.sh b/test/test0023/hello-x86.sh index d600cf4..b7270ad 100755 --- a/test/test0023/hello-x86.sh +++ b/test/test0023/hello-x86.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/fseek.M1 \ -f ${TMPDIR}/fseek-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/fseek.hex2 \ || exit 3 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/fseek.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0023-x86-binary \ || exit 4 diff --git a/test/test0024/hello-aarch64.sh b/test/test0024/hello-aarch64.sh index 5325e04..7cbd9a5 100755 --- a/test/test0024/hello-aarch64.sh +++ b/test/test0024/hello-aarch64.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/aarch64/aarch64_defs.M1 \ -f M2libc/aarch64/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0024-aarch64-binary \ || exit 3 diff --git a/test/test0024/hello-amd64.sh b/test/test0024/hello-amd64.sh index d735ea2..a72c437 100755 --- a/test/test0024/hello-amd64.sh +++ b/test/test0024/hello-amd64.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0024-amd64-binary \ || exit 3 diff --git a/test/test0024/hello-armv7l.sh b/test/test0024/hello-armv7l.sh index ea81998..8d81b35 100755 --- a/test/test0024/hello-armv7l.sh +++ b/test/test0024/hello-armv7l.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0024-armv7l-binary \ || exit 3 diff --git a/test/test0024/hello-knight-native.sh b/test/test0024/hello-knight-native.sh index e422c10..1ac7d53 100755 --- a/test/test0024/hello-knight-native.sh +++ b/test/test0024/hello-knight-native.sh @@ -33,7 +33,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native.M1 \ -f ${TMPDIR}/return.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -41,9 +41,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/return.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x0 \ + --base-address 0x0 \ -o test/results/test0024-knight-native-binary \ || exit 3 diff --git a/test/test0024/hello-x86.sh b/test/test0024/hello-x86.sh index df5e3f5..3d1effd 100755 --- a/test/test0024/hello-x86.sh +++ b/test/test0024/hello-x86.sh @@ -33,7 +33,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-core.M1 \ -f ${TMPDIR}/return.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/return.hex2 \ || exit 2 @@ -42,9 +42,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/return.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0024-x86-binary \ || exit 3 diff --git a/test/test0025/hello-aarch64.sh b/test/test0025/hello-aarch64.sh index 0731a3b..9e90f15 100755 --- a/test/test0025/hello-aarch64.sh +++ b/test/test0025/hello-aarch64.sh @@ -47,7 +47,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/array.M1 \ -f ${TMPDIR}/array-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/array.hex2 \ || exit 2 @@ -56,9 +56,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/array.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0025-aarch64-binary \ || exit 3 diff --git a/test/test0025/hello-amd64.sh b/test/test0025/hello-amd64.sh index d7ab55e..1103fe1 100755 --- a/test/test0025/hello-amd64.sh +++ b/test/test0025/hello-amd64.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/array.M1 \ -f ${TMPDIR}/array-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/array.hex2 \ || exit 2 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/array.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0025-amd64-binary \ || exit 3 diff --git a/test/test0025/hello-armv7l.sh b/test/test0025/hello-armv7l.sh index 728dfc2..ccba7e3 100755 --- a/test/test0025/hello-armv7l.sh +++ b/test/test0025/hello-armv7l.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/array.M1 \ -f ${TMPDIR}/array-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/array.hex2 \ || exit 2 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/array.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0025-armv7l-binary \ || exit 3 diff --git a/test/test0025/hello-x86.sh b/test/test0025/hello-x86.sh index e0f8913..69ad3c7 100755 --- a/test/test0025/hello-x86.sh +++ b/test/test0025/hello-x86.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/array.M1 \ -f ${TMPDIR}/array-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/array.hex2 \ || exit 2 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/array.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0025-x86-binary \ || exit 3 diff --git a/test/test0100/hello-aarch64.sh b/test/test0100/hello-aarch64.sh index f5d0ae0..66ced76 100755 --- a/test/test0100/hello-aarch64.sh +++ b/test/test0100/hello-aarch64.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/blood-elf.M1 \ -f ${TMPDIR}/blood-elf-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/blood-elf.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64.hex2 \ -f ${TMPDIR}/blood-elf.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0100-aarch64-binary \ || exit 4 diff --git a/test/test0100/hello-amd64.sh b/test/test0100/hello-amd64.sh index 9f410da..b780d55 100755 --- a/test/test0100/hello-amd64.sh +++ b/test/test0100/hello-amd64.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/blood-elf.M1 \ -f ${TMPDIR}/blood-elf-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/blood-elf.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/blood-elf.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0100-amd64-binary \ || exit 4 diff --git a/test/test0100/hello-armv7l.sh b/test/test0100/hello-armv7l.sh index 4d1fe8c..aebc75b 100755 --- a/test/test0100/hello-armv7l.sh +++ b/test/test0100/hello-armv7l.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/blood-elf.M1 \ -f ${TMPDIR}/blood-elf-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/blood-elf.hex2 \ || exit 3 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/blood-elf.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0100-armv7l-binary \ || exit 4 diff --git a/test/test0100/hello-x86.sh b/test/test0100/hello-x86.sh index d10ec81..5477892 100755 --- a/test/test0100/hello-x86.sh +++ b/test/test0100/hello-x86.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/blood-elf.M1 \ -f ${TMPDIR}/blood-elf-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/blood-elf.hex2 \ || exit 3 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/blood-elf.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0100-x86-binary \ || exit 4 diff --git a/test/test0101/hello-aarch64.sh b/test/test0101/hello-aarch64.sh index 534c1cf..89243ec 100755 --- a/test/test0101/hello-aarch64.sh +++ b/test/test0101/hello-aarch64.sh @@ -51,7 +51,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/hex2_linker.M1 \ -f ${TMPDIR}/hex2_linker-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/hex2_linker.hex2 \ || exit 3 @@ -60,9 +60,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/hex2_linker.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0101-aarch64-binary \ || exit 4 diff --git a/test/test0101/hello-amd64.sh b/test/test0101/hello-amd64.sh index 637fc6d..dd03bf3 100755 --- a/test/test0101/hello-amd64.sh +++ b/test/test0101/hello-amd64.sh @@ -51,7 +51,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/hex2_linker.M1 \ -f ${TMPDIR}/hex2_linker-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/hex2_linker.hex2 \ || exit 3 @@ -60,9 +60,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/hex2_linker.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0101-amd64-binary \ || exit 4 diff --git a/test/test0101/hello-armv7l.sh b/test/test0101/hello-armv7l.sh index 105e12a..317d623 100755 --- a/test/test0101/hello-armv7l.sh +++ b/test/test0101/hello-armv7l.sh @@ -50,7 +50,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/hex2_linker.M1 \ -f ${TMPDIR}/hex2_linker-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/hex2_linker.hex2 \ || exit 3 @@ -59,9 +59,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/hex2_linker.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0101-armv7l-binary \ || exit 4 diff --git a/test/test0101/hello-x86.sh b/test/test0101/hello-x86.sh index 7e606c1..3583e74 100755 --- a/test/test0101/hello-x86.sh +++ b/test/test0101/hello-x86.sh @@ -50,7 +50,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/hex2_linker.M1 \ -f ${TMPDIR}/hex2_linker-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/hex2_linker.hex2 \ || exit 3 @@ -59,9 +59,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/hex2_linker.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0101-x86-binary \ || exit 4 diff --git a/test/test0102/hello-aarch64.sh b/test/test0102/hello-aarch64.sh index 6d09d52..6095dd3 100755 --- a/test/test0102/hello-aarch64.sh +++ b/test/test0102/hello-aarch64.sh @@ -53,7 +53,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/M1-macro.M1 \ -f ${TMPDIR}/M1-macro-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/M1-macro.hex2 \ || exit 3 @@ -62,9 +62,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/M1-macro.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0102-aarch64-binary \ || exit 4 @@ -81,7 +81,7 @@ then -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-core.M1 \ -f test/test0100/test.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o test/test0102/proof \ || exit 7 diff --git a/test/test0102/hello-amd64.sh b/test/test0102/hello-amd64.sh index ce65e63..e6312f3 100755 --- a/test/test0102/hello-amd64.sh +++ b/test/test0102/hello-amd64.sh @@ -53,7 +53,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/M1-macro.M1 \ -f ${TMPDIR}/M1-macro-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/M1-macro.hex2 \ || exit 3 @@ -62,9 +62,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/M1-macro.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0102-amd64-binary \ || exit 4 @@ -81,7 +81,7 @@ then -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-core.M1 \ -f test/test0100/test.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o test/test0102/proof \ || exit 7 diff --git a/test/test0102/hello-armv7l.sh b/test/test0102/hello-armv7l.sh index 52fb9d7..7f8c725 100755 --- a/test/test0102/hello-armv7l.sh +++ b/test/test0102/hello-armv7l.sh @@ -52,7 +52,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/M1-macro.M1 \ -f ${TMPDIR}/M1-macro-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/M1-macro.hex2 \ || exit 3 @@ -61,9 +61,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/M1-macro.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0102-armv7l-binary \ || exit 4 @@ -80,7 +80,7 @@ then -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-core.M1 \ -f test/test0100/test.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o test/test0102/proof \ || exit 7 diff --git a/test/test0102/hello-knight-posix.sh b/test/test0102/hello-knight-posix.sh index cb342d0..d4ff6bd 100755 --- a/test/test0102/hello-knight-posix.sh +++ b/test/test0102/hello-knight-posix.sh @@ -71,7 +71,7 @@ then -f test/common_x86/x86_defs.M1 \ -f test/common_x86/libc-core.M1 \ -f test/test0100/test.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o test/test0102/proof \ || exit 7 diff --git a/test/test0102/hello-x86.sh b/test/test0102/hello-x86.sh index 991e1e2..3c67f4b 100755 --- a/test/test0102/hello-x86.sh +++ b/test/test0102/hello-x86.sh @@ -52,7 +52,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/M1-macro.M1 \ -f ${TMPDIR}/M1-macro-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/M1-macro.hex2 \ || exit 3 @@ -61,9 +61,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/M1-macro.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0102-x86-binary \ || exit 4 @@ -80,7 +80,7 @@ then -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-core.M1 \ -f test/test0100/test.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o test/test0102/proof \ || exit 7 diff --git a/test/test0103/hello-aarch64.sh b/test/test0103/hello-aarch64.sh index d65e01b..9182149 100755 --- a/test/test0103/hello-aarch64.sh +++ b/test/test0103/hello-aarch64.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/get_machine.M1 \ -f ${TMPDIR}/get_machine-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/get_machine.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/get_machine.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0103-aarch64-binary \ || exit 4 diff --git a/test/test0103/hello-amd64.sh b/test/test0103/hello-amd64.sh index 32ed9e4..bd0b484 100755 --- a/test/test0103/hello-amd64.sh +++ b/test/test0103/hello-amd64.sh @@ -49,7 +49,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/get_machine.M1 \ -f ${TMPDIR}/get_machine-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/get_machine.hex2 \ || exit 3 @@ -58,9 +58,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/get_machine.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0103-amd64-binary \ || exit 4 diff --git a/test/test0103/hello-armv7l.sh b/test/test0103/hello-armv7l.sh index 44f9bf9..b0295e2 100755 --- a/test/test0103/hello-armv7l.sh +++ b/test/test0103/hello-armv7l.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/get_machine.M1 \ -f ${TMPDIR}/get_machine-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/get_machine.hex2 \ || exit 3 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/get_machine.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0103-armv7l-binary \ || exit 4 diff --git a/test/test0103/hello-x86.sh b/test/test0103/hello-x86.sh index f406048..c9f6d05 100755 --- a/test/test0103/hello-x86.sh +++ b/test/test0103/hello-x86.sh @@ -48,7 +48,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/get_machine.M1 \ -f ${TMPDIR}/get_machine-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/get_machine.hex2 \ || exit 3 @@ -57,9 +57,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/get_machine.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0103-x86-binary \ || exit 4 diff --git a/test/test0104/hello-aarch64.sh b/test/test0104/hello-aarch64.sh index 088093b..d2db015 100755 --- a/test/test0104/hello-aarch64.sh +++ b/test/test0104/hello-aarch64.sh @@ -51,7 +51,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/kaem.M1 \ -f ${TMPDIR}/kaem-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/kaem.hex2 \ || exit 3 @@ -60,9 +60,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/kaem.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0104-aarch64-binary \ || exit 4 diff --git a/test/test0104/hello-amd64.sh b/test/test0104/hello-amd64.sh index ab9a150..057f208 100755 --- a/test/test0104/hello-amd64.sh +++ b/test/test0104/hello-amd64.sh @@ -51,7 +51,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/kaem.M1 \ -f ${TMPDIR}/kaem-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/kaem.hex2 \ || exit 3 @@ -60,9 +60,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/kaem.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0104-amd64-binary \ || exit 4 diff --git a/test/test0104/hello-armv7l.sh b/test/test0104/hello-armv7l.sh index 4791816..fa15a32 100755 --- a/test/test0104/hello-armv7l.sh +++ b/test/test0104/hello-armv7l.sh @@ -50,7 +50,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/kaem.M1 \ -f ${TMPDIR}/kaem-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/kaem.hex2 \ || exit 3 @@ -59,9 +59,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/kaem.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0104-armv7l-binary \ || exit 4 diff --git a/test/test0104/hello-x86.sh b/test/test0104/hello-x86.sh index ef51050..df0ac74 100755 --- a/test/test0104/hello-x86.sh +++ b/test/test0104/hello-x86.sh @@ -50,7 +50,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/kaem.M1 \ -f ${TMPDIR}/kaem-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/kaem.hex2 \ || exit 3 @@ -59,9 +59,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/kaem.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0104-x86-binary \ || exit 4 diff --git a/test/test0105/hello-aarch64.sh b/test/test0105/hello-aarch64.sh index dadf273..2de7f4f 100755 --- a/test/test0105/hello-aarch64.sh +++ b/test/test0105/hello-aarch64.sh @@ -56,7 +56,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/lisp.M1 \ -f ${TMPDIR}/lisp-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/lisp.hex2 \ || exit 3 @@ -65,9 +65,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/lisp.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0105-aarch64-binary \ || exit 4 diff --git a/test/test0105/hello-amd64.sh b/test/test0105/hello-amd64.sh index e4601f4..25da7fc 100755 --- a/test/test0105/hello-amd64.sh +++ b/test/test0105/hello-amd64.sh @@ -56,7 +56,7 @@ M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/lisp.M1 \ -f ${TMPDIR}/lisp-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/lisp.hex2 \ || exit 3 @@ -65,9 +65,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/lisp.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0105-amd64-binary \ || exit 4 diff --git a/test/test0105/hello-armv7l.sh b/test/test0105/hello-armv7l.sh index 3b14783..04d9b95 100755 --- a/test/test0105/hello-armv7l.sh +++ b/test/test0105/hello-armv7l.sh @@ -55,7 +55,7 @@ M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/lisp.M1 \ -f ${TMPDIR}/lisp-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/lisp.hex2 \ || exit 3 @@ -64,9 +64,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/lisp.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0105-armv7l-binary \ || exit 4 diff --git a/test/test0105/hello-x86.sh b/test/test0105/hello-x86.sh index 3d61cdb..ad3230b 100755 --- a/test/test0105/hello-x86.sh +++ b/test/test0105/hello-x86.sh @@ -55,7 +55,7 @@ M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/lisp.M1 \ -f ${TMPDIR}/lisp-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/lisp.hex2 \ || exit 3 @@ -64,9 +64,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86-debug.hex2 \ -f ${TMPDIR}/lisp.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0105-x86-binary \ || exit 4 diff --git a/test/test0106/hello-aarch64.sh b/test/test0106/hello-aarch64.sh index ff1f533..bf50e60 100755 --- a/test/test0106/hello-aarch64.sh +++ b/test/test0106/hello-aarch64.sh @@ -46,7 +46,7 @@ M1 \ -f M2libc/aarch64/libc-full.M1 \ -f ${TMPDIR}/cc0.M1 \ -f ${TMPDIR}/cc0-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/cc0.hex2 \ || exit 2 @@ -55,9 +55,9 @@ M1 \ hex2 \ -f M2libc/aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/cc0.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test0106-aarch64-binary \ || exit 3 diff --git a/test/test0106/hello-amd64.sh b/test/test0106/hello-amd64.sh index 7dd24fd..b191bc4 100755 --- a/test/test0106/hello-amd64.sh +++ b/test/test0106/hello-amd64.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/amd64/amd64_defs.M1 \ -f M2libc/amd64/libc-full.M1 \ -f ${TMPDIR}/cc0.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/cc0.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/amd64/ELF-amd64.hex2 \ -f ${TMPDIR}/cc0.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test0106-amd64-binary \ || exit 3 diff --git a/test/test0106/hello-armv7l.sh b/test/test0106/hello-armv7l.sh index fe7aff9..6261aff 100755 --- a/test/test0106/hello-armv7l.sh +++ b/test/test0106/hello-armv7l.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/armv7l/armv7l_defs.M1 \ -f M2libc/armv7l/libc-full.M1 \ -f ${TMPDIR}/cc0.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/cc0.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/armv7l/ELF-armv7l.hex2 \ -f ${TMPDIR}/cc0.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test0106-armv7l-binary \ || exit 3 diff --git a/test/test0106/hello-knight-native.sh b/test/test0106/hello-knight-native.sh index 40be0d1..ebcfcc5 100755 --- a/test/test0106/hello-knight-native.sh +++ b/test/test0106/hello-knight-native.sh @@ -38,7 +38,7 @@ M1 \ -f test/common_knight/knight-native_defs.M1 \ -f test/common_knight/libc-native-file.M1 \ -f ${TMPDIR}/cc0.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ -o ${TMPDIR}/cc0.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ # Resolve all linkages hex2 \ -f ${TMPDIR}/cc0.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-native \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test0106-knight-native-binary \ || exit 3 diff --git a/test/test0106/hello-x86.sh b/test/test0106/hello-x86.sh index 76fa9bc..b26b292 100755 --- a/test/test0106/hello-x86.sh +++ b/test/test0106/hello-x86.sh @@ -37,7 +37,7 @@ M1 \ -f M2libc/x86/x86_defs.M1 \ -f M2libc/x86/libc-full.M1 \ -f ${TMPDIR}/cc0.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/cc0.hex2 \ || exit 2 @@ -46,9 +46,9 @@ M1 \ hex2 \ -f M2libc/x86/ELF-x86.hex2 \ -f ${TMPDIR}/cc0.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test0106-x86-binary \ || exit 3 diff --git a/test/test1000/hello-aarch64.sh b/test/test1000/hello-aarch64.sh index c0ee567..9166ab9 100755 --- a/test/test1000/hello-aarch64.sh +++ b/test/test1000/hello-aarch64.sh @@ -63,7 +63,7 @@ M1 \ -f test/common_aarch64/libc-core.M1 \ -f ${TMPDIR}/cc.M1 \ -f ${TMPDIR}/cc-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ -o ${TMPDIR}/cc.hex2 \ || exit 3 @@ -72,9 +72,9 @@ M1 \ hex2 \ -f test/common_aarch64/ELF-aarch64-debug.hex2 \ -f ${TMPDIR}/cc.hex2 \ - --LittleEndian \ + --little-endian \ --architecture aarch64 \ - --BaseAddress 0x400000 \ + --base-address 0x400000 \ -o test/results/test1000-aarch64-binary \ || exit 4 diff --git a/test/test1000/hello-amd64.sh b/test/test1000/hello-amd64.sh index a470ae1..5ad4845 100755 --- a/test/test1000/hello-amd64.sh +++ b/test/test1000/hello-amd64.sh @@ -63,7 +63,7 @@ M1 \ -f test/common_amd64/libc-core.M1 \ -f ${TMPDIR}/cc.M1 \ -f ${TMPDIR}/cc-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ -o ${TMPDIR}/cc.hex2 \ || exit 3 @@ -72,9 +72,9 @@ M1 \ hex2 \ -f test/common_amd64/ELF-amd64-debug.hex2 \ -f ${TMPDIR}/cc.hex2 \ - --LittleEndian \ + --little-endian \ --architecture amd64 \ - --BaseAddress 0x00600000 \ + --base-address 0x00600000 \ -o test/results/test1000-amd64-binary \ || exit 4 diff --git a/test/test1000/hello-armv7l.sh b/test/test1000/hello-armv7l.sh index 513aed4..eaee81a 100755 --- a/test/test1000/hello-armv7l.sh +++ b/test/test1000/hello-armv7l.sh @@ -62,7 +62,7 @@ M1 \ -f test/common_armv7l/libc-core.M1 \ -f ${TMPDIR}/cc.M1 \ -f ${TMPDIR}/cc-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ -o ${TMPDIR}/cc.hex2 \ || exit 3 @@ -71,9 +71,9 @@ M1 \ hex2 \ -f test/common_armv7l/ELF-armv7l-debug.hex2 \ -f ${TMPDIR}/cc.hex2 \ - --LittleEndian \ + --little-endian \ --architecture armv7l \ - --BaseAddress 0x10000 \ + --base-address 0x10000 \ -o test/results/test1000-armv7l-binary \ || exit 4 diff --git a/test/test1000/hello-knight-posix.sh b/test/test1000/hello-knight-posix.sh index 566bbe8..5cd0838 100755 --- a/test/test1000/hello-knight-posix.sh +++ b/test/test1000/hello-knight-posix.sh @@ -54,7 +54,7 @@ M1 \ -f test/common_knight/knight_defs.M1 \ -f test/common_knight/libc-core.M1 \ -f ${TMPDIR}/cc.M1 \ - --BigEndian \ + --big-endian \ --architecture knight-posix \ -o ${TMPDIR}/cc.hex2 \ || exit 2 @@ -63,9 +63,9 @@ M1 \ hex2 \ -f test/common_knight/ELF-knight.hex2 \ -f ${TMPDIR}/cc.hex2 \ - --BigEndian \ + --big-endian \ --architecture knight-posix \ - --BaseAddress 0x00 \ + --base-address 0x00 \ -o test/results/test1000-knight-posix-binary \ || exit 3 diff --git a/test/test1000/hello-x86.sh b/test/test1000/hello-x86.sh index 69a2275..7a8f474 100755 --- a/test/test1000/hello-x86.sh +++ b/test/test1000/hello-x86.sh @@ -62,7 +62,7 @@ M1 \ -f test/common_x86/libc-core.M1 \ -f ${TMPDIR}/cc.M1 \ -f ${TMPDIR}/cc-footer.M1 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ -o ${TMPDIR}/cc.hex2 \ || exit 3 @@ -71,9 +71,9 @@ M1 \ hex2 \ -f test/common_x86/ELF-i386-debug.hex2 \ -f ${TMPDIR}/cc.hex2 \ - --LittleEndian \ + --little-endian \ --architecture x86 \ - --BaseAddress 0x8048000 \ + --base-address 0x8048000 \ -o test/results/test1000-x86-binary \ || exit 4