]> git.donarmstrong.com Git - lilypond.git/blob - guile18/qt/md/solaris.README
New upstream version 2.19.65
[lilypond.git] / guile18 / qt / md / solaris.README
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
5         foo(){}
6
7 got compiled as
8
9                 .globl  _foo
10         _foo:
11
12 and is now compiled as
13
14                 .globl  foo
15         foo:
16
17 The `config' script should fix up the older (leading underscore) versions
18 of the machine-dependent files to use the newer (no leading underscore)
19 calling conventions.