Where are the compilers?
DCF FAQAll the Sun compilers are in /opt/SUNWspro/bin (Solaris) C, C++, Fortran GNU compilers are in /opt/local/bin directory.
Related QuestionsCrandun Technologies - Frequently Asked QuestionsOn Windows, we currently support the Microsoft Visual C/C++ version 6.0 compiler, as well as Microsoft Visual Basic version 6.0. Although not supported, any compiler which adhers to Microsoft's standard DLL calling convention should also work.Related Questions
OKI - FAQOur compilers are somewhat of a personal preference to our programmers. MetroWerks CodeWarrior Professional and Microsoft Visual C/C++. We debug with their respective source code debuggers. For the hard core stuff we use Numega Soft Ice (PC) and Macsbug (on the Mac). We subscribe to (belong?) MicroSoft Developer Network and the Apple Certified Developer Program, and of course, we're friends Tux and the rest of the Linux Community.Related Questions
PC Demos FAQ -- Official FAQ of comp.sys.ibm.pc.demosIn order to make a demo, you need to know how to program. (Self-explanatory, I guess, but we still needed to address it. :-) You need to know a common language that lends itself to programming DOS programs, like Assembler, Pascal, or C/C++. GNU C for DOS (this is a FREE 32-bit C compiler! You can get it at ftp://ftp.idsoftware.com/djgpp/v2 or http://www.rt66.com/~brennan/djgpp/Related Questions
What compiler does Cygwin/X use, and which compilers are supported?
Cygwin/X Frequently Asked QuestionsCygwin/X uses the gcc compiler from the Free Software Foundation. Cygwin/X source code is mostly ANSI C compliant, but we cannot guarantee that Cygwin/X will compile with any other compiler, nor can we afford the time to support compilers other than gcc.
Related QuestionsHow do I use different or multiple compilers?
Cons FAQVersion 1.2You need different environments specifying what CC is for each compiler: $CONS = new cons(); # GNU C build environment $CONS_GCC = clone $CONS( CC => "gcc", ); # Microsoft Visual C build environment $CONS_MSVC = clone $CONS( CC => "cl", ); Library $CONS_GCC "mylib.a", qw(a.c b.c c.c); Library $CONS_MSVC "mylib.a", qw(x.c y.c z.c);
Related QuestionsWhich compilers can I use to build the library?
BBC R&D - MOT - FAQThe NT version of the library is designed to be compiled with MS Visual C++. The version I used was 6.0 and appropriate workspace files are provided with the distribution. Open a browser and point to http://localhost/index.html (or whatever page is appropriate for your site). See the file 00README.txt included with the distribution for more details and for Windows instructions.
Related QuestionsWhich C compilers can I use with Parrot?
docs/compiler_faq.podWhoa, there--you're looking at the wrong FAQ. This document is for people writing compilers that target Parrot. To answer your question, though, Parrot should theoretically work with any C89-compliant C compiler, although some features require gcc. See the README files in the root directory for more information about building Parrot. How can I implement a compiler to use as a compiler object from within Parrot? (For example, with the compile op.
Related QuestionsCan I use other compilers with JDK?
Modelworks SoftwareYes, use the script "replace JDK compiler" in Tools/Configuration and select your other compiler. You may also need to change your options for the compiler in the JDK/Edit Options... dialog. To enter options for your other compiler, just type them in next to the compiler.
Related QuestionsWhich compilers can I use PStreams with ?
PStreams Frequently Asked Questions (FAQ)You should be able to use PStreams with any fairly standard-conforming compiler on a POSIX system (i.e. UNIX-like). The most important thing is that the compiler supports standard IOStreams. GCC: at least version 3.0 is required for standard IOStreams. There is an older version that works with GCC 2.9x but it does not have all the features of the real version. cxx compiler on Tru64 UNIX: cannot use -std strict_ansi, as that hides POSIX API.
Related QuestionsWhat PC Compilers can I use to develop programs?
Atari Portfolio: F.A.Q.This compiler is widely used by many developer writing code for the Portfolio. To ensure compatibility, be sure to set DIRECTVIDEO to 0. There are a number of libraries under development to provide Portfolio Only support to the language. Turbo Pascal programs will run on the Portfolio, provided you don't use the CRT unit. The CRT unit tries to calculate the clock speed. There is a replacement available for the CRT unit, called The Portfolio Unit, available in the APORTFOLIO forum on Compuserve.
Related QuestionsWhere can I find free lisp compilers or interpreters?
Frequently Asked Questions for comp.lang.lispA lightweight common lisp interpreter and compiler, which compiles to bytecode, and runs on Windows, AmigaOS, Acorns, OS/2 and most flavours of Unix. CLISP's implementation of CLOS is currently not quite complete. CLISP is licensed under the GNU GPL. CMUCL interpreter and optimizing compiler to native code running on a few flavours of Unix (including x86/FreeBSD, x86/Linux and sparc/Solaris). CMUCL can be difficult to compile; it requires itself to build itself, and bootstrapping is an issue.
Related QuestionsWhich compilers are supported?
SGI STL: Frequently Asked QuestionsThe STL has been tested on these compilers: SGI 7.1 and later, or 7.0 with the -n32 or -64 flag; gcc 2.8 or egcs 1.x; Microsoft 5.0 and later. (But see below.) Boris Fomitchev distributes a port for some other compilers. If you succeed in using the SGI STL with some other compiler, please let us know, and please tell us what modifications (if any) you had to make. We expect that most of the changes will be restricted to the <stl_config.h> header.
Related QuestionsWhat are the basic details about the compilers?
The umich.umce.login FAQ ListThis is Sun's C compiler for Solaris. It comes with several helpful tools, including cscope. It is the default C compiler on the ITD Login service. System V make, ar, etc. are also in the default path. Solaris provides a Berkeley compatibility environment which includes a special C compiler and a set of Berkeley-compatible include files and compiler libraries. If you need this environment, use the ucbcc command, which is now in the default path. This is Gnu's C Compiler.
Related QuestionsCan I use Java compilers other than javac (the standard compiler included with the Sun JDKs)?
Oracle Sqlj Frequently Asked QuestionsYes. the SQLJ translator defaults to the standard javac compiler, but lets you specify an alternative compiler through the command-line -compiler-executable option. Any compiler you use, however, must behave as follows: When it encounters errors, the source-code line information it provides must be in either Sun javac format or Microsoft jvc format.
Related QuestionsQ34: How do I use the precompiled Win32 GLUT DLLs with Borland compilers?
GLUT FAQA34: The "implib" command should let you generate a GLUT.LIB that works with Borland compilers from the precompiled GLUT.DLL Here is an example: C:\>implib C:\GLUT\LIB\GLUT.LIB C:\WINDOWS\SYSTEM\GLUT.DLL
Related QuestionsWhat about older SGI compilers?
SGI STL: Frequently Asked QuestionsGiven the rate of improvement in C++ implementations, SGI strongly recommends that you upgrade your compiler. If this is not possible, you might try the version of the STL for older Borland and Microsoft compilers (see the Download the STL page), or Boris Fomitchev's port. Neither of these is supported.
Related QuestionsDevelopment environment Q: What Java compilers are there?
Code Style: Java compiler frequently asked questions (FAQ)The Java compiler is a program like any other and your operating system needs to know where to find the executable file. The simplest way to do this is to give the full path to the Java compiler in the command, as below for Windows...
Related Questionsfaq:transition_faq [UTKCS Help Pages]All compilers officially supported by the Labstaff will be placed in the /usr/local file system on all supported systems. On Debian systems we are currently supporting the gcc compiler system for the C, C++, Objective C, and FORTRAN 77 programming languages. To find the current version, use this command: /usr/local/bin/gcc --version gcc (GCC) 3.4.4 Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions.Related Questions
What are the basics about the compilers?
GPCC: Login ServiceThis is Sun's C compiler for Solaris®. It comes with several helpful tools, including cscope. It is the default C compiler on the Login machines. System V make, ar, etc. are also in the default path. Solaris® provides a Berkeley compatibility environment which includes a special C compiler and a set of Berkeley-compatible include files and compiler libraries. If you need this environment, use the ucbcc command, which is now in the default path. This is Gnu's C Compiler.
Related QuestionsFrequently Asked Questions about DTLSun Solaris Workshop 6, Update 1 using the Merant 3.7 ODBC drivers (we are not currently testing this compiler)Related Questions
What's the story about compilers?
Technolust: The Indigo Page (Silicon Graphics - SGI)Like most commercial UNIX packages, the take-home message is that IRIX by itself does not come with a compiler. Some versions of IRIX are more friendly at supporting compilers than others. So here's the scoop, to the best of my understanding: Up through IRIX 5.3: You must obtain and install the Iris Development Option (IDO) from SGI if you wish to use any compilers at all. This includes GNU compilers, such as gcc, since IRIX does not include libraries or header files.
Related QuestionsWhat are the officially supported compilers/operating systems?
Amulet FAQOthers may be contributed and supported by users from time to time, but generally you will need to make certain changes to port to any other platforms. See the contributions page for details. CodeWarrior 10 uses the older standard libraries, CodeWarrior Pro 1 requires MSL Standard C++ Libraries.
Related Questions