Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Also switch to clang++ as the C++ compiler in order to fix the following
error message:
> g++ -o x16emu build/x16emu/cpu/fake6502.o […] -flto
> build/x16emu/cpu/fake6502.o: file not recognized: file format not recognized
> collect2: error: ld returned 1 exit status
|
|
|
|
The original Makefile tries to calculate a Git revision number from the
source tree. Unless the source tree happens to be a checked-out
Git worktree, that causes standard output to be flooded with lots of
unhelpful error messages and help texts.
If Git is not installed at build time, similar error messages would
occur.
Short-circuit the Git revision calculation to prevent this.
|
|
|
|
As of 2023-02-27, the upstream project team has moved [1] all primary
development to a different GitHub organization, X16Community. [2]
Also promote x16-rom [3] from an `optdepends` to a hard dependency,
because the emulator won’t run without a ROM in lock-step revision.
[1]: https://cx16forum.com/forum/viewtopic.php?t=6382
[2]: https://github.com/X16Community
[3]: https://aur.archlinux.org/packages/x16-rom
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit d11cc2a0ae2537aa5cc9509418466396c5d907c0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|