.
- , int add(int a, int b); extern int c;.
- , int add(int a, int b) { return a+b; } int c;.
int c; , , #, "c". : ( 3 4...) , c, . ? ( () .)
extern int c; int c; .
("duplicate" compilations for armv6 and armv7 are absolutely normal. The two architectures are compiled and linked separately and then compiled into a "bold" executable file. Loosely, armv6 works on "old" devices (up to 3GS) and armv7 works on "new" devices (3GS +). New devices can also run armv6, but armv7 is much faster.)
source
share