Commit f36ac227b1

Lateef Jackson <lateef.jackson@gmail.com>
2023-12-18 01:43:11
Add FreeBSD to bootstrap.c to make building from source easier in FreeBSD 14
1 parent cd7960e
Changed files (1)
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