Quantcast
Viewing all articles
Browse latest Browse all 415

Intel Fortran Compiler not available in XCode 8.3.2

I am trying to add the compiler to use it with XCode, I have version 8.3.2, but it seems to be missing from the list of available compilers there, any idea why this happens? I did set up all the environmental variables beforehand. I also can't run the compiler from the terminal window, I get the following error: 

Undefined symbols for architecture x86_64:

  "_gemm_", referenced from:

      _MAIN__ in ifortkGcltQ.o

ld: symbol(s) not found for architecture x86_64

 

This is the code I was trying to compile:

program test

implicit none
real, dimension(2,2) :: testA, testB, testC

testA = 1
testB = 1
testC = 0  ! I don't think I need this line, but it shouldn't matter

call gemm(testA, testB, testC)

write(*,*) testC

end program test


Viewing all articles
Browse latest Browse all 415

Trending Articles