Проблема с библиотеками импорта «Распознанный, но необработанный тип компьютера (0x8664) в архиве формата библиотеки импорта» - PullRequest
0 голосов
/ 15 октября 2018

Я пытался реализовать свою работу, используя netbeans, armadillo и их библиотеки.Когда код был собран, компилятор дал следующий массаж:

    mkdir -p dist/Debug/GNU-Linux
g++    -o dist/Debug/GNU-Linux/boussinesqv2 build/Debug/GNU-Linux/main.o -L. blas_win64_MT.dll lapack_win64_MT.dll blas_win64_MT.a lapack_win64_MT.a
/usr/bin/ld: blas_win64_MT.a(blas_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: blas_win64_MT.a(blas_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: lapack_win64_MT.a(lapack_win64_MT.dll): Recognised but unhandled machine type (0x8664) in Import Library Format archive
/usr/bin/ld: dist/Debug/GNU-Linux/boussinesqv2: Unable to sort relocs - they are of an unknown size
make[2]: Leaving directory '/home/nutthavuth/NetBeansProjects/BoussinesqV2'
make[1]: Leaving directory '/home/nutthavuth/NetBeansProjects/BoussinesqV2'

BUILD SUCCESSFUL (total time: 2s)

После этого я решил запустить код.Ошибка произошла как

RUN FINISHED; Segmentation fault; core dumped; real time: 4s; user: 80ms; system: 4s

На следующем рисунке может помочь компилятор c ++ , компоновщик

У вас есть идея для этой проблемы,T ^ T

...