From 8370d0a3eb373c37386de32ccd3a8a38ddeb8b02 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 6 Apr 2024 19:46:41 -0400 Subject: build: Statically link libc Signed-off-by: Ian Moffett --- usr.sbin/init/Makefile | 7 +++---- usr.sbin/init/main.c | 5 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) (limited to 'usr.sbin/init') diff --git a/usr.sbin/init/Makefile b/usr.sbin/init/Makefile index a7af644..13ac173 100644 --- a/usr.sbin/init/Makefile +++ b/usr.sbin/init/Makefile @@ -1,7 +1,6 @@ -CC = -LD = -LDSO = +include ../sbin.mk .PHONY: all all: - $(CC) -pie -nostdlib main.c -o init -e main + @ # $(CC) -pie -nostdlib main.c -o init -e main + $(CC) main.c -o init $(INTERNAL_CFLAGS) diff --git a/usr.sbin/init/main.c b/usr.sbin/init/main.c index af62d76..e840c8e 100644 --- a/usr.sbin/init/main.c +++ b/usr.sbin/init/main.c @@ -1,6 +1,5 @@ int -main(void) +main(int argc, char **argv) { - /* Do nothing */ - while (1); + return 0; } -- cgit v1.2.3