From: Led <led@altlinux.ru> To: ALT Devel discussion list <devel@lists.altlinux.org> Subject: Re: [devel] Q: non-i586 ix86 Date: Tue, 28 Feb 2006 11:41:44 +0200 Message-ID: <200602281141.45027.led@altlinux.ru> (raw) In-Reply-To: <20060227202021.GA12868@lks.home> В сообщении от 27 февраля 2006 22:20 Konstantin A. Lepikhov написал(a): > Hi! > > Monday 27, at 06:36:27 PM you wrote: > > <цитата от="Dmitry V. Levin"> > > > > > On Mon, Feb 27, 2006 at 06:17:02PM +0300, Konstantin A. Lepikhov wrote: > > > [...] > > > > > >> Меня интересует практический момент > > >> введения --target pentium4 для autotools в контексте его использования > > >> для > > >> сборки xvid. > > > > > > Если выдернуть этот момент из контекста xvid, то > > > $ fgrep -A1 pentium4 /usr/share/automake/config.sub > > > pentium4) > > > basic_machine=i786-pc > > > > ну этот-то знает, его патчили ;) а вот автодетектилку xvid похоже нет ;) > > > > PS Так и знал, что придется самому залезть в пакет. > > Итак, вторая часть марлезонского балета. Просмотр исходников выявил > следующее: > 1) см. configure.in (автодетект архитектуры) > > dnl > ========================================================================== > dnl Check for the ranlib program to generate static library index > dnl > ========================================================================== > > AC_PROG_RANLIB > > dnl > ========================================================================== > dnl > dnl This part looks for: > dnl > dnl ARCHITECTURE : The platform architecture > dnl - IA32 for mmx, mmx-ext, mmx2, sse assembly > dnl - IA64 > dnl - PPC for PowerPC assembly routines > dnl - GENERIC for plain C sources only > dnl > dnl BUS: Address bus size (in bits) > dnl - 32 > dnl - 64 > dnl > dnl ENDIANNESS: I think you can guess what this thing means :-) > dnl - LITTLE_ENDIAN > dnl - BIG_ENDIAN > dnl > dnl > ========================================================================== > > dnl > dnl Looking what sources have to be compiled according to the CPU type > dnl > > ARCHITECTURE="" > > AC_MSG_CHECKING([for whether to use assembly code]) > if test x"$assembly" = x"yes" ; then > AC_MSG_RESULT([yes]) > AC_MSG_CHECKING([for architecture type]) > case "$target_cpu" in > i[[3456]]86) > AC_MSG_RESULT(ia32) > ARCHITECTURE="IA32" > ;; > x86_64) > AC_MSG_RESULT(x86_64) > ARCHITECTURE="X86_64" > ;; > powerpc) > AC_MSG_RESULT(PowerPC) > ARCHITECTURE="PPC" > ;; > ia64) > AC_MSG_RESULT(ia64) > ARCHITECTURE="IA64" > ;; > *) > AC_MSG_RESULT($target_cpu) > ARCHITECTURE="GENERIC" > ;; > esac > else > AC_MSG_RESULT([no]) > ARCHITECTURE="GENERIC" > fi > > ... > даже мне понятно, что pentium4 тут явно определится как GENERIC, Вы себе льстите:) pentium4 определяется как i786, следовательно, для него будет вариант i[[3456]]86) AC_MSG_RESULT(ia32) ARCHITECTURE="IA32" ;; > следовательно для него будет assembly=no + скрипту явно пофиг что будет в > --target - i386 или i686. Т.е. ExclusiveArch тут без надобности. > > 2) см. src/util/x86_asm/cpuid.asm и src/xvid.c/grep detect_cpu_flags(void) > - даже мне понятно, что возможности cpu определяются в runtime, т.е. смысла > что-то подкручивать при сборке я еще раз не вижу. Да, здесь вы правы - сам вчера ещё раз "прошёлся" - по идее, должно определятся в runtime (в более ранних версиях xvid этого не было, а в 1.1 внимательно не смотрел, виноват), потому и залил вчера в incoming сборку с "безусловным" --enable-assembly. > > Итого - кончайте весь этот тупой тред и пакуйте xvid нормально т.е. без > всяких --disable-assembly! :) Так и сделал:) В любом случае - спасибо. Без ваших "пинаний" не залез бы повторно "парсить" configure:) Но xvid был приведён только как пример:) -- Led.
next prev parent reply other threads:[~2006-02-28 9:41 UTC|newest] Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top 2006-02-27 12:24 Dmitry V. Levin 2006-02-27 12:52 ` Alexey I. Froloff 2006-02-27 12:56 ` Valery V. Inozemtsev 2006-02-27 13:16 ` Dmitry V. Levin 2006-02-28 11:33 ` Sergey Y. Afonin 2006-03-02 19:09 ` Michael Shigorin 2006-03-02 19:07 ` [devel] Q: non-i586 ix86 [kernel] Michael Shigorin 2006-02-27 13:04 ` [devel] Q: non-i586 ix86 Alexey Gladkov 2006-02-27 13:13 ` Led 2006-02-27 13:21 ` Konstantin A. Lepikhov 2006-02-27 13:42 ` Led 2006-02-27 13:47 ` Konstantin A. Lepikhov 2006-02-27 14:07 ` Led 2006-02-27 14:27 ` Konstantin A. Lepikhov 2006-02-27 14:49 ` Led 2006-02-27 14:53 ` Konstantin A. Lepikhov 2006-02-27 15:05 ` Led 2006-02-27 15:16 ` Andrei Bulava 2006-02-27 15:17 ` Konstantin A. Lepikhov 2006-02-27 15:22 ` Dmitry V. Levin 2006-02-27 15:36 ` Konstantin A. Lepikhov 2006-02-27 16:06 ` Led 2006-02-27 20:20 ` Konstantin A. Lepikhov 2006-02-27 22:29 ` Mikhail Zabaluev 2006-02-27 22:40 ` Konstantin A. Lepikhov 2006-02-28 8:57 ` Денис Смирнов 2006-02-28 9:30 ` Led 2006-02-28 9:41 ` Led [this message] 2006-02-28 9:59 ` Alexey I. Froloff 2006-02-28 10:06 ` Led 2006-02-28 11:41 ` Sergey Y. Afonin 2006-02-27 22:22 ` Mikhail Zabaluev 2006-02-27 13:13 ` Dmitry V. Levin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=200602281141.45027.led@altlinux.ru \ --to=led@altlinux.ru \ --cc=devel@lists.altlinux.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
ALT Linux Team development discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \ devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru public-inbox-index devel Example config snippet for mirrors. Newsgroup available over NNTP: nntp://lore.altlinux.org/org.altlinux.lists.devel AGPL code for this site: git clone https://public-inbox.org/public-inbox.git