ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] сравнение зависимостей
@ 2006-06-19  8:15 Alexey I. Froloff
  2006-06-19  9:34 ` Damir Shayhutdinov
  2006-06-19 13:16 ` Dmitry V. Levin
  0 siblings, 2 replies; 5+ messages in thread
From: Alexey I. Froloff @ 2006-06-19  8:15 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 826 bytes --]

Вот интересно, если зависимости noarch пакетов, собранных на
разных архитектурах должны быть одинаковые, это же правило
наверно можно применить и к arch-зависимым пакетам:

$ rpm -qR vim-console | LC_ALL=C sort | sed -e 's, \+$,,; s,(64bit)$,,; s,()$,,' > vim-console.deps.x86_64
...
$ rpm -qR vim-console | LC_ALL=C sort | sed -e 's, \+$,,; s,(64bit)$,,; s,()$,,' > vim-console.deps.i586
$ diff -U0 vim-console.deps.i586 vim-console.deps.x86_64
--- vim-console.deps.i586       2006-06-19 12:08:15 +0400
+++ vim-console.deps.x86_64     2006-06-19 12:08:41 +0400
@@ -7,3 +7 @@
-libc.so.6(GLIBC_2.0)
-libc.so.6(GLIBC_2.1)
-libc.so.6(GLIBC_2.2)
+libc.so.6(GLIBC_2.2.5)
@@ -11,2 +9 @@
-libdl.so.2(GLIBC_2.0)
-libdl.so.2(GLIBC_2.1)
+libdl.so.2(GLIBC_2.2.5)

Интересно, почему так?

-- 
Regards,
Sir Raorn.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] сравнение зависимостей
  2006-06-19  8:15 [devel] сравнение зависимостей Alexey I. Froloff
@ 2006-06-19  9:34 ` Damir Shayhutdinov
  2006-06-19 13:16 ` Dmitry V. Levin
  1 sibling, 0 replies; 5+ messages in thread
From: Damir Shayhutdinov @ 2006-06-19  9:34 UTC (permalink / raw)
  To: ALT Devel discussion list

19.06.06, Alexey I. Froloff<raorn@immo.ru> написал(а):
> Вот интересно, если зависимости noarch пакетов, собранных на
> разных архитектурах должны быть одинаковые, это же правило
> наверно можно применить и к arch-зависимым пакетам:
> @@ -7,3 +7 @@
> -libc.so.6(GLIBC_2.0)
> -libc.so.6(GLIBC_2.1)
> -libc.so.6(GLIBC_2.2)
> +libc.so.6(GLIBC_2.2.5)
> @@ -11,2 +9 @@
> -libdl.so.2(GLIBC_2.0)
> -libdl.so.2(GLIBC_2.1)
> +libdl.so.2(GLIBC_2.2.5)
>
> Интересно, почему так?
Либси по-разному скомпилированы :)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] сравнение зависимостей
  2006-06-19  8:15 [devel] сравнение зависимостей Alexey I. Froloff
  2006-06-19  9:34 ` Damir Shayhutdinov
@ 2006-06-19 13:16 ` Dmitry V. Levin
  2006-06-19 13:28   ` Alexey I. Froloff
  1 sibling, 1 reply; 5+ messages in thread
From: Dmitry V. Levin @ 2006-06-19 13:16 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 978 bytes --]

On Mon, Jun 19, 2006 at 12:15:03PM +0400, Alexey I. Froloff wrote:
> Вот интересно, если зависимости noarch пакетов, собранных на
> разных архитектурах должны быть одинаковые, это же правило
> наверно можно применить и к arch-зависимым пакетам:
> 
> $ rpm -qR vim-console | LC_ALL=C sort | sed -e 's, \+$,,; s,(64bit)$,,; s,()$,,' > vim-console.deps.x86_64
> ...
> $ rpm -qR vim-console | LC_ALL=C sort | sed -e 's, \+$,,; s,(64bit)$,,; s,()$,,' > vim-console.deps.i586
> $ diff -U0 vim-console.deps.i586 vim-console.deps.x86_64
> --- vim-console.deps.i586       2006-06-19 12:08:15 +0400
> +++ vim-console.deps.x86_64     2006-06-19 12:08:41 +0400
> @@ -7,3 +7 @@
> -libc.so.6(GLIBC_2.0)
> -libc.so.6(GLIBC_2.1)
> -libc.so.6(GLIBC_2.2)
> +libc.so.6(GLIBC_2.2.5)
> @@ -11,2 +9 @@
> -libdl.so.2(GLIBC_2.0)
> -libdl.so.2(GLIBC_2.1)
> +libdl.so.2(GLIBC_2.2.5)
> 
> Интересно, почему так?

В частности, у glibc ABI для каждой архитектуры свой.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 191 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] сравнение зависимостей
  2006-06-19 13:16 ` Dmitry V. Levin
@ 2006-06-19 13:28   ` Alexey I. Froloff
  2006-06-19 17:15     ` Dmitry V. Levin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey I. Froloff @ 2006-06-19 13:28 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 345 bytes --]

* Dmitry V. Levin <ldv@> [060619 17:23]:
> > Интересно, почему так?
> В частности, у glibc ABI для каждой архитектуры свой.
С чем это связано?  Кто ещё так делает?

Теоретически, разницу ABI одной библиотеки на разных архитектурах
можно описать.  Значит (опять же теоретически) можно сделать
такую проверку.

-- 
Regards,
Sir Raorn.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] сравнение зависимостей
  2006-06-19 13:28   ` Alexey I. Froloff
@ 2006-06-19 17:15     ` Dmitry V. Levin
  0 siblings, 0 replies; 5+ messages in thread
From: Dmitry V. Levin @ 2006-06-19 17:15 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 374 bytes --]

On Mon, Jun 19, 2006 at 05:28:47PM +0400, Alexey I. Froloff wrote:
> * Dmitry V. Levin <ldv@> [060619 17:23]:
> > > Интересно, почему так?
> > В частности, у glibc ABI для каждой архитектуры свой.
> С чем это связано?

У glibc весьма нетривиальный и местами архитектурно-зависимый ABI.

> Кто ещё так делает?

Те, у кого архитектурно-зависимый ABI.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 191 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-06-19 17:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-19  8:15 [devel] сравнение зависимостей Alexey I. Froloff
2006-06-19  9:34 ` Damir Shayhutdinov
2006-06-19 13:16 ` Dmitry V. Levin
2006-06-19 13:28   ` Alexey I. Froloff
2006-06-19 17:15     ` Dmitry V. Levin

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