From c93eec4f05c9193b982cebf3070367a029ab196d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 22 May 2025 20:40:33 -0500 Subject: [PATCH] [teagba] Make cstart.cpp only compile if GCC --- deps/teagba/src/cstartup.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deps/teagba/src/cstartup.cpp b/deps/teagba/src/cstartup.cpp index e3845e03..a3603465 100644 --- a/deps/teagba/src/cstartup.cpp +++ b/deps/teagba/src/cstartup.cpp @@ -2,6 +2,8 @@ * Copyright 2016 - 2024 Gary Talent (gary@drinkingtea.net). All rights reserved. */ +#ifdef __GNUC__ + #include #include @@ -58,3 +60,5 @@ int c_start() { } } + +#endif