Skip to content

Commit

Permalink
arch/riscv64: Add 'plthook.S' to resolve compile errors
Browse files Browse the repository at this point in the history
This is a commit to fix an issue where the architecture-dependent
'plthook.S' file is not found at compile time in the RISC-V
environment.

It is only a declaration because there is no support for 'plthook.S'
at this stage.

Signed-off-by: Gichoel Choi <gichoel3101@gmail.com>
  • Loading branch information
gichoel committed Aug 25, 2023
1 parent b830534 commit e96ecba
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions arch/riscv64/plthook.S
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include "utils/asm.h"

.text

ENTRY(plt_hooker)
END(plt_hooker)

ENTRY(plthook_return)
END(plthook_return)

0 comments on commit e96ecba

Please sign in to comment.