Error while loading shared libraries libidn so 11

Нравится ресурс?

    msm.ru

    Нравится ресурс?

    Помоги проекту!

    !
    Правила раздела *nix / gcc / Eclipse / Qt / wxWidgets / GTK+

    • При создании темы ОБЯЗАТЕЛЬНО указывайте версию тулкита / библиотеки / компилятора.
    • Перед тем как задать вопрос, сформулируйте его правильно, чтобы вас могли понять.
    • Нарушение Правил может повлечь наказание со стороны модераторов.

    Полезные ссылки:
    user posted image Boost по-русски
    user posted image Qt по-русски

    >
    libidn.so.11 не существуют, как преодолеть?

    • Подписаться на тему
    • Сообщить другу
    • Скачать/распечатать тему



    Сообщ.
    #1

    ,
    06.03.12, 10:01

      Приветствую.

      Есть проблема, есть несколько устройств, на одном мой бинарник работает, на втором выдает сообщение

      ExpandedWrap disabled

        error while loading shared libraries: libidn.so.11: cannot open shared object file: No such file or directory

      Как можно преодолеть проблему? Очень важен размер дистрибутива, тащить с собой много не могу.

      Сообщение отредактировано: micro — 06.03.12, 10:01


      niXman



      Сообщ.
      #2

      ,
      06.03.12, 10:26

        очевидно же — таскать с собой либу.


        micro



        Сообщ.
        #3

        ,
        06.03.12, 13:26

          она там была, только в другом месте, получилось через

          ExpandedWrap disabled

            export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/new/path/to/lib/;»

          в одной сессии с бинарником. ;)

          Сообщение отредактировано: micro — 06.03.12, 13:28


          niXman



          Сообщ.
          #4

          ,
          06.03.12, 13:37

            какой вопрос — такой ответ.

            0 пользователей читают эту тему (0 гостей и 0 скрытых пользователей)

            0 пользователей:

            • Предыдущая тема
            • Кроссплатформенный C/C++: cl/gcc/Qt/Gtk+/WxWidgets
            • Следующая тема

            Рейтинг@Mail.ru

            [ Script execution time: 0,0184 ]   [ 16 queries used ]   [ Generated: 9.02.23, 15:47 GMT ]  

            Новые и опытные пользователи Linux могут сталкиваться с ошибкой error loading shared libraries во время запуска программ, также с ней могут сталкиваться программисты и все желающие компилировать программное обеспечение в своей системе. Эта ошибка в дословном переводе означает что возникла проблема во время загрузки общей библиотеки. О том что такое библиотеки и зачем они нужны вы можете узнать из статьи библиотеки Linux.

            В этой же статье мы рассмотрим что значит ошибка error while loading shared libraries более подробно, а главное, как ее решить.

            Даже если вы не компилируете свои программы, то вы можете увидеть ошибку error while loading shared libraries: имя_библиотеки: cannot open shared object file: No such file or directory достаточно часто во время установки новых программ не через пакетный менеджер или программ, предназначенных для другого дистрибутива. Как я уже говорил, она возникает потому, что система не может найти библиотеку.

            А вот почему ее нельзя найти и загрузить, это уже интересно. Этому может быть несколько причин:

            • Библиотека не установлена в системе;
            • Библиотека установлена, но неизвестно куда;
            • Библиотека установлена правильно, но имеет не ту версию.

            При решении проблемы мы будем руководствоваться именно этими причинами и пытаться их решить.

            Как исправить ошибку?

            1. Библиотека не установлена

            Первый вариант, тут все понятно, библиотеки просто нет в системе, поэтому мы и получаем такую ошибку. Верный способ ее решения — просто найти пакет библиотеки с помощью пакетного менеджера и установить ее. Обычно, пакеты с библиотеками называются так же, как и сами библиотеки с префиксом lib.

            Например, если нам не хватает библиотеки libfuse2.so, то мы можем найти ее в Ubuntu такой командой:

            sudo apt search libfuse2

            Затем осталось только установить ее:

            sudo apt install libfuse2

            Если перед вами стоит задача собрать программу из исходников, то вам понадобится не только установить саму библиотеку, но и заголовочные файлы для нее:

            sudo apt install libfuse-dev

            И так для любой библиотеки. Но это не всегда помогает.

            2. Библиотека находится не в том каталоге

            Бывает что библиотека установлена, мы установили ее или она поставлялась вместе с программой, но ошибка как была, так и есть. Причиной этому может быть то, что загрузчик Linux не может найти библиотеку.

            Поиск библиотек выполняется по всех папках, которые указаны в конфигурационных файлах /etc/ld.conf.d/. По умолчанию, это такие каталоги, как /usr/lib, /lib, /usr/lib64, /lib64. Если библиотека установлена в другой каталог, то, возможно, это и есть причина проблемы.

            Вы можете посмотреть какие библиотеки сейчас доступны загрузчику с помощью команды:

            ldconfig -p

            Найти, где находится ваша библиотека можно с помощью команды locate. Например, нас интересует библиотека librtfreader.so:

             locate librtfreader

            Теперь мы знаем, что она находится по адресу /opt/kingsoft/wps-office/office6/. А значит, для работы программы необходимо сделать чтобы загрузчик библиотек ее видел. Для этого можно добавить путь в один из файлов /etc/ld.so.conf.d/ или же в переменную LD_LIBRARY_PATH:

            export LD_LIBRARY_PATH=/opt/kingsoft/wps-office/office6/

            Опять же, так вы можете поставить с любой библиотекой, которая взывает ошибку. Еще один более простой метод — это просто создать символическую ссылку на нужную библиотеку в правильной папке:

            ln -s /opt/kingsoft/wps-office/office6/librtfreader.so /usr/lib/librtfreader.so

            3. Неверная версия библиотеки

            Эта причина ошибки довольно часто встречается при использовании программ не для вашего дистрибутива. Каждая библиотека имеет дополнительную версию, так называемую ревизию, которая записывается после расширения .so. Например, libav.so.1. Так вот, номер версии меняется всякий раз, когда в библиотеку вносятся какие-либо исправления.

            Часто возникает ситуация, когда в одном дистрибутиве программа собирается с зависимостью от библиотеки, например, libc.so.1, а в другом есть только libc.so.2. Отличия в большинстве случаев здесь небольшие и программа могла бы работать на второй версии библиотеки. Поэтому мы можем просто создать символическую ссылку на нее.

            Например, библиотеки libusb-1.0.so.1 нет. Но зато есть libusb-1.0.so.0.1, и мы можем ее использовать:

            Для этого просто создаем символическую ссылку на библиотеку:

            sudo ln -s /usr/lib/libusb-1.0.so.0.1 /usr/lib/libusb-1.0.so.1

            В большинстве случаев программа не заметит подмены и будет работать, как и ожидалось. Также для решения этой проблемы можно попытаться найти нужную версию библиотеки в интернете для своей архитектуры и поместить ее в папку /usr/lib/ или /usr/lib64/. Но после этого желательно обновить кэш:

            sudo ldconfig

            Выводы

            В этой статье мы рассмотрели почему возникает ошибка Error while loading shared libraries, а также как ее решить. В большинстве случаев проблема решается довольно просто и вы получите работоспособную программу. Надеюсь, эта информация была полезной для вас.

            Creative Commons License

            Статья распространяется под лицензией Creative Commons ShareAlike 4.0 при копировании материала ссылка на источник обязательна .

            For the past few days, I have been extensively testing PIP and Pipenv tools in my Arch Linux system. While testing these tools, I had to reinstall and downgrade Python2.x, Python 3.x packages and some other Python dependencies package many times. At some point, It broke my Arch Linux and pacman stopped working. Whenever I run pacman, I got an error that says «pacman: error while loading shared libraries: libidn2.so.0: cannot open shared object file: No such file or directory».

            pacman: error while loading shared libraries: libidn2.so.0: cannot open shared object file: No such file or directory

            pacman: error while loading shared libraries: libidn2.so.0: cannot open shared object file: No such file or directory

            Not just pacman, some other applications, such as pacaur, yaourt, packer, virtualbox and transmission etc., also stopped working. When I try to open any one of these applications, I keep getting this message — «error while loading shared libraries: libidn2.so.0: cannot open shared object file».

            Chances are that I may have uninstall something that I couldn’t remember. To my bad luck, It was my personal system and I don’t want to reinstall it because it has a lot of applications. So, reinstalling OS and all applications might took two or may be more days.

            After vigorously searching on Arch Linux wiki and other Linux forums like a mad man, I finally managed to fixed it. If you ever run into a problem something like this, look nowhere, just download the source file and copy the missing file(s) to /usr/lib/ folder. As far as I searched on the web, this method seems very easiest one so far. Read on to know how I fixed this error.

            Fix «pacman: error while loading shared libraries» Error In Arch Linux

            As I said already, I kept getting this error — «pacman: error while loading shared libraries: libidn2.so.0: cannot open shared object file: No such file or directory» when I run pacman command or any AUR helpers such as pacaur, packer, yaourt and I even can’t open VirtualBox application and Transmission client. So, the actual problem here is the file «libidn2.so.0» has gone missing. We need to find it out!

            $ ls -la /usr/lib/libidn*

            Sample output from my Arch Linux system:

            lrwxrwxrwx 1 root root 22 Jul 22 2013 /usr/lib/libidnkitlite.so -> libidnkitlite.so.1.0.2
            lrwxrwxrwx 1 root root 22 Jul 22 2013 /usr/lib/libidnkitlite.so.1 -> libidnkitlite.so.1.0.2
            -rw-r--r-- 1 root root 276352 Jul 22 2013 /usr/lib/libidnkitlite.so.1.0.2
            lrwxrwxrwx 1 root root 18 Jul 22 2013 /usr/lib/libidnkit.so -> libidnkit.so.1.0.2
            lrwxrwxrwx 1 root root 18 Jul 22 2013 /usr/lib/libidnkit.so.1 -> libidnkit.so.1.0.2
            -rw-r--r-- 1 root root 282368 Jul 22 2013 /usr/lib/libidnkit.so.1.0.2
            lrwxrwxrwx 1 root root 17 Aug 15 19:00 /usr/lib/libidn.so -> libidn.so.11.6.16
            lrwxrwxrwx 1 root root 17 Aug 15 19:00 /usr/lib/libidn.so.11 -> libidn.so.11.6.16
            -rwxr-xr-x 1 root root 210872 Aug 15 19:00 /usr/lib/libidn.so.11.6.16

            I had «libidn.so», but can’t find «libidn2.so.0». Since pacman and any other package manager didn’t work, there is no way to install, upgrade or downgrade any packages from official repository or local cache. So, I thought that the only way might be to download the package that has the missing file from Internet, extract it and finally copy the missing file(s) to /usr/lib/ directory. Let me create a directory to save libdin2 tar file:

            $ mkdir libidn
            $ cd libidn

            Find and download the latest version of this package. A quick google search brought me here. Extract the file:

            $ tar xf libidn2-2.0.4-2-x86_64.pkg.tar.xz

            The above command extracted the contents of the file in a directory named «usr». Go to the usr/lib folder: (Note — It is usr/lib, not /usr/lib)

            $ cd usr/lib

            Finally copy the missing file, in our case it is libidn2.so.0, to /usr/lib/ directory of your Arch Linux system.

            $ sudo cp libidn2.so.0 /usr/lib/

            Then, I ran:

            $ sudo pacman -syu

            Update Arch Linux

            Update Arch Linux

            Voila! Pacman works now!! Oops! Oh no, wait.. It didn’t work. I got this error after few minutes.

            [....]
            (511/511) checking keys in keyring [######################] 100%
            (511/511) checking package integrity [######################] 100%
            (511/511) loading package files [######################] 100%
            (511/511) checking for file conflicts [######################] 100%
            error: failed to commit transaction (conflicting files)
            libidn2: /usr/lib/libidn2.so.0 exists in filesystem
            Errors occurred, no packages were upgraded.

            To fix this, I ran:

            $ sudo pacman -S libidn2 --force

            Then, I tried update again:

            $ sudo pacman -Syu

            Fixed!! All good now. So, if you guys ever run into an issue something like «error while loading shared libraries: .. cannot open shared object file: No such file or directory», one way to fix this is to find the the package that contains the missing files, download the latest version of that package, extract it and copy the missing files to /usr/lib/ directory. Of course, there could be many ways to fix such kind of issues. But this is the only working solution I could find and I find this much easier and faster. This trick might work on other Linux distros too.

            Related read:

            • How To Restore Broken Arch Linux To Previous Working State
            • How To Fix “unable to lock database” Error In Arch Linux
            • How To Fix “invalid or corrupted package (PGP signature)” Error In Arch Linux
            • How To Solve “Starting full system upgrade… there is nothing to do” Issue In Arch Linux
            • How To Solve “error: failed to commit transaction (conflicting files)” In Arch Linux

            sk

            Senthilkumar Palani (aka SK) is the Founder and Editor in chief of OSTechNix. He is a Linux/Unix enthusiast and FOSS supporter. He lives in Tamilnadu, India.

            Moderator: Project members


            User avatar

            ICeDX

            500 Command not understood
            Posts: 5
            Joined: 2005-01-06 09:07
            Location: /home/brandon
            Contact:

            Error with latest

            #17

            Post

            by ICeDX » 2005-01-06 16:56

            ./filezilla: error while loading shared libraries: libexpat.so.1: cannot open shared object file: No such file or directory

            Three murders, multiple gunshot wounds with a Glock 9. Civil Protection be advised, pacify.


            User avatar

            ICeDX

            500 Command not understood
            Posts: 5
            Joined: 2005-01-06 09:07
            Location: /home/brandon
            Contact:

            error2

            #18

            Post

            by ICeDX » 2005-01-06 17:19

            I installed libexpat but I still got errors. So I had to symlink to bypass and now it works.

            su to root, and
            ln -sf /usr/lib/libexpat.so.{0,1}

            Three murders, multiple gunshot wounds with a Glock 9. Civil Protection be advised, pacify.



            kieran776

            504 Command not implemented
            Posts: 6
            Joined: 2004-12-07 02:00

            #20

            Post

            by kieran776 » 2005-01-06 20:37

            Ok, I downloaded. And extracted. Now what?? When I double click on FileZilla3/bin/filezilla it doesn’t work :(

            Edit: I used ICeDX code and now it works. But the graphics are different (ugly) compared to the last beta build. How do I set it back to what it was??

            kieran776


            User avatar

            botg

            Site Admin
            Posts: 34744
            Joined: 2004-02-23 20:49
            First name: Tim
            Last name: Kosse
            Contact:

            #21

            Post

            by botg » 2005-01-06 20:45

            Please always include more information in your reports.
            Did you try the correct binary for your system? Where there any error message? What’s your system? Did you try the superior command line instead of some filesystem browser?


            kieran776

            504 Command not implemented
            Posts: 6
            Joined: 2004-12-07 02:00

            #22

            Post

            by kieran776 » 2005-01-07 03:32

            Did you try the correct binary for your system? Where there any error message? What’s your system? Did you try the superior command line instead of some filesystem browser?

            Thats the funny thing. No errors, nothing. Im on Mandrake Linux 10.1, and used the linux nightly download. I tried opening from root etc. Nothing worked till I did what ICeDX said, then it loaded no problem.

            Now I want to know how to reverse what I did so I can try other things.

            kieran776


            User avatar

            b.veldkamp

            500 Command not understood
            Posts: 2
            Joined: 2005-01-06 22:36

            #23

            Post

            by b.veldkamp » 2005-01-07 07:45

            Works almost perfect on FC3, just some small things:
            1. Ordinary users can’t access the «share» directory, I think this should be chmod 755.
            2. The error message about libexpat.so.1, already mentioned by ICeDX.
            3. Message at startup: «/usr/lib/libpng12.so.0: no version information available (required by filezilla)»

            But maybe I should just upgrade expat and png.

            Berend


            User avatar

            botg

            Site Admin
            Posts: 34744
            Joined: 2004-02-23 20:49
            First name: Tim
            Last name: Kosse
            Contact:

            #24

            Post

            by botg » 2005-01-07 10:37

            Ok, I think I can try linking libpng and libexpat statically, that should sove the problems. Please wait for 2005-01-08 nightly.


            Paully

            500 Command not understood
            Posts: 3
            Joined: 2005-01-11 15:26

            missing file: libidn.so.11

            #25

            Post

            by Paully » 2005-01-11 17:10

            Hi

            I am really looking forward to trying this Linux version… however, I get the following error:

            Code: Select all

            bash-2.05b# ./filezilla
            ./filezilla: error while loading shared libraries: libidn.so.11: cannot open shared object file: No such file or directory
            

            I do seem to have the file…

            Code: Select all

            bash-2.05b# ldd filezilla
                    linux-gate.so.1 =>  (0xffffe000)
                    libgtk-x11-2.0.so.0 => /usr/lib32/libgtk-x11-2.0.so.0 (0x5558a000)
                    libgdk-x11-2.0.so.0 => /usr/lib32/libgdk-x11-2.0.so.0 (0x55872000)
                    libatk-1.0.so.0 => /usr/lib32/libatk-1.0.so.0 (0x558e6000)
                    libgdk_pixbuf-2.0.so.0 => /usr/lib32/libgdk_pixbuf-2.0.so.0 (0x55901000)
                    libpangoxft-1.0.so.0 => /usr/lib32/libpangoxft-1.0.so.0 (0x55918000)
                    libpangox-1.0.so.0 => /usr/lib32/libpangox-1.0.so.0 (0x5591d000)
                    libpango-1.0.so.0 => /usr/lib32/libpango-1.0.so.0 (0x55929000)
                    libgobject-2.0.so.0 => /usr/lib32/libgobject-2.0.so.0 (0x5595e000)
                    libgmodule-2.0.so.0 => /usr/lib32/libgmodule-2.0.so.0 (0x5599d000)
                    libgthread-2.0.so.0 => /usr/lib32/libgthread-2.0.so.0 (0x559a1000)
                    libglib-2.0.so.0 => /usr/lib32/libglib-2.0.so.0 (0x559a6000)
                    libz.so.1 => /lib32/libz.so.1 (0x55a26000)
                    libdl.so.2 => /lib32/libdl.so.2 (0x55a38000)
                    libidn.so.11 => not found
                    libstdc++.so.5 => /usr/lib32/libstdc++.so.5 (0x55a3b000)
                    libm.so.6 => /lib32/libm.so.6 (0x55aee000)
                    libgcc_s.so.1 => /usr/lib32/libgcc_s.so.1 (0x55b10000)
                    libpthread.so.0 => /lib32/libpthread.so.0 (0x55b19000)
                    libc.so.6 => /lib32/libc.so.6 (0x55b6d000)
                    libX11.so.6 => /usr/X11R6/lib32/libX11.so.6 (0x55c84000)
                    libXrandr.so.2 => /usr/X11R6/lib32/libXrandr.so.2 (0x55d4f000)
                    libXi.so.6 => /usr/X11R6/lib32/libXi.so.6 (0x55d53000)
                    libXinerama.so.1 => /usr/X11R6/lib32/libXinerama.so.1 (0x55d5b000)
                    libXft.so.2 => /usr/X11R6/lib32/libXft.so.2 (0x55d5f000)
                    libfreetype.so.6 => /usr/lib32/libfreetype.so.6 (0x55d72000)
                    libfontconfig.so.1 => /usr/lib32/libfontconfig.so.1 (0x55ddb000)
                    libXcursor.so.1 => /usr/X11R6/lib32/libXcursor.so.1 (0x55e02000)
                    libXrender.so.1 => /usr/X11R6/lib32/libXrender.so.1 (0x55e0b000)
                    libXext.so.6 => /usr/X11R6/lib32/libXext.so.6 (0x55e14000)
                    libpangoft2-1.0.so.0 => /usr/lib32/libpangoft2-1.0.so.0 (0x55e24000)
                    /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x55555000)
                    libexpat.so.0 => /usr/lib32/libexpat.so.0 (0x55e4a000)
            
            bash-2.05b# ll /usr/lib32/libidn.so*
            lrwxrwxrwx  1 root root   16 Jan 11 15:23 /usr/lib32/libidn.so -> libidn.so.11.1.4
            lrwxrwxrwx  1 root root   16 Jan 11 15:23 /usr/lib32/libidn.so.11 -> libidn.so.11.1.4
            -rwxr-xr-x  1 root root 190K Oct 21 13:50 /usr/lib32/libidn.so.11.1.4
            
            bash-2.05b# ll /lib32/libidn.so*
            lrwxrwxrwx  1 root root   16 Jan 11 15:19 /lib32/libidn.so -> libidn.so.11.1.4
            lrwxrwxrwx  1 root root   16 Jan 11 15:19 /lib32/libidn.so.11 -> libidn.so.11.1.4
            -rwxr-xr-x  1 root root 190K Oct 21 13:50 /lib32/libidn.so.11.1.4
            

            Any ideas?

            O/S: Gentoo Linux
            Arch: AMD64

            Thanks

            PAULLY


            User avatar

            botg

            Site Admin
            Posts: 34744
            Joined: 2004-02-23 20:49
            First name: Tim
            Last name: Kosse
            Contact:

            Re: missing file: libidn.so.11

            #26

            Post

            by botg » 2005-01-11 18:10

            Code: Select all

            bash-2.05b# ll /usr/lib32/libidn.so*
            lrwxrwxrwx  1 root root   16 Jan 11 15:23 /usr/lib32/libidn.so -> libidn.so.11.1.4
            lrwxrwxrwx  1 root root   16 Jan 11 15:23 /usr/lib32/libidn.so.11 -> libidn.so.11.1.4
            -rwxr-xr-x  1 root root 190K Oct 21 13:50 /usr/lib32/libidn.so.11.1.4
            
            bash-2.05b# ll /lib32/libidn.so*
            lrwxrwxrwx  1 root root   16 Jan 11 15:19 /lib32/libidn.so -> libidn.so.11.1.4
            lrwxrwxrwx  1 root root   16 Jan 11 15:19 /lib32/libidn.so.11 -> libidn.so.11.1.4
            -rwxr-xr-x  1 root root 190K Oct 21 13:50 /lib32/libidn.so.11.1.4
            

            Strange library paths, are you sure those are in the standard library search paths? If not, try to add them to the LD_LIBRARY_PATH environment variable.


            Paully

            500 Command not understood
            Posts: 3
            Joined: 2005-01-11 15:26

            #27

            Post

            by Paully » 2005-01-12 14:15

            Yep, they are in my shared library .conf file…

            Code: Select all

            amd64 bin # cat /etc/ld.so.conf
            # ld.so.conf autogenerated by env-update; make all changes to
            # contents of /etc/env.d directory
            /usr/local/lib
            /usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.4
            /usr/lib/opengl/nvidia/lib
            /usr/lib32/opengl/nvidia/lib
            /usr/X11R6/lib64
            /usr/X11R6/lib
            /opt/blackdown-jdk-1.4.2.01/jre/lib/amd64/
            /opt/blackdown-jdk-1.4.2.01/jre/lib/amd64/native_threads/
            /opt/blackdown-jdk-1.4.2.01/jre/lib/amd64/classic/
            /lib32
            /usr/lib32
            /emul/linux/x86/lib
            /emul/linux/x86/usr/lib
            /usr/qt/3/lib
            /usr/kde/3.3/lib
            /usr/kde/3.2/lib
            /usr/X11R6/lib32
            /usr/games/lib
            

            and the particular file in question is definitely in my library cache…

            Code: Select all

            amd64 bin # ldconfig -p |grep 'libidn.so.11'
                    libidn.so.11 (libc6,x86-64) => /lib32/libidn.so.11
                    libidn.so.11 (libc6,x86-64) => /usr/lib32/libidn.so.11
                    libidn.so.11 (libc6,x86-64) => /lib/libidn.so.11
                    libidn.so.11 (libc6,x86-64) => /usr/lib/libidn.so.11
            

            1. Could it be a 64-bit issue?
            2. Have you tried and tested your binaries on AMD64 architecture yet?
            3. If not, can I help?

            Regards

            PAULLY


            Swatinem

            504 Command not implemented
            Posts: 10
            Joined: 2005-01-14 14:39

            #28

            Post

            by Swatinem » 2005-01-14 14:46

            @Paully: Maybe its a 32 vs. 64 bit problem. Can you run other 32bit programs?

            Or try out the following ebuild: http://forums.gentoo.org/viewtopic.php? … =filezilla
            That worked for me with small changes.
            Looks really promising.
            The only problem i have is that i can’t scroll the file list with my mouse-wheel.

            uargh:

            swatinux ~ # genlop -t wxgtk
            * x11-libs/wxGTK

            Fri Jan 14 15:57:33 2005 >>> x11-libs/wxGTK-2.5.3
            merge time: 1 hour, 10 minutes and 10 seconds.


            Paully

            500 Command not understood
            Posts: 3
            Joined: 2005-01-11 15:26

            #29

            Post

            by Paully » 2005-01-18 11:37

            Swatinem wrote:@Paully: Maybe its a 32 vs. 64 bit problem. Can you run other 32bit programs?

            Yes, although I only have Doom3 :)

            I think it must be a 64-bit problem. The latest FileZilla nightly build runs fine on my wife’s Gentoo x86 machine.

            Hhhm, not on the AMD64. It warns about wxGTK versions.

            I’ll keep an eye on the nightly builds and then wait for an official .ebuild in the Portage tree… I am sure it won’t be long!

            :-)

            PAULLY


            panfr

            503 Bad sequence of commands
            Posts: 21
            Joined: 2004-03-26 08:56

            #30

            Post

            by panfr » 2005-01-19 19:46

            The latest succesfully autogenned static binary ( 2005-01-14 ) works OK here, with no complaints (Arch Linux 0.7)


            Понравилась статья? Поделить с друзьями:
          • Error while loading shared libraries libdl so 2
          • Error while loading shared libraries libcurl gnutls so 4
          • Error while loading shared libraries libcups so 2
          • Error while transferring data in reading kess v2
          • Error while submitting sas code