NO

Author Topic: TinyCC x64 compiler  (Read 3371 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
TinyCC x64 compiler
« on: October 09, 2016, 08:25:08 PM »
TinyCC x64 compiler compiled with msvc 2015 and linked against msvcrt.dll.
Native x64 version.

An example to compile with it:
Code: [Select]
int printf(const char * restrict format, ...);
int main(void)
{
printf("Hello C\n");
return 0;
}
http://repo.or.cz/tinycc.git

EDIT -O1 optimized binaries in xtcc3264.zip
« Last Edit: October 10, 2016, 07:27:40 PM by TimoVJL »
May the source be with you

Offline Vortex

  • Member
  • *
  • Posts: 801
    • http://www.vortex.masmcode.com
Re: TinyCC x64 compiler
« Reply #1 on: October 09, 2016, 08:44:55 PM »
Hi TimoVJL,

Thanks for attachment. I will check it. Kindly, if you have the time, could you please recompile and attach here the 32-bit version of TinyCC linked against msvcrt.dll? Thanks.
Code it... That's all...

Offline jcfuller

  • Member
  • *
  • Posts: 36
Re: TinyCC x64 compiler
« Reply #2 on: October 10, 2016, 01:58:30 PM »
I have coded on and off with both the 32 and 64 versions of tcc for a number of years.
I am not sure what the url is/was for the 9.2.6 64 bit windows binary I have.

This version is HUGE in comparison to the one I have and it also produces larger exe's?

The biggest issue I have always had  is a limited 64 bit winapi include compared to the 32 bit version.

James