From f36ac227b13884f42f259bc38c5b0aa012273799 Mon Sep 17 00:00:00 2001 From: Lateef Jackson Date: Sun, 17 Dec 2023 16:43:11 -0800 Subject: [PATCH] Add FreeBSD to bootstrap.c to make building from source easier in FreeBSD 14 --- bootstrap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.c b/bootstrap.c index d8996b462f27..08fff00b2d06 100644 --- a/bootstrap.c +++ b/bootstrap.c @@ -60,6 +60,8 @@ static const char *get_host_os(void) { return "macos"; #elif defined(__linux__) return "linux"; +#elif defined(__FreeBSD__) + return "freebsd"; #else #error TODO implement get_host_os in this build script for this target #endif