I need this for calling a C function from Java class (JNI) and I know that there are options to do this using "Microsoft Visual C++ compiler". (explained here)

But I am interested to know if something similar can be done using TC or TCC.

I don't have a copy of "Microsoft Visual C++" and not sure if cl.exe is available without having to install "Microsoft Visual studio"

link|improve this question

50% accept rate
1  
Why don't you install visual studio express edition? It is free.. – Naveen Nov 3 '09 at 12:52
If I Google it, I see that its been asked few times but didn't get the answer that whether this is possible or not. – akjain Nov 3 '09 at 12:53
If you down load Visual Studio (which, yes is free) You need to register it or you will get a notice everytime you start that it is trialware. – Romain Hippeau May 9 '10 at 2:51
feedback

5 Answers

Short answer: TC is perfectly capable to create a DLL.

Long answer: Turbo C++ is very old. The JNI include files might be using some language features not supported by TC. You might have better luck using another free compiler, for example Visual C++ 2008 Express.

link|improve this answer
@DR The "Visual C++ 2008 Express" required .Net Framework 3.5. I have .Net 2.0 installed. Can you post link to an older version of this expess edition which will work with .Net 2.0 Also, if its possible with TCC, was just curious to know how. (if you have any idea) – akjain Nov 3 '09 at 13:04
No - while the Visual C++ Express Editions are free for personal use, you may not distribute them. Microsoft is the copyright owner, and today they only distribute the VS2008 Express Edition, not 2005. – MSalters Nov 3 '09 at 13:16
feedback

MinGW is a free port of gcc. Great alternative to VS. Here is a tutorial on how to build jni libraries. TC is too old.

link|improve this answer
feedback

cl.exe is available without the full Visual Studio IDE. The 'Express' install for Visual Studio C++ has an option to install only the command line tools (handy for build machines).

Of course, you can install the IDE, too. You'll get the command line tools in that installation as well.

Finally, the Windows Driver Kit (WDK) comes with a command line compiler.

Also, the Turbo C/C++ you linked to is from 1991 - I'm not sure if it can generate DLLs, but it almost certainly can't generate a Win32 DLL (I'd guess that the best if can do is a Win16 DLL). I wouldn't use it for anything except curiosity/nostalgia. I'd consider it a miracle if it could do anything with JNI.

link|improve this answer
feedback

Yes I agree with DR. You will be much better off using one for MS's free tools (Visaul C++ Express) Just create a library project, code away and then compile it down to a DLL.

Cheers

link|improve this answer
feedback
up vote 0 down vote accepted

Yes its possible

I have written a simple tutorial for implementing a "Hello World" program using "Borland Turbo C++" and JDK 1.5

Check it out - here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.