//Gives no asm: #include "fixed_generic.h" #if defined (ARM5E_ASM) #include "fixed_arm5e.h" #elif defined (ARM4_ASM) || defined (CPU_ARM) #warning "Error arm4 enabled" #include "fixed_arm4.h" #elif defined (ARM5E_ASM) #include "fixed_arm5e.h" #elif defined (BFIN_ASM) #include "fixed_bfin.h" #endif CC misc.c In file included from misc.h:71, from misc.c:41: arch.h:85:2: warning: #warning "Error arm4 enabled" misc.c:227:1: warning: "RAND_MAX" redefined In file included from misc.c:38: /media/hdb2/home/freqmod/dwnl/ipl/rockbox/rockbox/firmware/include/stdlib.h:33:1: warning: this is the location of the previous definition misc.c: In function `speex_rand_vec': misc.c:232: warning: passing arg 2 of `speex_rand' makes pointer from integer without a cast misc.c: At top level: misc.c:236: warning: unused parameter 'ch' //gives asm: #include "fixed_generic.h" #include "fixed_arm4.h"