mirror of
https://github.com/RGBCube/serenity
synced 2025-06-29 03:42:07 +00:00

This adds just enough scaffolding to make cmake succeed. The build falls over immediately.
13 lines
286 B
ArmAsm
13 lines
286 B
ArmAsm
/*
|
|
* Copyright (c) 2021, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
.p2align 4
|
|
.globl _plt_trampoline
|
|
.hidden _plt_trampoline
|
|
.type _plt_trampoline,@function
|
|
_plt_trampoline: # (object, relocation_index)
|
|
# FIXME: Possibly incomplete.
|
|
ret
|