Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
493 views

Compile and run a file.c using Tiny C Compiler on Windows

Could I get a step by step on how to compile my file.c using Tiny C Compiler and Windows prompt? Some questions I already have: Where do I stick all TCC files from the download? Do I have to ...
2
votes
2answers
558 views

Tiny C Compiler (TCC) and winsock?

Can I use a socket library from TCC? I can't find any reference to winsock or sys/socket.h in the include directory. If i remember correctly, winsock was part of the windows platform SDK (?) If so ...
2
votes
2answers
644 views

Problems compiling TCC on OS X

Has anyone successfully compiled TCC on OS X? From what I know it should be possible but when I run make I get the following error: $ make gcc -o tcc tcc.c -DTCC_TARGET_I386 -O2 -g -Wall ...
2
votes
4answers
928 views

Is there something like libtcc for C++, or an extremely fast C++ compiler?

There is very good compiler tcc and its library libtcc, that allows direct compilation of code inside code. i.e. Allows creation of self-generated code. I'm looking for similar library for C++, if ...
1
vote
3answers
154 views

Gcc compiler C string assignment issue

I wrote this code because I'm having a similar problem in a larger program I'm writing. For all I know the problem is the same so I made this small example. #include <stdio.h> typedef struct { ...
1
vote
2answers
78 views

Questions about implementation of a global register allocator for the tiny c compiler

Hey guys, upcoming summer i will hopefully start writing my masters thesis and i have been quite busy looking for a thesis subject. I now have a pool of subjects that i am interested in and the one ...
1
vote
4answers
1k views

Examples of compiling win32 api c programs (through command line) on windows

Attempting to do something very simple - compile basic win 32 c programs through windows cmd. This is something I should be able to do myself, but I am just so stuck here.. I keep stumbling into ...
0
votes
0answers
20 views

cocorc (Cocor/R ported in C/C++) wont compile from source on windows but compiled perfectly on linux

I'm using mingw gcc (version 4.6.1) compiler to compile Coco/R from source. I download the coco/r source code for C (cocorc17.zip) from http://www.scifac.ru.ac.za/coco/#C/C++ and try to compile it ...
0
votes
1answer
90 views

Long Long, decimals and input validation in C

Currently I'm using TCC as it's the easiest thing to get setup on windows. Simply unzip and you're ready to go. However I'm open to other compilers, GCC, whatever microsoft has on offer etc. My ...
0
votes
1answer
210 views

Tiny C Compiler: Undefined symbol “main” when main is defined?

I have a main function, but when tcc goes to link everything together, it says its undefined. Why is this? I'm using a python build script, and arguments are passed as lists: ['v:/exe/tcc/tcc.exe', ...
0
votes
2answers
199 views

OpenGL + Tiny C Compiler: “, expected”

I am working on a program and am using Tiny C Compiler with SDL and OpenGL. TCC doesn't include headers for opengl, so I tried copying them from both Visual C++ and MinGW. Both of them fail to compile ...
0
votes
0answers
15 views

Running ex1 with TCC under OSX?

I'm trying TCC under OS X. I had to make some modifications following this answer to make it compile. Trying to run the ex1.c included with the source I get: In file included from ./ex1.c:3: In file ...
0
votes
1answer
118 views

TCC and winsock.h

I have already read Tiny C Compiler (TCC) and winsock?, but I still can't compile sockets with TCC, because when I try tiny_impdef winsock.dll -o winsock.def tiny_impdef responds: Not a PE file: ...
0
votes
0answers
74 views

Workaround for variable length array in TCC (Tiny C compiler)

What´s the best workaround to implement variable length array´s in TCC ?. I´m really want "translate" code for GCC/Mingw like these char str[i+15]; float vec[varlen]; to TCC. Thanks. Alejandro ...
0
votes
1answer
195 views

Can Tiny C compiler be used for Open CV code compiling?

I am new to OpenCV and I have only Tiny C compiler configured on my Windows XP machine. Can I use this tiny C compiler to compile opencv programs for image manipulations. I have alredy installed ...
0
votes
3answers
3k views

How can i Compile a C program on Dos prompt using tcc and tc

I want to compile c program on dos prompt using tcc as well as tc without using c editor. please give the full procedure.
0
votes
1answer
667 views

intel syntax tcc (tiny c compiler)

I'm wondering if it's possible to use inline assembly with the intel syntax in c, using tcc (not gcc) thanks
0
votes
3answers
8k views

How to set the Turbo C path in windows?

I am Manoj again here to ask my doubts How to set the turbo c path in windows globally? so that i can compile and run my c progrmas which are in other drives any where in the command prompt in windows ...
-1
votes
2answers
379 views

Tiny C Compiler and Virus warnings

I wanted to try out the TCC and got the Win32 Binary zip file from the website. upon decompressing it I tried to compile the "hello_win.c" source from the example directory. As soon as the compiler ...