[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: #1850: Chicken doesn't compile with TCC anymore
From: |
Chicken Trac |
Subject: |
Re: #1850: Chicken doesn't compile with TCC anymore |
Date: |
Mon, 03 Feb 2025 12:49:11 -0000 |
#1850: Chicken doesn't compile with TCC anymore
---------------------------------------+--------------------
Reporter: zilti | Owner: (none)
Type: defect | Status: closed
Priority: minor | Milestone: 6.0.0
Component: core libraries | Version: 6.0.0
Resolution: fixed | Keywords:
Estimated difficulty: |
---------------------------------------+--------------------
Changes (by zilti):
* status: new => closed
* resolution: => fixed
Comment:
Fixed with the following patch:
{{{
---
chicken.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/chicken.h b/chicken.h
index 49e38d75..3ad970e9 100644
--- a/chicken.h
+++ b/chicken.h
@@ -94,6 +94,10 @@
# define C_GNU_ENV
#endif
+#if defined (__TINYC__)
+# define __STDC_NO_COMPLEX__
+#endif
+
#if defined(__MINGW32__)
/*
* XXX This should probably be renamed or changed because it's
misleading.
--
}}}
--
Ticket URL: <https://bugs.call-cc.org/ticket/1850#comment:1>
CHICKEN Scheme <https://www.call-cc.org/>
CHICKEN Scheme is a compiler for the Scheme programming language.