# HG changeset patch # User reimar # Date 1164477513 0 # Node ID 7124c26f3db3d76e8ab06fb8953bacf1840d8107 # Parent 14ed01d30f11cbe5535bf9b808655f7c4bf70dd6 Add generic target that allow compiling without any assembler or otherwise architecture specific code (except endiannes of course). Usage example: ./configure --target=generic-linux diff -r 14ed01d30f11 -r 7124c26f3db3 configure --- a/configure Sat Nov 25 17:58:14 2006 +0000 +++ b/configure Sat Nov 25 17:58:33 2006 +0000 @@ -1423,6 +1423,16 @@ _optimizing='' ;; + generic) + _def_arch='#define ARCH_GENERIC 1' + _target_arch='TARGET_ARCH_GENERIC = yes' + iproc='' + proc='' + _march='' + _mcpu='' + _optimizing='' + ;; + *) echo "The architecture of your CPU ($host_arch) is not supported by this configure script" echo "It seems nobody has ported MPlayer to your OS or CPU type yet."