Peter Ludemann
Peter Ludemann
I suppose I should document `swipl.home`, then. :) Getting back to the original problem, a saved state contains: ```txt Length Date Time Name --------- ---------- ----- ---- 124 2023-08-28 17:12...
How would I use `swipl ... -c file.pl` to create a self-contained executable with my C code as "main"? There seem to be 3 places where ansi_term is used: -...
The problem seems to be that `library(listing)` uses `ansi_format/3` ... `setup_colors/0` in `toplevel.pl` appears to do the right thing in a dumb terminal (such as an emacs shell). However, `setup_colors/0`...
Or put `if(current_prolog_flag(color_term,true))` around the `autoload(library(ansi_term))` in module `listing`? And have two versions of `comment/2`? ... How would you access the value of the `class` option of `qsave_program/2`? `:-if(\+ current_prolog_flag(qsave_class,runtime)`?...
Before each test, I did `rm -rf` on the build directories. To determine the command line for compiling, I introduced a syntax error in either `pl-atom.c` or `test_cpp.cpp`, which caused...
I've upgraded my system, and now using gcc etc in the usual place (`/use/bin`). This has fixed a number of problems, including no need for `LD_PRELOAD` when running tests with...
My experience from ~20 years ago, using POSIX threads on a non-Unix real-time OS (VxWorks, IIRC) is that if you don't do things exactly right,(*) all kinds of weird things...
OK, I'll do a minor update to the code and documentation. `--no-pce` seems to be a good choice, although it doesn't solve the problem I reported in issue #1193
If you were to replace `swipl-ld` with something else, what would that something else be? It seems that there are 3 parts: - a `cc` or `c++` wrapper - a...
LibCST builds on parso. Comparing stars on GitHub: - https://github.com/PyCQA/redbaron : 457 - LibCST: 423 - parso: 296 - awpa: 10 https://bugs.python.org/issue40360#msg367726 and https://bugs.python.org/issue40360#msg367730