Re: is part of the wiki's hello world example broken?

2020-04-06 Thread Daniel Ortmann
Sorry.  I needed to load the test.import.so ... I was too hasty in my email. On 4/6/20 5:16 PM, Daniel Ortmann wrote: On this page: http://wiki.call-cc.org/man/5/Modules Following these instructions: If you want to keep macro-definitions in a separate file, use import libraries

is part of the wiki's hello world example broken?

2020-04-06 Thread Daniel Ortmann
On this page: http://wiki.call-cc.org/man/5/Modules Following these instructions: If you want to keep macro-definitions in a separate file, use import libraries: % csc -s hello.scm -j test % csc -s test.import.scm I get 'unbound variable' for both hello and greet. My own user error? 

Re: CHICKEN 5.2.0 has been released

2020-03-05 Thread Daniel Ortmann
The sql-de-lite package has a small glitch. $ chicken-install sql-de-lite building sql-de-lite /home/dortmann/.cache/chicken-install/sql-de-lite/build-sql-de-lite -regenerate-import-libraries -M -setup-mode -static -I /home/dortmann/.cache/chicken-install/sql-de-lite -emit-link-file

Re: CHICKEN 5.2.0 has been released

2020-03-05 Thread Daniel Ortmann
After unmounting tmpfs from ~/.cache everything is installing perfectly.  Thank you much. On 3/5/20 1:02 PM, Daniel Ortmann wrote: Interesting!  Yes, for performance I have ~dortmann/.cache mounted as tmpfs and tightly controlled.  Odd that I did not run into this previously ... Or perhaps I

Re: CHICKEN 5.2.0 has been released

2020-03-05 Thread Daniel Ortmann
AM, Peter Bex wrote: On Wed, Mar 04, 2020 at 03:20:58PM -0600, Daniel Ortmann wrote: make PLATFORM=linux PREFIX=/usr/local/chicken-5.2.0 install $ cat /etc/oracle-release Oracle Linux Server release 7.7 $ cat /etc/redhat-release Red Hat Enterprise Linux Server release 7.7 (Maipo) Hi Daniel, How

Re: CHICKEN 5.2.0 has been released

2020-03-04 Thread Daniel Ortmann
-transforms sysexits system-information trace On 3/4/20 2:30 PM, Mario Domenech Goulart wrote: Hi Daniel, On Wed, 4 Mar 2020 13:47:27 -0600 Daniel Ortmann wrote: Ideas? $ chicken-install -version 5.2.0 $ which chicken-install /usr/local/chicken-5.2.0/bin/chicken-install $ rm -rf ~/.cache/* $ ll

Re: CHICKEN 5.2.0 has been released

2020-03-04 Thread Daniel Ortmann
Ideas? $ chicken-install -version 5.2.0 $ which chicken-install /usr/local/chicken-5.2.0/bin/chicken-install $ rm -rf ~/.cache/* $ ll ~/.cache/ total 0 $ chicken-install utf8 building utf8    /usr/local/chicken-5.2.0/bin/csc -host -D compiling-extension -J -s -regenerate-import-libraries

Re: How to get a useful repl with Chicken 5?

2020-01-30 Thread Daniel Ortmann
How about: rlwrap csi It has been good to me, saving the history into ~/.csi_history On 1/30/20 12:01 PM, Matt Welland wrote: Line editing and saving history make using a repl much more productive for me. With chicken 4 I was able to get a useful repl with something like this sequence of

Re: [Chicken-users] memory monitoring and leak debugging? (should the advice be in a web page?)

2019-08-07 Thread Daniel Ortmann
F2Q=h-oye0kP50jH6f6OV3nm76BNpOnPfERGYqS2ZVuUmO4=> > > Otherwise I used to run my code under valgrind, which helped me a lot > to catch some errors. > > Best Regards > > /Jörg > > Am Tue, 6 Aug 2019 10:37:06 -0500 > schrieb Daniel Ortmann <mailto:

[Chicken-users] memory monitoring and leak debugging? (should the advice be in a web page?)

2019-08-06 Thread Daniel Ortmann
Hello all, I am new to Chicken Scheme and experimenting with binding scheme to a C scanner built with Flex.  The results are fast but I feel the need to monitor memory use and watch for leaks. The only relevant thing I find on call-cc.org is this url:

[Chicken-users] thoughts on alternate "posits" / "unums" instead of traditional floats?

2019-07-09 Thread Daniel Ortmann
I am probably the last to run across this alternate floating point format ... but now I am curious. If these posits were implemented in Chicken, what sort of work would be required? Would they replace the traditional floats? Or would they be an optional part of the numeric stack?