From: Igor Muratov <migor@altlinux.org> To: ALT Linux Sisyphus discussion list <sisyphus@lists.altlinux.org> Subject: Re: [sisyphus] Oracle 10g на ALT Linux Server 4.0 Date: Thu, 26 Jul 2007 12:19:02 -0500 Message-ID: <46A8D786.1040109@altlinux.org> (raw) In-Reply-To: <679044850707260959k5f3cddedrdb19eb1108d534f8@mail.gmail.com> Damir Shayhutdinov пишет: >> Путь к либам? А смысл? Все пути уже и так указаны. Более того, gcc >> чудесно находит в $ORACLE_HOME/lib любые библиотеки _КРОМЕ_ этих двух. >> > да и их он находит. Просто они не в той последовательности перечислены > или указаны в неявных зависимостях. > > Поставьте -Wl,--no-as-needed, сделайте очистку дерева и соберите > снова, направив весь вывод сборки в лог. После чего найдите на каком > файле валится (когда пишется каких символов не хватает, до двоеточия > идет имя файла) и посмотрите, с какими опциями линковался этот файл. > Если в списке -Wl,--no-as-needed отсутствует - значит у Оракла совсем > кривые Makefile и их надо патчить еще, чтобы понять, как же все-таки > передать -Wl,--no-as-needed в строку линковки злосчастной библиотеки. > Ok. Я решил взять строку которую генерит makefile и поиграться с ней. Только я взял следующий пример из списка т.к. он существенно меньше и проще. Вот то что показывает makefile gcc -o ocrconfig -L/opt/oracle/product/10g//lib/ -L/opt/oracle/product/10g/lib/ -L/opt/oracle/product/10g/lib/stubs/ -L/usr/lib -lirc /opt/oracle/product/10g/srvm/lib/sprotc.o /opt/oracle/product/10g/srvm/lib/protconf.o /opt/oracle/product/10g/srvm/lib/prot.o -locr10 -locrb10 -locrutl10 -lhasgen10 -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclntsh -lskgxn2 -lcore10 `cat /opt/oracle/product/10g/lib/sysliblist` -lclntsh `cat /opt/oracle/product/10g/lib/sysliblist` -Wl,-rpath,/opt/oracle/product/10g/lib -lm `cat /opt/oracle/product/10g/lib/sysliblist` -lm -lm -L/opt/oracle/product/10g/lib /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqcnum' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxncin' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqvnds' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxncdel' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxndrg' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqtsz' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxntrace' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqname' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnsdr' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqanum' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqgrp' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnprdata' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnsrg' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnqat' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnpbdata' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnpstat' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnever' /opt/oracle/product/10g//lib//libhasgen10.so: undefined reference to `skgxnreg' collect2: ld returned 1 exit status make: *** [ocrconfig] Ошибка 1 Упрощаем строку gcc и раскрываем то что спрятано в `cat <filename>` и получаем следующее. gcc -o ocrconfig -L/opt/oracle/product/10g//lib/ -L/opt/oracle/product/10g/lib/ -L/opt/oracle/product/10g/lib/stubs/ -L/usr/lib -lirc /opt/oracle/product/10g/srvm/lib/sprotc.o /opt/oracle/product/10g/srvm/lib/protconf.o /opt/oracle/product/10g/srvm/lib/prot.o -locr10 -locrb10 -locrutl10 -lhasgen10 -lsnls10 -lnls10 -lcore10 -lxml10 -lunls10 -lclntsh -lskgxn2 -lclntsh -ldl -lm -lpthread -lnsl -Wl,-rpath,/opt/oracle/product/10g/lib Добавляю в эту троку -Wl,--no-as-needed и получаю все ту же ошибку. Может я что-то делаю не правильно? > _______________________________________________ > Sisyphus mailing list > Sisyphus@lists.altlinux.org > https://lists.altlinux.org/mailman/listinfo/sisyphus -- With best regards Igor Muratov
next prev parent reply other threads:[~2007-07-26 17:19 UTC|newest] Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top 2007-07-26 17:27 Igor Muratov 2007-07-26 12:39 ` Epiphanov Sergei 2007-07-26 17:45 ` Igor Muratov 2007-07-26 12:54 ` Gennadiy Redko 2007-07-26 17:58 ` Igor Muratov 2007-07-26 13:00 ` Epiphanov Sergei 2007-07-26 12:41 ` Epiphanov Sergei 2007-07-26 17:55 ` Igor Muratov 2007-07-26 13:05 ` Damir Shayhutdinov 2007-07-26 13:10 ` Gennadiy Redko 2007-07-26 13:21 ` Damir Shayhutdinov 2007-07-26 13:21 ` Aleksey Novodvorsky 2007-07-26 13:48 ` Gennadiy Redko 2007-07-26 13:56 ` Aleksey Novodvorsky 2007-07-26 13:59 ` Sergey 2007-07-26 15:44 ` Igor Muratov 2007-07-26 13:08 ` Motsyo Gennadi aka Drool 2007-07-26 18:11 ` Igor Muratov 2007-07-26 14:15 ` Андрей Черепанов 2007-07-26 15:34 ` Igor Muratov 2007-07-26 15:39 ` Андрей Черепанов 2007-07-27 10:11 ` Igor Muratov 2007-07-29 17:04 ` Dmitry V. Levin 2007-07-30 2:31 ` Igor Muratov 2007-07-26 15:40 ` Damir Shayhutdinov 2007-07-26 15:47 ` Igor Muratov 2007-07-26 15:52 ` Gennadiy Redko 2007-07-26 16:07 ` Igor Muratov 2007-07-26 16:34 ` Gennadiy Redko 2007-07-26 16:40 ` Igor Muratov 2007-07-26 16:59 ` Damir Shayhutdinov 2007-07-26 17:19 ` Igor Muratov [this message] 2007-07-26 17:32 ` Damir Shayhutdinov 2007-07-26 17:38 ` Igor Muratov 2007-07-26 18:15 ` Igor Muratov 2007-07-27 10:14 ` Igor Muratov 2007-07-26 14:50 ` Gennadiy Redko 2007-07-26 14:59 ` Gennadiy Redko 2007-07-26 15:21 ` Gennadiy Redko 2007-07-26 15:34 ` Igor Muratov 2007-07-27 15:41 ` Igor Muratov 2007-07-27 15:47 ` Valery V. Inozemtsev 2007-07-27 16:12 ` Igor Muratov 2007-07-27 16:14 ` Valery V. Inozemtsev 2007-07-30 7:02 ` Андрей Черепанов 2007-08-02 15:24 ` Igor Muratov 2007-08-02 15:59 ` Андрей Черепанов 2007-08-03 6:28 ` Андрей Черепанов 2007-08-03 8:48 ` Dmitry V. Levin 2007-08-03 9:52 ` Андрей Черепанов 2007-08-03 9:54 ` Dmitry V. Levin 2007-08-03 15:46 ` Igor Muratov 2007-08-03 19:26 ` Igor Muratov 2007-08-03 22:59 ` Michael Shigorin 2007-07-27 18:38 ` Igor Muratov 2007-08-02 16:01 ` Igor Muratov 2007-08-02 19:08 ` Anton Farygin 2007-08-02 19:40 ` Igor Muratov 2007-08-09 18:11 ` Igor Muratov 2007-08-09 22:34 ` Aleksey Novodvorsky 2007-08-15 15:58 ` Anton Farygin
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=46A8D786.1040109@altlinux.org \ --to=migor@altlinux.org \ --cc=sisyphus@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 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