Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29285 Discussions

ignoring unknown option '-byteswapio'

francesc_verdaguer1
1,317 Views
I am trying to compile a program prepared to be compiled or work under " pgf77" fortran. In the makefile there is the next sentences:
F77 = pgf77

FLGS = -byteswapio

I changed the first one to "F77 = ifort" because I am using Intel Fortran 9.0, but I have an error (or a warning) with the function -byteswapio:

ifort: Command line warning: ignoring unknown option '-byteswapio'

Could anyone help me and tell me what I have to put in the place of '-byteswapio'?

Thanks for all
0 Kudos
3 Replies
Steven_L_Intel1
Employee
1,317 Views
-convert big_endian
0 Kudos
TimP
Honored Contributor III
1,317 Views
Both an environment variable scheme and an OPEN keyword scheme are available to support byte swapping. Please read the documentation which comes with the compiler.
0 Kudos
Steven_L_Intel1
Employee
1,317 Views
There are, I think, six different ways of specifying this behavior, through various switches, OPEN keywords and environment variables with varying granularity.
0 Kudos
Reply