MinGW cross compiling environment 2.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News MinGW cross compiling environment 2.1 (Default branch)
# 1  
Old 12-13-2008
MinGW cross compiling environment 2.1 (Default branch)

MinGW cross compiling environment is a script thatcompiles a MinGW cross compiler and cross compilesmany free libraries such as GD and SDL. Thus, itprovides a nice MinGW cross compiling environment.All necessary source packages are downloadedautomatically.License: MIT/X Consortium LicenseChanges:
This release fixes a download error caused by the GDAL project. They suddenly changed their download URLs. In addition, some newer versions of various packages are supported. There is also a small compatibility fix for OS X.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Cross Compiling Issue of udev-151 for MIPS Little Endain Architecture

Hi All, I am trying to cross compile udev-151 for MIPS little endian architecture. I am configuring like this: ./configure --prefix=$PWD/sree --host=mips-linux-gnu configure: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then... (3 Replies)
Discussion started by: bsreeram
3 Replies

2. Programming

MinGW - Trouble Compiling Guile

This question is not about programming but compiling with GNU GCC/Make. I am not on a UNIX machine but am using the UNIX-like environment MSYS with MinGW for compiling. The problem that I am having is that I cannot get guile to compile. For some reason it cannot find libltdl which is part of... (3 Replies)
Discussion started by: Deluge
3 Replies

3. UNIX for Dummies Questions & Answers

Cross-compiling libiconv for uclinux

Hi everyone, I want to cross-compile libiconv for uclinux to create a static library. I use the following command : ./configure --enable-static --disable-shared --build=i686-pc-linux-gnu --host=nios2-unknown-linux-gnu --prefix=/home/captain/Programs/nios2-linux/uClinux-dist/staging/usr... (2 Replies)
Discussion started by: moganesh
2 Replies

4. Linux

Help Cross compiling a kernel for an HP Jornada 728

Hello, I just bought an old Jornada 728 and, as you may know, it comes with Windows CE 3.0. I do not use Windows, so i wanted to create my own linux system for the Jornada. I know there are projects like Jlime, Familiar Linux, 720 Degrees, etc. But i want something based on the distribution i... (1 Reply)
Discussion started by: semash!
1 Replies

5. Programming

Cross compiling under Windows for Linux

I have two headless servers I am writing code for, and a Windows box networked with them. I want to compile my code within an IDE on the Windows box (eclipse most likely) and run the compiled binarys on the Linux boxes. Will this work? Using Cygwin (or MinGW)? Thoughts? Cheers, Ian (8 Replies)
Discussion started by: IanVaughan
8 Replies
Login or Register to Ask a Question
cxref(1)						      General Commands Manual							  cxref(1)

Name
       cxref - generate C program cross reference

Syntax
       cxref [options] files

Description
       The  command  analyzes a collection of C files and attempts to build a cross reference table.  The command utilizes a special version of to
       include #define'd information in its symbol table.  It produces a listing on standard output of all symbols (auto, static, and  global)	in
       each file separately, or with the -c option, in combination.  Each symbol contains an asterisk (*) before the declaring reference.

Options
       -c	 Prints a combined cross-reference of all input files.

       -Dname	 Defines name to processor, as if by #define.  Default value is 1.

       -Idir	 Searches named directory for files whose names do not begin with a backslash (/).

       -o file	 Directs output to named file.

       -s	 Operates silently; does not print input file names.

       -t	 Formats listing for 80-column width.

       -Uname	 Removes any initial definition of name.

       -w<num>	 Width	option	which formats output no wider than <num> (decimal) columns.  This option will default to 80 if <num> is not speci-
		 fied or is less than 51.

Diagnostics
       Error messages usually indicate a problem that will prevent the file from compiling.

Files
       /usr/lib/xcpp	special version of C-preprocessor.

See Also
       cc(1).

																	  cxref(1)