On 27 February 2013 22:09, Anthony Green <gr...@moxielogic.com> wrote: > --- a/configure > +++ b/configure > @@ -955,6 +955,7 @@ mips-softmmu \ > mipsel-softmmu \ > mips64-softmmu \ > mips64el-softmmu \ > +moxie-softmmu \ > or32-softmmu \ > ppc-softmmu \ > ppcemb-softmmu \ > @@ -3898,7 +3899,7 @@ target_arch2=`echo $target | cut -d '-' -f 1` > target_bigendian="no" > > case "$target_arch2" in > - > armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) > + > armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|moxie|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb) > target_bigendian=yes > ;; > esac > @@ -4003,6 +4004,11 @@ case "$target_arch2" in > echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak > target_long_alignment=8 > ;; > + moxie) > + TARGET_ARCH=moxie > + bflt="yes"
You don't have linux-user support so why are you defining a variable that says you support bFLT executables in linux-user? > + target_phys_bits=32 target_phys_bits is long dead; drop this. What are your target's alignment requirements -- do you need to set any of the target_*_alignment variables? -- PMM