Bir derleme sorunu hata ayıklamaya çalışıyorum, ama bana yürütmekte olduğu gerçek derleyici ve bağlayıcı komutları göstermek için GCC (veya belki de yapmak ??) almak gibi olamaz.
İşte gördüğüm çıktı:
CCLD libvirt_parthelper
libvirt_parthelper-parthelper.o: In function `main':
/root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:102: undefined reference to `ped_device_get'
/root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:116: undefined reference to `ped_disk_new'
/root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:122: undefined reference to `ped_disk_next_partition'
/root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:172: undefined reference to `ped_disk_next_partition'
/root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:172: undefined reference to `ped_disk_next_partition'
collect2: ld returned 1 exit status
make[3]: *** [libvirt_parthelper] Error 1
Ne görmek istiyorum buna benzer olmalıdır:
$ make
gcc -Wall -c -o main.o main.c
gcc -Wall -c -o hello_fn.o hello_fn.c
gcc main.o hello_fn.o -o main
Bu örnekte tam gcc
komutun nasıl görüntülendiğine dikkat edin. Yukarıdaki örnekte yalnızca "CCLD libvirt_parthelper" gibi şeyler gösterilmektedir. Bu davranışı nasıl denetleyeceğinizden emin değilim.
gcc
komut mu kullanıyorsunuz?