[Tinycc-devel] Include non-standard library

2016-10-04 Thread Chen, Xianwen
Dear developers, I would like to include a library that is not in standard path under Windows. Say it's located in C:\foo\bar.h I tried to compile the prog.c file by tcc -Idir C:\foo prog.c . However, I was told tcc: error: file 'C:\foo' not found. I understand that it's a simple question. Howev

Re: [Tinycc-devel] Include non-standard library

2016-10-04 Thread Chen, Xianwen
Dear Christian, That helped. Thank you for the help! Warm regards, Xianwen On 10/4/16, Christian Jullien wrote: > What about? > tcc -I C:/foo prog.c > > -Original Message- > From: Tinycc-devel > [mailto:tinycc-devel-bounces+eligis=orange...@nongnu.org] > On Behalf Of

[Tinycc-devel] Use TCC with GSL under Windows

2016-10-11 Thread Chen, Xianwen
Dear TCC developers, I have been very impressed by the size of exe's that TCC produces in Windows. For the simple hello_world.c, TCC produces an exe of 2 KB, while mingw-w64 produces an exe of 164 KB. Therefore, I would like to continue to learn to use TCC. One thing I try to do is to use TCC tog

Re: [Tinycc-devel] Use TCC with GSL under Windows

2016-10-11 Thread Chen, Xianwen
at 11:43:40PM +0200, Chen, Xianwen wrote: > > I have been very impressed by the size of exe's that TCC produces in > > Windows. For the simple hello_world.c, TCC produces an exe of 2 KB, while > > mingw-w64 produces an exe of 164 KB. Therefore, I would like to continue &g

Re: [Tinycc-devel] Use TCC with GSL under Windows

2016-10-17 Thread Chen, Xianwen
Dear Michael, Thank you. I'm using the latest release, but not the latest version as of the source code. Are you suggesting me to compile tcc itself from source codes? Warm regards, Xianwen On 14.10.2016 17:56, Michael Matz wrote: > Hi, > > On Tue, 11 Oct 2016, Chen, Xianwen