msxbuild/README.md

230 lines
8.3 KiB
Markdown
Raw Normal View History

2020-12-23 17:14:13 +00:00
# MSXBUILD
Utils to use openMSX in build pipelines.
2024-07-01 01:15:31 +00:00
You can use these scripts as-is. the files in the `lib` are all you need.
But as always, feel free to extend it for your specific needs or contribute a fix or feature.
2024-06-20 22:06:30 +00:00
2021-07-04 00:12:48 +00:00
## Features
2020-12-23 17:14:13 +00:00
* Allows parallel headless openMSX build pipeline
2024-06-28 23:25:39 +00:00
* openMSX safe exit failure guards
* Automatic disk image import + export per build step
2021-07-04 00:12:48 +00:00
* Downloads and caches resources from msxhub.com
* Auto magic openMSX extensions and machine rom's setup
* SDCC msx build steps
2024-07-01 01:15:31 +00:00
* Screenshot and/or video output of full build
* Embedded documentation of make options
2020-12-23 17:14:13 +00:00
2021-07-04 00:12:48 +00:00
## Dependencies
2020-12-23 17:14:13 +00:00
2024-07-02 14:56:21 +00:00
* make + wget + tar + awk + grep + dos2unix
2021-07-04 00:12:48 +00:00
* sdcc
2024-06-25 13:57:13 +00:00
* openmsx
2024-07-01 01:15:31 +00:00
* ffmpeg
* rsync
2020-12-23 17:14:13 +00:00
2024-06-23 20:52:31 +00:00
For debian use;
apt-get install make wget tar gawk grep dos2unix sdcc openmsx ffmpeg rsync
2024-06-23 20:52:31 +00:00
## Install Classic
2024-07-01 01:15:31 +00:00
TODO
2020-12-23 17:14:13 +00:00
## Install Docker
2024-07-01 01:15:31 +00:00
TODO
## Usage Setup
2024-07-02 14:31:42 +00:00
Most simple `Makefile` example;
2024-07-02 14:31:42 +00:00
PATH_MSXBUILD ?= ~/somewhere/local/copy/msxbuild/lib
2024-07-02 14:31:42 +00:00
# Optional set own prefix BEFORE include mxsbuild
.RECIPEPREFIX := _
2024-07-02 14:31:42 +00:00
include $(PATH_MSXBUILD)/msxbuild.mk
2024-07-02 14:31:42 +00:00
# Write normal make rules
Use simple with 0module structure add tree include structure.
PATH_SRC := src
$(call mb_make_call,mb_flow_0module_setup,$(PATH_SRC))
Or more complex do a full flow setup of project with;
(note this will call also the 0module_setup for you)
PATH_BIN := bin
PATH_SRC := src
$(call mb_make_call,mb_setup_default,$(PATH_BIN),$(PATH_SRC))
2024-07-02 14:31:42 +00:00
# Write normal and/or dynamic flow rules in many 0module.mk files.
## Rule Writing
TODO: Link to example project on github a few ways to compile and test hello.
## Usage Help
When using the `mb_setup_default` this add a help system which works by running: `make @help | grep "*"`
* @help-variable
* @help-variable-deep
2024-07-05 19:20:14 +00:00
* @help-variable-rock
* @help-variable-flow
* @help-variable-i18n
2024-07-05 19:20:14 +00:00
* @help-function
* @help-function-deep
* @help-function-flow
* @help-target
* @help-target-deep
* @help-target-run
2024-07-14 20:47:57 +00:00
* @help-target-module
* @help-target-assert
2024-07-15 00:34:29 +00:00
* @help-machine
2024-07-05 19:20:14 +00:00
* @help-all
* @help-firemake
* @clean
* @init
* @prepare
* @process
* @compile
* @link
* @build
* @test
* @package
* @package-qa
* @package-deploy
* @all
* @flight-video-build
* @flight-video-test
* @flight-video-package-qa
2024-07-14 20:47:57 +00:00
* @flight-video-all
2024-07-14 20:47:57 +00:00
Running: `make @help-all | grep "*" | wc -l` to count all documented items of an (example) project;
2024-07-14 20:47:57 +00:00
546
2024-07-02 14:31:42 +00:00
2024-07-01 01:15:31 +00:00
## Example Project
2024-06-25 13:57:13 +00:00
2024-06-24 18:41:06 +00:00
When you want to see whats happening do a debug run;
normal run;
2024-07-14 20:47:57 +00:00
time make
real 0m8.058s
2024-06-24 18:55:12 +00:00
2024-06-26 01:48:06 +00:00
debug run at 11 Mhz;
2024-07-14 20:47:57 +00:00
time VERBOSE=on DEBUG=on MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on make
real 2m34.071s
2024-06-24 18:41:06 +00:00
2024-06-24 18:55:12 +00:00
debug run real msx speed;
2024-07-14 20:47:57 +00:00
time VERBOSE=on DEBUG=on MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on MB_OPENMSX_SPEED=100 make
real 2m37.379s
record build run with screenshot on exit;
time MB_OPENMSX_HEADLESS=off MB_FLIGHT_SCREEN=on make @build
real 2m40.784s
2024-07-15 00:34:29 +00:00
record matrix test run with video per session and merge to one video file;
time MATRIX_ASSERT=on make @flight-video-all
real 0m18.184s
2024-06-26 01:48:06 +00:00
2024-07-14 20:47:57 +00:00
full build parallel;
time make -j4 @all
real 0m4.226s
2024-06-30 03:51:26 +00:00
2024-07-07 16:16:00 +00:00
manual test all packages on other MSX1 machine;
2024-07-14 20:39:03 +00:00
make ASSERT_MSXHUB_MACHINE=Philips_VG_8000 bin/assert/msxhub/@run
2024-07-12 15:59:26 +00:00
view the make graph of an target;
2024-07-14 20:39:03 +00:00
make -Bnd bin/example/dist-hello-qa-msx1/@assert | make2graph | dot -Tpng -o /tmp/out.png;open /tmp/out.png
2024-07-12 15:59:26 +00:00
2021-07-04 00:12:48 +00:00
2021-07-03 02:15:15 +00:00
## Errata
* (?19++) Very sometimes the fail_after "boot_err" watchdog doesn't get canceled
2024-07-12 15:59:26 +00:00
* Make: @@include-mods will not get chained, it doesn't list ANY dep anymore
* Make: @@include-tree will not get phony, (and thus @@include-root not on top)
2024-07-06 10:15:28 +00:00
* boot_exec_setcolor: does not work on MSX1 vdp TMS9918
2021-07-04 00:12:48 +00:00
* Doesn't work on windows
* TODO: mbboot80+add arg prefix and move to other repro + msxhub package
2024-07-01 01:15:31 +00:00
* TODO: Missing C and mixed support
* TODO: Use TCL for BASIC/ASM/C lcov (Cobertura) code coverage
2024-06-20 22:06:30 +00:00
2024-07-06 10:15:28 +00:00
2024-07-01 01:15:31 +00:00
## OpenMSX backlog issues
2024-07-13 12:18:31 +00:00
* Only all all 16 bit unicode fonts because unicode is 21 bit but imgui is not
2024-07-06 10:15:28 +00:00
* (FIXED:rm-SDL) Bug: screenshots sometimes segfaults when using SDL renderer
* (FIXED:add-issue) Screenshots don't work without throttle
2024-07-06 10:15:28 +00:00
* (FIXED++) Audio device init option + warning messages on computer without sound card
* (#1669) MIDI device init option + warning messages on computer without sound card
* (#1671) Enhancing the IDE CD-ROM support
* (#1704) Allow `<type>IDEHD</type><DeviceName>OPENMSX IDEHD</DeviceName>` now hardcoded in IDEHD.CC:37 + update default for mode 40
* (#1705) Diskmanipulator export (sync) fully non-cased filename compare (duplicates)
* (#1705) Diskmanipulator export (sync) don't touch/overwrite unmodified files
2024-07-01 01:15:31 +00:00
* Diskmanipulator reuse the device defined filename
2024-07-06 10:15:28 +00:00
* Diskmanipulator Imported folders in openMSX; `cd utils;cd ..;dir` breaks, use `cd utils:cd a:\;dir` as workaround
2024-07-01 01:15:31 +00:00
* run instance-id or run/process-label to replace hardcoded "untitled1" path
* Remove msg or add ignore sram-fully or blank setting: SRAM file nms8250.cmos not found, assuming blank SRAM content.
* Video record append mode + optional multiple previds to glue videos as one
* SDL-NULL as window less renderer so that screenshot and/or video works headless
2024-07-10 19:17:24 +00:00
* Video record remove blue start frame on start of recording
2024-07-06 10:15:28 +00:00
* (FIXED++) Allow for `set renderer none` in TCL or command argument for headless mode
* (DONE) DocUpdate: Added optional exit code of exit command
2024-07-01 01:15:31 +00:00
* DocUpdate: Add speed note because it is slow + add example "after quit {export hdd}"
* DocUpdate: Wrap all TCL commands in catch+stderr+exit1
* DocUpdate: Add 'headless' example via stdio+new + link to control omsxctl
2024-07-06 10:15:28 +00:00
## Make4++ backlog issues
Since `.RECIPEPREFIX` is added to make, it broke library support and having per call different
dynamic white space rules is also really hard for a human brain.
2024-07-13 13:16:17 +00:00
To fix make5 will use (IBM spec) binary files to express the rules.
2024-07-06 10:15:28 +00:00
* Add a few new define's to have official make documentation
2024-07-10 17:17:40 +00:00
* BUG: Unicode read+parse ok but function call fails on `include $(MB__BASEPATH)/lib/make/प्रणालीᐥᔆʸᔆᐪᓫᔿ/mb_doc.mk`.
* Add a checked call function `ccall` which exits on undefined call argument
* Add `call` and `ccall` debug trace option
2024-07-06 10:15:28 +00:00
* Add -e option to make internal echo command for escaped sequences
* Add native OS functions for `os_echo,os_file_copy,os_file_delete,os_folder_delete,os_folder_create,etc`
* Add string letters function
* Add string isascii function (death with unicode)
* Add lowercase and uppercase functions (full 21bit unicode support)
2024-07-06 10:15:28 +00:00
* Add XML output for help system for integration with IDE's
* Add `wildcard_treewalker` for deeper searches
2024-07-06 10:29:38 +00:00
* Add namespace support for variables/functions/targets like: moduleX::bin/prog.o: moduleX::src/prog.c
2024-07-06 10:15:28 +00:00
* Add checksum function to calc checksum for file
* Add `os_copy_diff` function to use checksums to copy only changed files
* Allow make to use checksums not timestamps to detect file updates
2024-07-13 13:42:04 +00:00
Make version 5 will bring `make` to the last century;
* Make5: Define (binary) namespaced XML to replace ascii Makefile syntax
2024-07-06 10:29:38 +00:00
* Make5: Remove guile support fully (maybe replace with embedded MSX BASIC)
2024-07-06 10:15:28 +00:00
* Make5: Add converter command for upgrade make4 syntax and option to run make4 file.
* Make5: move all internal's to namespace's
* Make5: Replace all ultra short 1980's magic templates variables with ultra long human readable name
2024-07-06 10:15:28 +00:00
* Make5: upgrade to new BDOS split file and folder API in OS kernel VFS layer
* Make5: Delete all Old-Fashioned Suffix Rules code
* Make5: Delete .EXPORT_ALL_VARIABLES and `export` without variable
* Make5: (Opt?) Delete VPATH search variable (replace with namespace vpath ??)
2024-07-06 10:15:28 +00:00
* Make5: Delete/refactor all (old) code that make the make code ugly
* Make5: Adds zillala (emacs like) bug reporting output for when make fails script or internally
2024-07-13 13:42:04 +00:00
* Make5: Replace all trace/debug/base-print with XML output + optional XSLT + wrap old argu
Make version 6 will bring `make` to the current century;
2024-07-06 10:15:28 +00:00
* Make6: Only support 18bit four corner method, fixed i18n words, no letters, no ascii, no unicode
2024-07-13 13:42:04 +00:00
* Make6: Only support octal based (18 and/or 144 bit) computers (the new MSX'es)
* Make6: Only support new BDOS version (split folders from files)
Make version 7 will bring `make` to the next century;
2024-07-06 10:15:28 +00:00
2024-07-13 13:42:04 +00:00
* Make7: Make without source, all make code is generated from the nether skynet step code definitions
2024-07-13 13:43:47 +00:00
* Make7: If the OS kernel "ATARI TERMINATOR AI" thinks it is faster to run make rules in VHDL it will be done so