mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-25 07:19:02 +00:00
Fix regression when building deathstar.com for aarch64 (#957)
It turns out my earlier commit ddc08dc974
caused a build with
MODE=aarch64 to fail. The commit changed deathstar.c to link
in code to support a VGA console, but this is not implemented
yet for AArch64. Thanks to @ahgamut for spotting this issue.
This commit is contained in:
parent
665747a319
commit
7010a8081e
1 changed files with 2 additions and 0 deletions
|
@ -15,8 +15,10 @@
|
||||||
#define FRAMERATE 23.976
|
#define FRAMERATE 23.976
|
||||||
#define WRITE(s) write(1, s, strlen(s))
|
#define WRITE(s) write(1, s, strlen(s))
|
||||||
|
|
||||||
|
#ifdef __x86_64__
|
||||||
__static_yoink("vga_console");
|
__static_yoink("vga_console");
|
||||||
__static_yoink("EfiMain");
|
__static_yoink("EfiMain");
|
||||||
|
#endif
|
||||||
|
|
||||||
struct Sphere {
|
struct Sphere {
|
||||||
double cx, cy, cz, r;
|
double cx, cy, cz, r;
|
||||||
|
|
Loading…
Add table
Reference in a new issue