solaris.README 458 B

1234567891011121314151617181920
  1. Solaris 2.x is like System V (maybe it *is* System V?) and is different
  2. from older versions in that it uses no leading underscore for variable
  3. and function names. That is, the old convention was:
  4. foo(){}
  5. got compiled as
  6. .globl _foo
  7. _foo:
  8. and is now compiled as
  9. .globl foo
  10. foo:
  11. The `config' script should fix up the older (leading underscore) versions
  12. of the machine-dependent files to use the newer (no leading underscore)
  13. calling conventions.