| 257 | |
| 258 | |
| 259 | class Archx86(Arch): |
| 260 | arch = 'x86' |
| 261 | command_prefix = 'i686-linux-android' |
| 262 | arch_cflags = [ |
| 263 | '-march=i686', |
| 264 | '-mssse3', |
| 265 | '-mfpmath=sse', |
| 266 | '-m32', |
| 267 | '-fPIC', |
| 268 | ] |
| 269 | |
| 270 | |
| 271 | class Archx86_64(Arch): |
no outgoing calls