ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] Qt and g++3.2
@ 2002-09-17 17:55 Mikhail Yakshin
  2002-09-17 20:21 ` Ruslan Balkin
  2002-09-18  5:38 ` А.Л. Клютченя
  0 siblings, 2 replies; 4+ messages in thread
From: Mikhail Yakshin @ 2002-09-17 17:55 UTC (permalink / raw)
  To: sisyphus

Приветствую всех!

Есть такая вот проблема. Поставил на домашнюю машину наконец-то gcc3.2 - 
теперь при выполнении configure не находит Qt, вернее выпадает на 
компиляции вот такой вот маленькой тестовой програмки:

===============================================================

#include "confdefs.h"
#include <qglobal.h>
#include <qapplication.h>
#include <qcursor.h>
#include <qstylefactory.h>
#include <private/qucomextra_p.h>
#if ! (QT_VERSION >= 303)
#error 1
#endif

int main() {
     (void)QStyleFactory::create(QString::null);
     QCursor c(Qt::WhatsThisCursor);
     return 0;
}

===============================================================

Строчка компиляции:

===============================================================

c++ -o conftest -O2 -fno-exceptions -fno-check-new 
-I/usr/lib/qt3/include -I/usr/X11R6/include  -DQT_THREAD_SUPPORT 
-D_REENTRANT  -L/usr/lib/qt3/lib -L/usr/X11R6/lib   conftest.C  -lqt-mt 
-lpng -lz -lm -ljpeg -ldl  -lXext -lX11 -lSM -lICE  -lresolv -lpthread

===============================================================

Результат:

===============================================================

/home/GreyCat/tmp/ccxYXvOY.o: In function `main':
/home/GreyCat/tmp/ccxYXvOY.o(.text+0x11): undefined reference to 
`QString::null'
/home/GreyCat/tmp/ccxYXvOY.o(.text+0x16): undefined reference to 
`QStyleFactory::create(QString const&)'
/home/GreyCat/tmp/ccxYXvOY.o(.text+0x20): undefined reference to 
`QCursor::QCursor[in-charge](int)'
/home/GreyCat/tmp/ccxYXvOY.o(.text+0x28): undefined reference to 
`QCursor::~QCursor [in-charge]()'
collect2: ld returned 1 exit status

===============================================================

Итого - gcc3.2 почему-то в упор отказывается видеть в libqt-mt 
соответствующие имена. Если сделать select-gcc 2.96 - все замечательно 
собирается. В чем проблема? Нужна пересборка Qt или просто что-то 
доконфигурить в gcc3.2?

От gcc3.2 стоят пакеты:

libstdc++3.2-3.2.1-alt0.3
libstdc++3.2-devel-3.2.1-alt0.3
libgcc3.2-3.2.1-alt0.3
gcc3.2-3.2.1-alt0.3
cpp3.2-3.2.1-alt0.3
gcc3.2-c++-3.2.1-alt0.3

Qt3 - пакетом

libqt3-3.0.5-alt5

WBR, GreyCat.



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

* Re: [sisyphus] Qt and g++3.2
  2002-09-17 17:55 [sisyphus] Qt and g++3.2 Mikhail Yakshin
@ 2002-09-17 20:21 ` Ruslan Balkin
  2002-09-18  5:38 ` А.Л. Клютченя
  1 sibling, 0 replies; 4+ messages in thread
From: Ruslan Balkin @ 2002-09-17 20:21 UTC (permalink / raw)
  To: sisyphus

On Tue, 17 Sep 2002 21:55:29 +0400
Mikhail Yakshin wrote:

> Итого - gcc3.2 почему-то в упор отказывается видеть в libqt-mt 
> соответствующие имена. Если сделать select-gcc 2.96 - все замечательно 
> собирается. В чем проблема? Нужна пересборка Qt или просто что-то 
> доконфигурить в gcc3.2?
Насколько я знаю, проблема будет с любой версией gcc3. Пересобрать qt
при помощи gcc3 - все должно работать.
AFAIK, в gcc3 изменили формат mangle.

-- 
С уважением,
Балькин Руслан.


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

* Re: [sisyphus] Qt and g++3.2
  2002-09-17 17:55 [sisyphus] Qt and g++3.2 Mikhail Yakshin
  2002-09-17 20:21 ` Ruslan Balkin
@ 2002-09-18  5:38 ` А.Л. Клютченя
  2002-09-18  5:56   ` А.Л. Клютченя
  1 sibling, 1 reply; 4+ messages in thread
From: А.Л. Клютченя @ 2002-09-18  5:38 UTC (permalink / raw)
  To: sisyphus

Qt использует либу libgcc++... которая меняется при смене 
компилятора, посему, если нет compat-библиотеки в системе, то её 
надо пересобрать новым компилятором. Впрочем, это касается всех 
библиотек использующих стандартную библиотеку c++ коллекции 
компиляторов (GCC)

-- 
ВсехБлаг!       А. Л. Клютченя
 mail:	asoneofus@kde.ru
 www:	http://www.asoneofus.nm.ru
 icq:	113679387



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

* Re: [sisyphus] Qt and g++3.2
  2002-09-18  5:38 ` А.Л. Клютченя
@ 2002-09-18  5:56   ` А.Л. Клютченя
  0 siblings, 0 replies; 4+ messages in thread
From: А.Л. Клютченя @ 2002-09-18  5:56 UTC (permalink / raw)
  To: sisyphus

18 Сентябрь 2002 09:38, А.Л. Клютченя написал:
пардон, 
... либу libstdc++
-- 
ВсехБлаг!       А. Л. Клютченя
 mail:	asoneofus@kde.ru
 www:	http://www.asoneofus.nm.ru
 icq:	113679387



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

end of thread, other threads:[~2002-09-18  5:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-17 17:55 [sisyphus] Qt and g++3.2 Mikhail Yakshin
2002-09-17 20:21 ` Ruslan Balkin
2002-09-18  5:38 ` А.Л. Клютченя
2002-09-18  5:56   ` А.Л. Клютченя

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/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 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git