Last change
on this file since 36243 was
36243,
checked in by kon, 6 months ago
|
fix hypot test, add types, rm make-log/base, add log/base
|
File size:
775 bytes
|
Line | |
---|
1 | ;;;; "mathh.egg -*- Scheme -*- |
---|
2 | ;;;; Kon Lovett, Jul '18 |
---|
3 | |
---|
4 | ((synopsis "ISO C math functions and constants") |
---|
5 | (version "4.1.0") |
---|
6 | (category math) |
---|
7 | (author "[[kon lovett]] and [[john cowan]]") |
---|
8 | (license "Public Domain") |
---|
9 | (test-dependencies test) |
---|
10 | ;* still needed? * |
---|
11 | ;linux ;_GNU_SOURCE instead? |
---|
12 | ;CSC_OPTIONS='-C -D_ISOC99_SOURCE' chicken-install -test mathh |
---|
13 | (components |
---|
14 | (extension mathh-consts |
---|
15 | #;(inline-file) |
---|
16 | (types-file) |
---|
17 | (scheme-include mathh-constants) |
---|
18 | (csc-options |
---|
19 | ;,@(cond-expand (linux '("-C" "-D_ISOC99_SOURCE")) (else '())) ;sigh |
---|
20 | "-O3" "-d1" "-local" "-no-bound-checks" "-no-argc-checks" "-no-procedure-checks") ) |
---|
21 | (extension mathh |
---|
22 | #;(inline-file) |
---|
23 | (types-file) |
---|
24 | (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) ) ) |
---|
Note: See
TracBrowser
for help on using the repository browser.