[Tinycc-devel] Can use GIT

2008-09-15 Thread grischka
Thanks to Kirill Smelkov we have a public GIT repository now for our favorite TinyC Compiler. http://repo.or.cz/w/tinycc.git To get into practice with GIT, I pushed the last changes from CVS and merged Daniel's work on ARM-target cross-compiling on top of it. If GIT is not for you,

[Tinycc-devel] too many basic types error

2008-09-15 Thread Josh Goldstein
Hello, I'm getting this error: too many basic types Here's some of my code: struct math_op { int type; union math_value { char op; int num; char* varname; }; }; struct node { void *data; struct node* next; }; union var_data { double my_double;

Re: [Tinycc-devel] too many basic types error

2008-09-15 Thread Daniel Glöckner
On Mon, Sep 15, 2008 at 02:23:45PM -0700, Josh Goldstein wrote: /* struct var_value { int var_type; union var_data my_data; } */ If I uncomment the commented part, I get the error. Is there a limit on the number of structs or unions you can define? Yes, but it is VERY high.