From be696e64e9b8d5d8b8f676d66b248e4d834b377f Mon Sep 17 00:00:00 2001 From: "John Hodge (sonata)" Date: Wed, 5 Nov 2014 15:05:50 +0800 Subject: [PATCH] ARCH=native Fix crtn to return --- Usermode/Libraries/crt0.o_src/native-crtn.S | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Usermode/Libraries/crt0.o_src/native-crtn.S b/Usermode/Libraries/crt0.o_src/native-crtn.S index 636743c2..f884c09d 100644 --- a/Usermode/Libraries/crt0.o_src/native-crtn.S +++ b/Usermode/Libraries/crt0.o_src/native-crtn.S @@ -1,5 +1,7 @@ .section .init /* gcc will nicely put the contents of crtend.o's .init section here. */ + ret .section .fini + ret /* gcc will nicely put the contents of crtend.o's .fini section here. */ -- 2.20.1