I'm not sure if you want such reports here or filed in the bug reporting, but for now:
I cloned a4eddbd63da1750efb619fcb94e65f1dba382f7b this morning. Using gcc 7.3.0-11 on debian buster (testing), I encounter two build problems with these workarounds that I used to continue the build. 1) A missing O_BINARY definition trips up racket/src/cs/c/boot.c Adding the definition after the #includes section permits the compilation to continue. #ifndef O_BINARY # define O_BINARY 0 #endif 2) After racketcs is made, the executable bit was not set. chmod a+x $(find . | grep bin/racketcs) Thanks, John Griffin On Friday, March 23, 2018 at 1:55:56 PM UTC-4, mflatt wrote: > > > Although I don't think there are docs to tests to written, you could > try out RacketCS (= Racket on Chez Scheme) and report whatever problems > you encounter. > -- You received this message because you are subscribed to the Google Groups "Racket Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-dev/696166d2-3ce9-4243-b119-230b211313a5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
