René Vincent Jansen
René Vincent Jansen
The clang compiler on the M1 macs does not like -march=native. This can be remedied by a ``` set(PRIVATE_HELIB_CXX_FLAGS "-mcpu=lightning") ``` in the CmakeLists.txt file. This issue documents the change.
it might be a good idea to add this to the instructions to save someone ten minutes on stack exchange
As a result of a discussion on the hercules list OPCODES VMARC came in the picture, when I tested it on VM/370 it turned out that a newer maclib format...
in FSCLEAR, bottom line: ``` For general information on the REXX full-screen interface function package, enter---> HELP REXXEXT FULLSCRE ``` also FSEND FSWRITE FSCLRFLD FSEWRITE FULLSCRE FSDATA FSVARS
This is a starting place to record functional requests for a new VM/370 distribution
``` 115 - cipher_test (SIGTRAP) ```
This works: ``` rxvm ts_substr ../rexx/substr ../rexx/raise ../rexx/right ``` This does not work: ``` rxvm ts_substr /Users/rvjansen/apps/crexx_release/lib/rxfns/rexx/substr /Users/rvjansen/apps/crexx_release/lib/rxfns/rexx/raise /Users/rvjansen/apps/crexx_release/lib/rxfns/rexx/right ```
The regex plugin fails on my windows 11 with ``` FAILED: lib/plugins/regex/CMakeFiles/_regex.dir/regex.c.obj C:\ProgramData\chocolatey\bin\gcc.exe -DBUILD_DLL -DPLUGIN_ID=rx_regex -D_regex_EXPORTS -IC:/Users/rvjansen/apps/CREXX/rxpa -D__USE_MINGW_ANSI_STDIO=1 -O3 -DNDEBUG -std=gnu90 -MD -MT lib/plugins/regex/CMakeFiles/_regex.dir/regex.c.obj -MF lib\plugins\regex\CMakeFiles\_regex.dir\regex.c.obj.d -o lib/plugins/regex/CMakeFiles/_regex.dir/regex.c.obj -c C:/Users/rvjansen/apps/CREXX/lib/plugins/regex/regex.c...
``` /* rexx */ options levelb say 'hello' line = 'hello' rest= 'there' assembler sayx line assembler sayx rest say2 ``` The `say2` was a typo, but it triggers ```...