- Qt ошибка: collect2: error: ld returned 1 exit status
- «[Error] ld returned 1 exit status» постоянно, от разных реализаций функций, делающих скрин
- 3 ответа 3
- can’t build: collect2: error: ld returned 1 exit status #42
- Comments
- AddaxSoft commented Jun 6, 2018 •
- ithilgore commented Jun 6, 2018
- AddaxSoft commented Jun 6, 2018
- ithilgore commented Jun 6, 2018
- AddaxSoft commented Jun 6, 2018
- ithilgore commented Jun 6, 2018
- ithilgore commented Jun 6, 2018
- AddaxSoft commented Jun 6, 2018
- ithilgore commented Jun 6, 2018
- ithilgore commented Jun 6, 2018
- AddaxSoft commented Jun 6, 2018
- ithilgore commented Jun 7, 2018
- AddaxSoft commented Jun 7, 2018
- AddaxSoft commented Jun 7, 2018
- AddaxSoft commented Jun 7, 2018 •
- linux assembly «collect2: ld returned 1 exit status»
- 1 Answer 1
- Using C Library/runtime
- collect2: error: ld returned 1 exit status (-lcudnn)
- Edit 1
- Problem
- Description
- What I tried
- 2 Answers 2
Qt ошибка: collect2: error: ld returned 1 exit status
Kubuntu LTS 18.04 новая, Qt 5.11
Всем привет! Поставил новую Kubuntu и Qt, сделал новый проект, только с MainWindow. Сначала ругался линковщик, вылечил установив
и еще время от времени вылезает такая ошибка
Ошибка где-то выше должна быть. Полный выхлоп дай.
Покажи что выдает.
Зачем от рута запускал креатор? Делай теперь
Сделал. Ничего не выдает В некоторых проектах были проблемы с девайсами, система не давала работать с ними без прав. Запускал и без рута, ошибка остается
Дай полный вывод с ошибкой.
Извиняюсь, надо было сразу дать инфу из консоли сборки
Народ, я нашел ответ, кому интересно почитать или различается система, здесь: http://doc.qt.io/qt-5/linux.html , а кому некогда, для Debian/Ubuntu (apt-get):
Cпасибо за помощь
Причина в том, что Qt 5 раздулся, разжирел, у него сильно усложнился деплой и теперь он требует OpenGL там, где он нахер не нужен.
Если ты попробуешь заюзать Qt 4, то оно просто соберётся. Так как зависимости от OpenGL там нет.
Все верно, недавно ставил Qt на Lubuntu.
Из соображения — лишь бы было,
поставил, вроде, версию 5.4. Оно там не требовалось.
Источник
«[Error] ld returned 1 exit status» постоянно, от разных реализаций функций, делающих скрин
Понадобилась функция, делающая скриншот в программе и сохраняющая его в файл. Я нашёл несколько таких функций, но каждая (!) из них при добавлении в программу заставляет её выдавать при компиляции вот такую ошибку:
C:\<папка_с_файлом.cpp>\collect2.exe [Error] ld returned 1 exit status
Причём других ошибок нет, или я их исправляю. Обычно такая ошибка происходит, когда у меня код уже скомпилирован и запущен .exe, и я пытаюсь ещё раз его скомпилировать и запустить. Но, разумеется, я всё перепробовал, даже запускал код на другом компе (но тоже в Dev) — такая же ошибка.
Если убрать эту функцию, то код снова нормально работает. Подскажите, что делать?
Вот текущий код с одним из вариантов функции, делающий скриншот:
3 ответа 3
ld returned 1 exit status обычно означает, что у Вас в коде есть недопустимые символы. Они могут там быть даже если их вроде и не видно, например, русская буква е от английской e на первый взгляд ничем не отличается. Обычно это результат копипасты. Так как функция небольшая, то самый простой вариант для Вас решить проблему — переписать ее (вернее, всю копипасту) руками.
Update Так же, проблемой может быть неподключенная библиотека. Нужно посмотреть по списку подключенных заголовочных файлов, к каким библиотекам они относятся и в натсройках проекта добавить все отсутствующие библиотеки.
Проблемой может быть и какой-то неподключенный заголовочный файл. Тут надо смотреть по названиям используемых функций и искать заголовки, где они объявлены.
Источник
can’t build: collect2: error: ld returned 1 exit status #42
Comments
AddaxSoft commented Jun 6, 2018 •
I’m on:
Linux HOST 4.13.0-1013-gcp #17-Ubuntu SMP Fri Apr 6 08:30:45 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
I’ve already installed the following dependencies:
apt-get install git build-essential libssl-dev -y
and cloned the latest git from here.
The text was updated successfully, but these errors were encountered:
ithilgore commented Jun 6, 2018
Please try compiling with openssl 1.1 and above. You are probably linking with an older version of openssl
AddaxSoft commented Jun 6, 2018
sanity check: you mean libssl-dev 1.1?
ithilgore commented Jun 6, 2018
Yes, but since your ubuntu version might not have 1.1 as a package, you can also try getting it directly from https://www.openssl.org/
AddaxSoft commented Jun 6, 2018
I compiled and installed openssl 1.1, but
I’m getting this error on ./configure now:
ithilgore commented Jun 6, 2018
Did you also try uninstalling the libssl-dev package from previously to avoid any conflicts?
ithilgore commented Jun 6, 2018
Also make sure that in /etc/ld.so.conf, there is a «/usr/local/lib» before the end of the file.
Then: sudo ldconfig
AddaxSoft commented Jun 6, 2018
same error, hmmm do I have to rebuild and install openssl after I remove ssllib?
ithilgore commented Jun 6, 2018
You can also try installing openssl using the —prefix /usr when you invoke ./config so that it’s not at the /usr/local/ (might also need to change the —openssldir) See: https://github.com/openssl/openssl/blob/master/INSTALL
ithilgore commented Jun 6, 2018
One more thing to try is when you run ./configure from Ncrack try specifying the openssl library location using —with-openssl=
AddaxSoft commented Jun 6, 2018
wow I spent so much time on this and I still cannot get it right. I did compile openssl 1.1 and installed it but it doesn’t recognize its own library.
On one box I have:
on the other where nrack fails I have:
What am I missing here? why is openssl not recognizing its own library making ncrack fail
ithilgore commented Jun 7, 2018
Kali should be installing openssl 1.1 and above when you install libssl-dev — that is why it works there. The latest version of Ubuntu 18.14 also now installs openssl 1.1.g (https://packages.ubuntu.com/bionic/libssl-dev) when you install the libssl-dev package (and Ncrack compiles out of the box there without having to install openssl manually)
AddaxSoft commented Jun 7, 2018
but I’m not on kali, I’m on Ubuntu (see uname -a command outputs above)
AddaxSoft commented Jun 7, 2018
after all the efforts I’m still getting the same issue.
my ldconfig -v reports ssllib1.1 being in the path of libs
openssl version -a reports the correct version, yet ncrack still fails to configure with error:
AddaxSoft commented Jun 7, 2018 •
half solution:
compile and install openssl 1.1 from source
then go back to ncrack dir, and run make clean
after it’s done run the following:
Источник
linux assembly «collect2: ld returned 1 exit status»
I entered the source code on a web site of online coding.
But I got error below the source code.
I think I omitted «main».
Since I learned Intel assmbly, I don’t know how to fix it.
Could you help me?
Thank you for helping me in advance.
/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/crt1.o: In function _start’: (.text+0x18): undefined reference to main’ collect2: ld returned 1 exit status
1 Answer 1
If you are just using GCC as a linker and don’t care about the C runtime then you can exclude it (as Jester pointed out) by passing -nostdlib to gcc . You then need to provide a _start symbol so the code would look like:
You’d assemble and link it like this:
Alternatively you can link directly with ld so you could also do this:
This would generate a 32-bit Linux executable called file
Using C Library/runtime
Although I don’t think the following is what you intended, someone may find the following information useful:
You can use GCC and have the C library available to your assembly code by renaming _START to main . The C runtime contains an entry point called _start that handles initialization and then calls a function called main . You can take advantage of the C library but main has to setup the stack frame correctly and properly clean it up and return when finished since main will be treated as a C function. The code would look something like this:
This example uses both int 0x80 system call to write standard output, and uses C printf to do the same. You can assemble and link to an executable called file with:
Источник
collect2: error: ld returned 1 exit status (-lcudnn)
Edit 1
I forgot to mention that I want to use the theano library.
After I reached out to the admin, the cudnn modules were provided by them. However, I am still getting the same error.
So, most probably, I have a link problem, however, I can’t find it where.
Problem
I am struggling with ld: cannot find -lcudnn .
Description
I want to use Cuda and CuDnn for my project. I am working in a cluster, Cuda is installed in the cluster already (p.s. I don’t have root permissions). So I copy the Cuda files into my local folder and install Cudnn as instructed on the official website. However, ld cannot find libcudnn.so .
What I tried
If I add the library path of libcudnn.so manually
Here is my LD_LIBRARY_PATH
ld somehow ignores LD_LIBRARY_PATH . Since I do not have the root permissions, I cannot either create a symbolic link or make changes in ldconfig . So, setting LD_LIBRARY_PATH is the only way I can fix it.
Thanks for your help.
2 Answers 2
(This could have been a comment but I don’t have enough reputation for that; I am talking only about the general linker etc usage, I don’t know about the cuda or cudnn projects and what build tools they use, etc)
If I add the library path of libcudnn.so manually
This is a link line with no object files to link and create an executable with.
This shows you got the right path into -L .
This will be fixed once you use a proper link line perhaps by incorporating the -L path you have correctly specified above into the build process e.g. the Makefile or whatever else is appropriate.
ld somehow ignores LD_LIBRARY_PATH. Since I do not have the root permissions, I cannot either create a symbolic link or make changes in ldconfig. So, setting LD_LIBRARY_PATH is the only way I can fix it.
Источник