Monday, March 19, 2007

IFC in Freebsd

Thanks for those good guys who produced IFC ports for FreeBSD. After a long time trying, I finally got ifort/icc run. :) Not bad.

1 comment:

Enod said...

It seems that ifort create native FreeBSD executables.

For instance: hello.f
program hello

open(101,file='hello.out')
write(101,*) 'hello world'
close(101)

end

Comiple:
ifort hello.f -o hello

brand hello gives:
File 'hello' is of brand 'FreeBSD' (9).

Is this the fact?