Bruno Deferrari

Results 138 comments of Bruno Deferrari

Hi @junkerjoe. All the credit of making shen-cl portable across Common Lisp implementations goes to @rkoeninger (without his work, shen-cl would only support SBCL and CLisp), he should be able...

Hi @TheGreatCatAdorer. The `defmacro` declaration needs to be at the top level, you cannot put it inside a `let` (same applies to `define`). Another issue is that the expanded code...

Maybe an image based on alpine would be a better option in terms of size.

Yes, and if you do a [multi-staged build](https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds) the resulting image should be not much bigger than the resulting Shen execultable.

This one looks like a good base, uses Alpine: https://github.com/eshamster/docker-cl-base

ECL: ``` > ecl --version ECL 16.1.3 ``` Clang: ``` > clang --version Apple LLVM version 8.0.0 (clang-800.0.42.1) Target: x86_64-apple-darwin15.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin ``` It is not bundled...

Haven't figured this one yet, but it seems it is related to stripping of binaries: https://lists.gnu.org/archive/html/help-guix/2016-12/msg00098.html

Looks like Travis is going to queue this forever. @rkoeninger I'm planning on switching CI on this repo (and Shen/Scheme's too) to GitHub actions, Travis is sucking lately. Just saw...

Yes, I have been using actions for a while and it works quite well (even today I switched a repo from travis to github actions because of how bad travis...

@rkoeninger this is more than good enough, seems like you already did >90% of the work here. I am not familiar with ABCL (didn't even know it existed until now)...