Add FreeBSD to bootstrap.c to make building from source easier in FreeBSD 14

This commit is contained in:
Lateef Jackson 2023-12-17 16:43:11 -08:00 committed by Andrew Kelley
parent cd7960ea75
commit f36ac227b1

View File

@ -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