README.fortran
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:8k
源码类别:

GIS编程

开发平台:

Visual C++

  1. GLUT Fortran users,
  2. BUILD INSTRUCTIONS
  3. ===================
  4. To build the GLUT Fortran API, do the following:
  5.   1)  Make sure you are running IRIX 5.3, 6.1, or 6.2 or higher on
  6.       a Silicon Graphics workstation.
  7.       >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  8.       If you are not on an SGI workstation, I suggest you try out
  9.       the f90gl, a public domain implementation the official Fortran
  10.       90 bindings for OpenGL.  See the web site at:
  11.          http://math.nist.gov/f90gl/
  12.       f90gl implements a Fortran 90 interface for OpenGL 1.1, GLU 1.2,
  13.       GLUT 3.7, and several extensions.  f90gl supports both Unix
  14.       workstations, Linux PCs, and Windows 95/NT PCs.
  15.       William Mitchell deserves special credit for developing the
  16.       f90gl implementation and pushing for a standard OpenGL
  17.       Fortran 90 binding.
  18.       Also, note that GLUT 3.7 has a new "friend" interface for use
  19.       by f90gl to ensure future interoperability between f90gl
  20.       and future GLUT revisions.
  21.       <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  22.   2)  Make sure you have Fortran compilers and OpenGL Fortran
  23.       libraries installed (make sure you have the right support
  24.       installed for the "object style" you wish to build).
  25.       The following Fortran subsystems are particularly important
  26.       to have installed:
  27.         ftn77_dev.sw.util  -- utiles for building Fortran to C bindings
  28. gl_dev.sw.fortran  -- OpenGL Fortran binding libraries
  29.   3)  Run "mkmkfiles.sgi" in this directory.
  30.   4)  Make sure you have built the "lib/glut" and "lib/fglut"
  31.       directories:
  32.       (cd lib/glut; make)
  33.       (cd lib/fglut; make)
  34.   5)  Change to one of the GLUT Fortran library directories,
  35.       depending on what "object style" you wish to build:
  36.       O32 (old 32-bit ABI) - "cd lib/fglut"
  37.       N64 (new 64-bit ABI) - "cd lib/fglut.n64"   (IRIX 6.1 & 6.2 only)
  38.       N32 (new 32-bit ABI) - "cd lib/fglut.n32"   (IRIX 6.2 only)
  39.       (If you are building a given "object style", make sure you
  40.       build the accompanying GLUT library implementation.  See
  41.       README.irix6)
  42.   6)  Execute "make" in the directory.
  43. NOTES
  44. ======
  45. All GLUT functionality is available through the GLUT Fortran API.
  46. A number of example GLUT Fortran examples are built in the directory as
  47. examples of how to write GLUT Fortran programs.
  48. There are a number of caveats to using the GLUT Fortran API:
  49.   o  The GLUT Fortran API is not built by default.
  50.      See the build instructions above.  You will need the IRIX Fortran
  51.      development option installed.
  52.   o  The implementation of the GLUT Fortran API is probably only useful
  53.      to IRIX users because the generation of Fortran-to-C wrappers is
  54.      inherently dependent on vendor-dependent calling convention
  55.      dependencies.
  56.   o  The IRIX GLUT Fortran API is implemented as a set of wrappers to
  57.      to the GLUT C implementation.  As such, there is a very slight
  58.      overhead to calling OpenGL routine through the GLUT Fortran
  59.      binding (this applies to the OpenGL Fortran wrapper routines as
  60.      well).
  61.   o  The ARB's official OpenGL Fortran API prefixes every routine and
  62.      constant with the letter F.  The justification was to avoid name
  63.      space collisions with the C names.  Nearly all modern Fortran
  64.      compilers avoid these name space clashes via other means (underbar
  65.      suffixing of Fortran routines is used by most Unix Fortran
  66.      compilers).
  67.      The GLUT Fortran API does _not_ use such prefixing conventions
  68.      because of the documentation and coding confusion introduced by
  69.      such prefixes.  Bending over backwards to support anachronistic
  70.      compliers does not justify this confusion.
  71.      While the official OpenGL Fortran API, prefixes both routine and
  72.      constant names, there is no technical justification for prefixing
  73.      constant names.  In practice, it creates a reasonable amount of
  74.      coding and documentation confusion (the confusion is heightened by
  75.      Fortran's default implicit variable initialization so you don't
  76.      realize the lack of a constant prefix until run-time) and pushes
  77.      names one character towards identifier limits.
  78.      The GLUT distribution supplies its own version of "GL/fgl.h" and
  79.      "GL/fglu.h" which does not F-prefix constants.  GLUT users are
  80.      encouraged to not use the F-prefixed constants.  (The GLUT
  81.      supplied "GL/fgl.h" also works around problems discussed in the
  82.      next bullet.)
  83.      Perhaps the OpenGL ARB will reconsider the F-prefix or (as an
  84.      unfortunate compromise) support both F prefixed and non F prefixed
  85.      constant names.
  86.   o  A OpenGL Fortran API implementation was released with IRIX 5.3
  87.      (it was not previously available in IRIX).  While the Fortran
  88.      wrappers work, there are a number of difficulties with using the
  89.      IRIX 5.3 OpenGL Fortran bindings:
  90.        +  Make sure you have the "Fortran 77 OpenGL Graphic Library"
  91.   subsystem installed.  Its name is:  ftn_dev.sw.opengl
  92.        +  The OpenGL Fortran man pages incorrectly document a number of
  93.   calls taking REAL*4 (real) parameters when they in fact
  94.   require REAL*8 (double precision) parameters.  An example is
  95.   fglviewport.  Any OpenGL (or GLU) routine that takes double's
  96.   as parameters in the C API, takes REAL*8's in the Fortran
  97.   API.  Be very careful to use the dble intrinsic whenever
  98.   passing non-REAL*8 values to such routines!
  99.        +  The OpenGL Fortran man pages also do not add the F-prefixes
  100.   to constants discussed in the man pages.  Because GLUT
  101.   supplies a "GL/fgl.h" without F-prefixes, this should be a
  102.   "good thing."
  103.        +  The "GL/fgl.h" header file describing the OpenGL Fortran API
  104.   contains identifiers over 32 characters long.  While the MIPS
  105.   Fortran compiler should treat this as a soft warning and
  106.   truncate the identifiers to 32 characters, the compiler
  107.   generates a fatal error.  For this reason, the "GL/fgl.h" in
  108.   this distribution has truncated by hand the "GL/fgl.h"
  109.   identifiers over 32 characters to 32 characters.
  110.   o  IRIX 6.2's OpenGL Fortran binding was quite bungled and is
  111.      basically unusable.
  112.      
  113.      A workaround for this problem is to compile your OpenGL Fortran
  114.      programs with the compiler option "-Wl,-ignore_unresolved".  This
  115.      tells the compiler to ignore unresolved symbols.
  116.      Then, when you run the OpenGL Fortran binaries, tell the run-time
  117.      linker (rld) to ignore unresolved symbols like this:
  118.        setenv _RLD_ARGS -ignore_unresolved
  119.      SGI patches 1892 (IRIX 6.3 and 6.4 OpenGL Fortran bindings) and
  120.      2360 (IRIX 6.2 OpenGL Fortran bindings) should fix problems in the
  121.      OpenGL Fortran binding library.
  122.   o  Because GLUT fonts are compiled into programs and programs
  123.      should only have the fonts compiled into them that they use,
  124.      GLUT font names like GLUT_BITMAP_TIMES_ROMAN_24 are really
  125.      symbols so the linker should only pull in used fonts.
  126.      Unfortunately, if a data symbol is declared EXTERNAL, the
  127.      IRIX Fortran compiler pulls in the symbol whether the symbol
  128.      is used or not.  For this reason, "GL/fglut.h" does not
  129.      explictly declare EXTERNAL the GLUT font symbols.  GLUT
  130.      Fortran programmers should explicitly declare EXTERNAL
  131.      the GLUT fonts they use.
  132.   o  Neither the MicroUI (mui) or Tubing and Extrusion library (gle)
  133.      have Fortran bindings.
  134. INSTALLATION
  135. =============
  136. If you want to install the resulting archives into the right system
  137. library directories, do the following:
  138.      FOR N32:  cp lib/fglut.n32/libfglut.a /usr/lib32
  139.      FOR N64:  cp lib/fglut.n64/libfglut.a /usr/lib64
  140. Also, make sure to install the GLUT library implementation versions for
  141. the given object style too.
  142. - Mark Kilgard