XNepster / oxygen-for-p500

Automatically exported from code.google.com/p/oxygen-for-p500
https://github.com/lixar/robolectric
0 stars 0 forks source link

OS builds for ArmV5 insted of ArmV6 #146

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
adfad666 pointed out P500 are been built without the proper optimizations since 
GB.

https://github.com/popdog123/android_build/blob/ics/core/combo/arch/arm/armv6-vf
p.mk

arch_variant_cflags := \
    -mcpu=$(TARGET_ARCH_VARIANT_CPU) \
    -mfloat-abi=softfp \
    -mfpu=$(TARGET_ARCH_VARIANT_FPU) \
    -D__ARM_ARCH_5__ \
    -D__ARM_ARCH_5T__ \
    -D__ARM_ARCH_5E__ \
    -D__ARM_ARCH_5TE__

https://github.com/androidarmv6/android_build/blob/jellybean/core/combo/arch/arm
/armv6-vfp.mk

arch_variant_cflags := \
    -march=armv6k \
    -mtune=arm1136j-s  \
    -D__ARM_ARCH_6__ \
    -D__ARM_ARCH_6J__ \
    -D__ARM_ARCH_6K__

Original issue reported on code.google.com by hcgonzalezpr on 24 Nov 2012 at 6:00

GoogleCodeExporter commented 9 years ago
Holy crap... I didn't notice this...

Original comment by mihai.an...@gmail.com on 25 Nov 2012 at 9:18

GoogleCodeExporter commented 9 years ago

Original comment by mihai.an...@gmail.com on 25 Nov 2012 at 9:18

GoogleCodeExporter commented 9 years ago
Here's adfad666 original post qoute: 
( http://forum.xda-developers.com/showthread.php?t=1994568 )

"You may have noticed I've been rather quiet recently. I've been spending my 
time trying to get Firefox-OS working. It's based on Android's HAL so it should 
work, but currently the Mozilla part is still not compatible with ARMv6 
devices. Nothing I try will get it to boot.

However going through the build files, I came across some files that are quite 
different to CyanogenMod, potentially we may have been creating inferior builds 
since even the Gingerbread days!!!
"

Original comment by hcgonzalezpr on 25 Nov 2012 at 11:27

GoogleCodeExporter commented 9 years ago

Original comment by mihai.an...@gmail.com on 26 Dec 2012 at 9:39