J'essaie de compiler un programme qui utilise la bibliothèque V8 de Google (32 bits). Par conséquent, toute bibliothèque que j'utilise dans mon programme doit également être en 32 bits. Où puis-je télécharger la version 32 bits des bibliothèques sur Ubuntu 64 bits? Plus précisément, je recherche la version 32 bits de libnotify.
Ce sont les erreurs que je reçois en ce moment:
g++ -o Shell -m32 Shell.o -L../v8 -lv8 -lpthread `pkg-config --libs libnotify glib-2.0`
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.4.3/../../../libnotify.so when searching for -lnotify
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.4.3/../../../libnotify.a when searching for -lnotify
/usr/bin/ld: skipping incompatible /usr/lib/libnotify.so when searching for -lnotify
/usr/bin/ld: skipping incompatible /usr/lib/libnotify.a when searching for -lnotify
/usr/bin/ld: cannot find -lnotify
collect2: ld returned 1 exit status
Merci!
Vous pouvez installer des bibliothèques 32 bits sur un ordinateur 64 bits en installant le package ia32-libs :
Sudo apt-get install ia32-libs