Why can't I compile programs that require libtermcap?
The Debian GNU/Linux FAQ - Debian??LFS??Gentoo?????? - Linux...Debian uses the terminfo database and the ncurses library of terminal interface routes, rather than the termcap database and the termcap library. Users who are compiling programs that require some knowledge of the terminal interface should replace references to libtermcap with references to libncurses. To support binaries that have already been linked with the termcap library, and for which you do not have the source, Debian provides a package called termcap-compat.
Related QuestionsWhy can't I get my Fortran programs to compile with PAPI on a Cray T3E?
Frequently Asked QuestionsThe Fortran header file you include has to be preprocessed before the Fortran file can use it. To have the cpp process the file before sending the file to the compiler, add the -F flag. For example:
Related QuestionsWhy can't I compile Expect on Cobalt?
Expect FAQ (Frequently Asked Questions)Check this out: Cobalt Raq2 - Building expect causes Fatal signal 11 in gcc [Kernel 2.0.34 MIPS , Redhat/Cobalt Release 4.0] Seems libieee.a is built oddly and gcc doesn't like it, neither expect nor tcl seem to actully need it, removing -lieee from the makefile allows it to compile, no undefined references, expect passes make test... (Maybe the needed functions are really in libm?) ps: tcl 8.2.1 needs the same fix to compile
Related QuestionsCan Debian be used to compile libc5 programs?
The Debian GNU/Linux FAQ - Debian??LFS??Gentoo?????? - Linux...Yes. Install libc5-altdev and altgcc packages (from the oldlibs section). You can find the appropriate libc5-compiled gcc and g++ in directory /usr/i486-linuxlibc1/bin. Put them in your $PATH variable to get make and other programs to execute these first.
Related QuestionsHow Do I Compile Programs?
Porting, Compiling and Obtaining ProgramsMost Linux software is written in C and compiled with the GNU C compiler. GCC is a part of every Linux distribution. The latest compiler version, documentation, and patches are on ftp://ftp.gnu.org/pub/gnu/. Programs that are written in C++ must be compiled with the GNU G++ compiler, which is also included in Linux distributions and available from the same place as GCC. To build version 2.0.x kernels, you will need GCC version 2.7.2.x, approximately.
Related QuestionsJava FAQSimply open an MS DOS Window, change to the directory where your files are stored, and type: javac MyProgram.java Note, this assumes that javac is in your system path. See the question on accessing Java from the command line above for how to set this.Related Questions
Software DevelopmentMost Linux software is written in C and compiled with the GNU C compiler. GCC is a part of every Linux distribution. The latest compiler version, documentation, and patches are on ftp://ftp.gnu.org/pub/gnu/. Programs that are written in C++ must be compiled with the GNU G++ compiler, which is also included in Linux distributions and available from the same place as GCC. To build version 2.0.x kernels, you will need GCC version 2.7.2.x, approximately.Related Questions
COBOL FAQIt is assumed you have installed cobol650.zip in the directory C:\COBOL650. In install.doc you will find some information on running the compiler. The install.doc contained in cobol650.zip refers to a program DPATH.COM to be run instead of APPEND. The DOS program APPEND seems to work too. When trying to compile sources in a directory other than that where the compiler is installed, the compiler terminates without an error. This restriction is not documented in install.Related Questions
I notice you provide pre-compiled programs, does this mean I can't compile one of my own ?
Welcome to Geekshells.orgYou can compile anything you like, though on your own compiled programs will be delivered no support. When you want a library to be installed and it is in the FreeBSD package tree I suggest you request that one, instead installing one of your own, still my suggestions won't limit you on doing so.
Related QuestionsI installed LessTif but I can't compile apps with it. What's wrong ?
LessTif Frequently Asked QuestionsYou may have an application that's not error-free; or (more likely) one which needs configuration for your site, computer platform, etc. If it's not a bug within the application it probably has to do with your compiler options. If it's indeed that, there are several possibilities. In the examples we'll give now, we'll be using some installation directories that may differ from your installation.
Related QuestionsWhy can't I compile Expect with Tcl 8.2?
Expect FAQ (Frequently Asked Questions)Tcl 8.2 requires Expect 5.31. Either upgrade to Expect 5.31 or go back to Tcl 8.0. (I recommend upgrading.)
Related QuestionsWhy can't I compile Dia?
Dia FAQIn most cases, it is because you have an old version of a support library. The libraries needed to compile Dia version 0.91+ are: Pango version 1.1.5 or higher. Must be compiled with the PangoFT2 module. Pango 1.1.5 and higher depend on GLib version 2.1.3 or higher. PangoFT2 depends on font-config version 1.0.1 or higher. libunicode version 0.4 (not the version 0.7 available at SourceForge). Optional libraries that add extra features (for 0.
Related QuestionsWhy can't I compile Expect with Tcl/Tk 8.XaX or 8.XbX?
Expect FAQ (Frequently Asked Questions)I've rarely found the time to port Expect to alphas and betas. I recommend you stick with a production release unless you're willing to do some work.
Related QuestionsIs there is a tool to compile programs on a PC?
FAQs numbers 70 to 79Answer: See question #69 for information on sRPL if you mean assembly code. However if you mean a tool for use with the built in HP-Basic language then although you may use the PC to write them (text editing) you don't actually compile them on the PC - you download them to the calculator and let it compile them. If you want to compose them on the PC then you have to use the ADK (Aplet Development Kit).
Related QuestionsHow do I compile programs that use GStreamer ?
Developing applications with GStreamerGStreamer uses pkg-config to assist applications with compilationa and linking flags. pkg-config is already used by GTK+, GNOME, SDL, and others; so if you are familiar with using it for any of those, you're set. If you're not familiar with pkg-config to compile and link a small one-file program, pass the --cflags and --libs arguments to pkg-config. For example:
$ libtool --mode=link gcc 'pkg-config --cflags --libs gstreamer-0.10' -o myprog myprog.
Related QuestionsHow do I compile programs with uClibc?
uClibcYou will need to have your own uClibc toolchain. A toolchain consists of GNU binutils, the gcc compiler, and uClibc, all built to produce binaries for your target system linked with uClibc. You can build your own native uClibc toolchain using the uClibc buildroot system. run 'unset CC'. Then run 'unset CXX'. Some Linux systems (i.e. Gentoo) set variables such as 'CC' in the system environment which really messes things up when cross compiling. Select the things you want to build.
Related QuestionsI give up: I can't compile this! Can you send me a precompiled version?
Allegro - Documentation - Frequently asked questionsNo, sorry. For starters, liballeg.a is about 450k, but you'd probably also want various utilities like the grabber, sound setup, etc. And what about all the example programs? If we included compiled versions of everything, a binary distribution would be over 7 megs: way too big to be practical! More seriously though, there just isn't any reason why you can't build it yourself.
Related QuestionsI can't find the part I require ?
Part Search HelpIt could be that there is another name for the same part as a lot of parts are described differently by different people so try thinking of alternative names. If you are still unable to find the part, it is possible that it is a part which is not generally stocked as it is not suitable for second hand sale.
Related QuestionsWhat HUD/FHA programs require approval for non-profits to participate?
HUD PS FAQ - Non-Profit ProgramApproval to purchase HUD Homes at a discount. HUD/FHA allows non-profit organization to bid on and purchase HUD Homes at a discount. This allows the non-profit to pass on this savings, providing affordable housing opportunities for low-income or first time homebuyers. 2) Approval to finance FHA-insured mortgages at the same terms and conditions as an owner-occupant. This allows non-profits to purchase properties with lower down payment requirements, allowing them to fully leverage their funds.
Related QuestionsHow can I use ajc to compile programs for a JVM that is different from the one used to run it?
AspectJ Frequently Asked Questionsajc can be used to develop programs that are targeted at the Java 1.1 platform, even though the ajc compiler won't run on that platform. Here's an example of using ajc in this sort of cross-compilation mode (assuming a Windows platform with all the default installation directories): ajc -target 1.1 -bootclasspath c:\jdk1.1.7\lib\classes.zip \ -classpath c:\aspectj1.0\lib\aspectjrt.jar -extdirs "" \ -argfile jdk11system.lst This same technique can be used if you want to run ajc on a JDK 1.
Related QuestionsWhat do I need to compile and run OpenGL programs?
OpenGL FAQ / 2 Getting StartedTo compile and link OpenGL programs, you'll need OpenGL header files and libraries. To run OpenGL programs you may need shared or dynamically loaded OpenGL libraries, or a vendor-specific OpenGL Installable Client Driver (ICD) specific to your device. Also, you may need include files and libraries for the GLU and GLUT libraries. Where you get these files and libraries will depend on which OpenGL system platform you're using.
Related QuestionsCan you translate and compile .sqlj programs online?
Oracle Sqlj Frequently Asked QuestionsSee also "Cannot load JDBC driver class oracle.jdbc.driver.OracleDriver", "Warning: Cannot determine default arguments for stored procedures and functions. May need to install SYS.SQLJUTL.".
Related QuestionsWhy do Kogut and other Kogut programs take so long to compile?
The Kogut FAQThe generated C programs made by Kogut are rather large, and this is not likely to change in the future. In fact, as further optimizations such as inlining are implemented, the output files will probably be even larger. But don't worry; this makes things much more efficient.
Related QuestionsStupid: I can't get the code from project foo to compile. Why is it broken?
How To Ask Questions The Smart Way - ????????? - CSDNBlogHe's specified the environment, he's read the FAQ, he's showing the error, and he's not assuming his problems are someone else's fault. This guy might be worth some attention.
Related QuestionsWhy can't DrJava compile any files?
If you encounter a "No Compiler Available" message, DrJava was not able to find a compatible copy of the "tools.jar" file, which comes with the Java SDK and contains the Java compiler. Note that versions of Java prior to 1.4 are not supported in the latest DrJava releases. You can specify the location of "tools.jar" by choosing "Preferences" from the Edit menu, choosing the "Resource Locations" section, and entering the location into the "Tools.jar Location" field. (The "..
Related QuestionsWhy can't I compile my large RPGIII program?
Harkins Audit Software HeaderThe RPGIII compiler is limited to approximately 20,000 source statements. Because RTPA expands the source code, the resulting source code may exceed the limits of the RPG compiler. In that case, you can reduce the amount of information you audit by choosing a different audit profile or overriding the current audit profile.
Related QuestionsI can't compile VOCAL SIP module. What can I do?
SiphonNote that as of today (Sept 23 2000), only the RedHat distribution is supported by Vovida. It *may* work with other distributions. The quickest way to get around is to send an email describing your problem on the Vovida SIP mailing-list, all this after having check the mailing list archive, of course.
Related Questions