- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am a new user of Xcode and intel fortran. I encounter the following problem and hope to get some help! Thanks!!
I tried to build and run the following simple fortran 90 code:
subroutine hello(a,b)
implicit none
real,intent(out):: a
real,intent(in):: b
a = b
end subroutine
However, the Xcode gave me an error message as:
"Command /Developer/usr/local/bin/ifort-11.1-base/bin/intel64/ifort failed with exit code 1"
As it provides no further details, I have no clue about what the error is about... Thanks!!
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This looks like a legal program. If Xcode is giving a problem, try something executable like hello world to make sure it compiles and runs.
I just compiled your program with an Intel64 machine in 11.1 version of the compiler and got an object file without any error.
Did you check that an object file indeed wasn't generated?
I just compiled your program with an Intel64 machine in 11.1 version of the compiler and got an object file without any error.
Did you check that an object file indeed wasn't generated?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page