summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2015-08-29 09:35:00 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2015-09-21 00:05:48 (GMT)
commitbf49b8958d245ac47ebc6e35b2acf4b886702ec6 (patch)
treeacd8845afc53d22bbae6fe3855de81cc85e9e544 /README.md
parenta65e97c541d9fd6a881771b89fa7190bdfc49650 (diff)
downloadmxe-bf49b8958d245ac47ebc6e35b2acf4b886702ec6.zip
mxe-bf49b8958d245ac47ebc6e35b2acf4b886702ec6.tar.gz
mxe-bf49b8958d245ac47ebc6e35b2acf4b886702ec6.tar.bz2
add README.md and LICENSE files
Diffstat (limited to 'README.md')
-rw-r--r--README.md37
1 files changed, 37 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c9bde62
--- /dev/null
+++ b/README.md
@@ -0,0 +1,37 @@
+# MXE (M cross environment)
+
+[![Travis build][travis-badge]][travis-page]
+[![License][license-badge]][license-page]
+
+[travis-page]: https://travis-ci.org/mxe/mxe
+[travis-badge]: https://travis-ci.org/mxe/mxe.png
+[license-page]: LICENSE
+[license-badge]: http://img.shields.io/badge/License-MIT-brightgreen.png
+
+MXE (M cross environment) is a Makefile that compiles a cross
+compiler and cross compiles many free libraries such as SDL and
+Qt. Thus, it provides a nice cross compiling environment for
+various target platforms, which:
+
+ * is designed to run on any Unix system
+ * is easy to adapt and to extend
+ * builds many free libraries in addition to the cross compiler
+ * can also build just a subset of the packages, and automatically builds their dependencies
+ * downloads all needed packages and verifies them by their checksums
+ * is able to update the version numbers of all packages automatically
+ * directly uses source packages, thus ensuring the whole build mechanism is transparent
+ * allows inter-package and intra-package parallel builds whenever possible
+ * integrates well with autotools, cmake, qmake, and hand-written makefiles.
+ * has been in continuous development since 2007 and is used by several projects
+
+## Supported Toolchains
+
+ * Runtime: MinGW-w64
+ * Host Triplet:
+ - `i686-w64-mingw32`
+ - `x86_64-w64-mingw32`
+ * Packages:
+ - static
+ - shared
+
+Shared support in MXE was just added in early February, 2014.