diff options
author | Guido van Rossum <guido@python.org> | 1997-03-04 23:36:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-03-04 23:36:04 (GMT) |
commit | 53bb550a5fd8aa3a3350b8ee8231062e707f6795 (patch) | |
tree | 8a8f917e9c416f6e11866811ad9db41455d95a11 /Modules/Setup.in | |
parent | f39fc43f31d19d74edbce0afe723c8d6fd91ec02 (diff) | |
download | cpython-53bb550a5fd8aa3a3350b8ee8231062e707f6795.zip cpython-53bb550a5fd8aa3a3350b8ee8231062e707f6795.tar.gz cpython-53bb550a5fd8aa3a3350b8ee8231062e707f6795.tar.bz2 |
Solaris and IRIX specific instructions for fpectl.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 4159df1..cdca6f47 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -322,12 +322,24 @@ parser parsermodule.c cStringIO cStringIO.c cPickle cPickle.c + # Lee Busby's SIGFPE modules. # The library to link fpectl with is platform specific. -# See instructions in fpectlmodule.c. +# Choose *one* of the options below for fpectl: + +# For SGI IRIX (tested on 5.3): +#fpectl fpectlmodule.c -lfpe + +# For Solaris with SunPro compiler (tested on 2.5): +# (Without the compile you don't have -lsunmath.) +#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm -#fpectl fpectlmodule.c +# For other systems: see instructions in fpectlmodule.c. +#fpectl fpectlmodule.c ... + +# Test module for fpectl. No extra libraries needed. #fpetest fpetestmodule.c + # Example -- included for reference only: # xx xxmodule.c |