Mercurial > mplayer.hg
comparison configure @ 21221:7124c26f3db3
Add generic target that allow compiling without any assembler or otherwise
architecture specific code (except endiannes of course).
Usage example: ./configure --target=generic-linux
author | reimar |
---|---|
date | Sat, 25 Nov 2006 17:58:33 +0000 |
parents | 2f1d3f01a244 |
children | 8a52c3139152 |
comparison
equal
deleted
inserted
replaced
21220:14ed01d30f11 | 21221:7124c26f3db3 |
---|---|
1415 | 1415 |
1416 vax) | 1416 vax) |
1417 _def_arch='#define ARCH_VAX 1' | 1417 _def_arch='#define ARCH_VAX 1' |
1418 _target_arch='TARGET_ARCH_VAX = yes' | 1418 _target_arch='TARGET_ARCH_VAX = yes' |
1419 iproc='vax' | 1419 iproc='vax' |
1420 proc='' | |
1421 _march='' | |
1422 _mcpu='' | |
1423 _optimizing='' | |
1424 ;; | |
1425 | |
1426 generic) | |
1427 _def_arch='#define ARCH_GENERIC 1' | |
1428 _target_arch='TARGET_ARCH_GENERIC = yes' | |
1429 iproc='' | |
1420 proc='' | 1430 proc='' |
1421 _march='' | 1431 _march='' |
1422 _mcpu='' | 1432 _mcpu='' |
1423 _optimizing='' | 1433 _optimizing='' |
1424 ;; | 1434 ;; |