diff options
author | yzhu <[email protected]> | 2020-10-20 21:42:34 +0800 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2021-08-31 20:58:58 -0400 |
commit | a103113db0ffc06d6f0127cb2ef87cc6a4e518ae (patch) | |
tree | 3dedc9bf39ebb6e4b9555649e1ca83614a600f01 | |
parent | 840aae871fa1df9fdc4684ccc39709bf2878f6ea (diff) | |
download | xv6-labs-a103113db0ffc06d6f0127cb2ef87cc6a4e518ae.tar.gz xv6-labs-a103113db0ffc06d6f0127cb2ef87cc6a4e518ae.tar.bz2 xv6-labs-a103113db0ffc06d6f0127cb2ef87cc6a4e518ae.zip |
fix ld warning: undefined symbol _entry
-rw-r--r-- | kernel/entry.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/entry.S b/kernel/entry.S index b72ddbc..90fdbac 100644 --- a/kernel/entry.S +++ b/kernel/entry.S @@ -3,6 +3,7 @@ # kernel.ld causes the following code to # be placed at 0x80000000. .section .text +.global _entry _entry: # set up a stack for C. # stack0 is declared in start.c, |