Changes between Version 130 and Version 131 of AndroidPort


Ignore:
Timestamp:
Jan 19, 2012, 6:03:47 PM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v130 v131  
    128128The target device supports the ARM NEON SIMD instruction set. In turn, it does not support the x86 SSE SIMD instruction set. Hence, it would be relevant to 1) identify portions of the code that use x86 SSE and port them to ARM NEON, and 2) identify portions of the code that lends itself well to SIMD processing, but doesn't currently target either instruction set, and port them to both, and thereby achieve a speedup on both ARM and x86 architectures.
    129129
    130 The target device has a dual-core processor. Unfortunately, 0 A.D. doesn't really take advantage of multicore systems yet. This could improve with multithreaded AIs and pathfinding. 
    131 
    132 
     130The target device has a dual-core processor. Unfortunately, 0 A.D. doesn't really take advantage of multicore systems yet. This could improve with multithreaded AIs and pathfinding.
    133131
    134132== Implementation ==
     
    305303{{{
    306304HOSTTYPE=arm ./update-workspaces.sh --gles
    307 
    308 PATH=~/android/toolchain/bin:$PATH CXX=arm-linux-androideabi-g++ make config=debug -k pyrogenesis
     305PATH=~/android/toolchain/bin:$PATH
     306CXX=arm-linux-androideabi-g++ make config=debug -k pyrogenesis
    309307}}}
    310308 1. See loads of build errors.