metayan
metayan
Also tried ``` sbcl --no-sysinit --no-userinit --eval "(setf *print-case* :downcase)" \ --load ~/quicklisp/setup.lisp --eval '(ql:quickload :varjo)' ``` (after clearing `~/.cache/common-lisp/sbcl-1.4.1-macosx-x64/` of course.) and got the same error. (Just to make...
Until https://github.com/cbaggers/varjo/commit/24da4aebe1c9ecaeb3d6dee2b3051a3b31836841 this was emitted: ``` void main() { _FRAGMENT_STAGE_OUT_0 = texture(TEX,(vec3(float(-1),float(1),float(1)) * v_in._VERTEX_STAGE_OUT_1)); return; } ```
By the way, how cool is it that we can checkout a different version of a package and just `ql:quickload` it into a **running** program? Discovering more and more Lisp...
@TheFausap : Until #23 is merged, if we already have a cloned repo, we can inside the MBuild directory do something like ``` git remote add mparlaktuna https://github.com/mparlaktuna/MBuild git fetch...
Mezzano is run directly on hardware ("bare metal") or in a virtual machine (QEMU/VirtualBox). A virtual machine with Mezzano can be started from the command line. If you wish to...
Yes, commenting that out allowed it to get a bit further, yet Portacle is behaving differently from plain SBCL. Ran into [this issue in Quicklisp](https://github.com/quicklisp/quicklisp-client/issues/74) on the way. With SBCL...
Yes, it seems like that. `(compile-file #P"/Applications/portacle/mac/asdf/asdf.lisp")` solved it. Now it's correctly found. Maybe `logical-pathname-translations` could be tweaked to correctly find the sources to the FASLs that are precompiled on...
Header of the original `mac/sbcl/lib/sbcl/contrib/uiop.fasl` (compiled on your system): ``` #!/Users/linus/portacle/build/sbcl/src/runtime/sbcl --script # FASL compiled from "SYS:CONTRIB;ASDF;UIOP.LISP.NEWEST" using SBCL version 1.3.17 ``` After recompiling the asdf.lisp above, I don't have...
Also, found `mac/sbcl/lib/sbcl/contrib/asdf.fasl` The `mac/asdf/asdf.fasl` from the original .dmg has ``` #!/Users/linus/portacle//mac/sbcl/bin/sbcl --script # FASL compiled from "asdf.lisp" using SBCL version 1.3.17 ```
Nicely done. I tried adding `Cpp11BracedListStyle: false` to get some space in {} lists but it does a bit more than I was hoping for. A simple `SpacesInBraces` option matching...