mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 17:07:47 +00:00
CMake: Let Meta/serenity.sh run aarch64
make it past cmake
This adds just enough scaffolding to make cmake succeed. The build falls over immediately.
This commit is contained in:
parent
a43ad0e706
commit
bbad4758b2
9 changed files with 115 additions and 23 deletions
15
Userland/Libraries/LibC/arch/aarch64/setjmp.S
Normal file
15
Userland/Libraries/LibC/arch/aarch64/setjmp.S
Normal file
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Nico Weber <thakis@chromium.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
.global setjmp
|
||||
setjmp:
|
||||
# FIXME: Possibly incomplete.
|
||||
ret
|
||||
|
||||
.global longjmp
|
||||
longjmp:
|
||||
# FIXME: Possibly incomplete.
|
||||
ret
|
Loading…
Add table
Add a link
Reference in a new issue