Commit Graph

155 Commits

Author SHA1 Message Date
Tony Theodore e9fa2e05c6 package gcc: install shared .dlls to $(TARGET)/bin
fixes #358
2014-04-06 17:36:28 +10:00
Tony Theodore 7d7dd227db packages gcc libvpx openssl portaudio: use escaped substitution style
prompted by sample package recipe on @TimothyGu's wiki
2014-02-18 14:04:23 +11:00
Tony Theodore 14d8c60494 package gcc: enbale shared target libs 2014-02-17 14:25:48 +11:00
John W. Eaton 540c9e8f32 packages binutils gcc: remove build tools from $(TARGET)/bin and use prefixed tools instead 2014-02-11 12:53:30 +11:00
Tony Theodore 5a18b2786b Merge pull request #320 from tonytheodore/lookup-pkg-rule
Makefile: refactor lookup of pkg build rules and deps
2014-02-09 03:34:47 +11:00
Tony Theodore c1ad134439 packages gcc sdl_rwhttp: use new-style target-specific deps 2014-02-09 00:24:09 +11:00
Tony Theodore 1a9ad29fe6 mxe configury: build native pkgconf and centralise various conf files
Since we need pkgconf for Cflags.private support, it seems like a
logical place for these types of config files instead of being
spread over Makefile, binutils, and gcc.
2014-02-08 23:23:00 +11:00
Tony Theodore 14b5bef5e2 package gcc: add qt5 to pkgconfig search path 2014-01-31 14:57:12 +11:00
Tony Theodore e9e7da9296 Merge pull request #262 from tonytheodore/cloog-isl
add packages cloog isl and use for gcc optimisations
2013-10-19 18:34:52 -07:00
Tony Theodore ef45408eac package gcc: retry mingw-w64 crt build 2013-10-20 12:22:24 +11:00
Tony Theodore aadc5cea1e add packages cloog isl and use for gcc optimisations 2013-10-19 18:13:49 +11:00
Tony Theodore 2b82342590 gcc support libraries: build separately in own package rules 2013-10-19 17:11:43 +11:00
Mark Brand 0ee3f0e2eb update package gcc 2013-10-16 16:58:37 +02:00
Tony Theodore 8282cb8014 package gcc: add gcc to list of symlinks for native build 2013-08-28 03:49:33 +10:00
Tony Theodore 07cdf41da1 packages binutils dbus gcc gettext libiconv: enable/disable native builds 2013-08-28 03:24:06 +10:00
Tony Theodore 8c46d829bf package gcc: add target-specific dependencies 2013-08-06 22:30:54 +10:00
Tony Theodore 25a3a7f0ff package hdf5: add prefixed compiler wrappers and add to cmake toolchain file 2013-07-25 18:36:14 +10:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
Most of the automatic conversion was done using the following Python script:

import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
    index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
    version = versions[pkg]
    with open('src/' + pkg + '.mk', 'rb') as f:
        mk = f.read()
    checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
    versionline = '\n$(PKG)_VERSION  := %(version)s' % {'version': version}
    newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
    with open('src/' + pkg + '.mk', 'wb') as f:
        f.write(newmk)
2013-07-22 01:41:31 +02:00
Tony Theodore b974ef08d8 add mingw-w64 runtime and pthreads implementation, update related toolchain files 2013-06-01 22:28:02 +10:00
Mark Brand 4a78b2ae0a update package gcc 2013-05-31 23:55:11 +02:00
Tony Theodore 6188de2ed3 various packages: remove grep workarounds for version sorting 2013-05-22 19:33:04 +10:00
Mark Brand 42cbd08316 package gcc: fix update macro for 4.8 series 2013-05-21 14:55:02 +02:00
Mark Brand ba2106d3f0 adjust references to qmake (Qt 4)
Follow-up to previous commit.
2013-04-02 22:09:27 +02:00
Mark Brand 9ad28fd5c0 update package gcc 2013-03-23 12:01:50 +01:00
Mark Brand 4f65ceb834 update package gcc 2012-09-20 16:25:00 +02:00
Tony Theodore fa98e530d7 package gcc: fix for OSX ASLR issues with pre-compiled headers 2012-09-17 20:05:35 +10:00
Volker Grabsch c80ee377b2 Move CMAKE_BUILD_TYPE into toolchain file 2012-08-25 16:40:28 +02:00
Volker Grabsch 070e7a680d Revert "Move CMAKE_BUILD_TYPE, CMAKE_AR and CMAKE_RANLIB into toolchain file"
This reverts commit e57db6d8c9.

See http://lists.nongnu.org/archive/html/mingw-cross-env-list/2012-08/msg00028.html
2012-08-25 16:11:23 +02:00
Volker Grabsch e57db6d8c9 Move CMAKE_BUILD_TYPE, CMAKE_AR and CMAKE_RANLIB into toolchain file 2012-08-13 10:15:30 +02:00
Mark Brand bbfd6ac2cc update package gcc 2012-06-14 15:11:31 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Volker Grabsch e86ebf0526 Fix annoying whitespaces at EOL 2012-03-27 13:29:57 +02:00
Mark Brand 4896387a5b update package gcc
---
 src/gcc.mk |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
2012-03-23 16:04:21 +01:00
Mark Brand ee89c66a1c update package gcc 2012-03-01 19:19:23 +01:00
Volker Grabsch 148931b4ae replaced $(BUILD) with a more direct and less brittle construct
For discussion, see the following email and its follow-ups:
http://lists.nongnu.org/archive/html/mingw-cross-env-list/2011-11/msg00112.html
2011-11-28 09:51:56 +01:00
Mark Brand ff98a17d4f take config.guess from binutils instead of gcc
binutils comes before gcc and also has a newer config.guess.
2011-11-27 22:13:09 +01:00
Mark Brand 26a746fe74 add BUILD and install config.guess and config.sub 2011-11-26 21:28:02 +01:00
Mark Brand 104db775b9 add cmake definition for fortran 2011-11-15 00:56:57 +01:00
Mark Brand 9b8424c30c update packages gcc pfstools 2011-10-27 18:53:50 +02:00
Mark Brand 614dad4e29 set QT_QMAKE_EXECUTABLE in cmake toolchain file
When this is not set, cmake might use the host's qmake.
Problem observed bulding package openscenegraph.
2011-10-19 01:24:22 +02:00
Mark Brand e12c389529 update package gcc-mpfr 2011-10-04 10:28:04 +02:00
Zach Thibeau 2149375add additional variable for the cmake toolchain file 2011-08-27 12:40:01 +02:00
Mark Brand 1b755cf68f packages gcc libmikmod: explicitly specify --libdir
Avoid defaulting to lib64 on some systems.
2011-08-19 13:54:26 +02:00
Mark Brand 2e4068966a update packages: gcc imagemagick 2011-06-27 20:21:32 +02:00
Mark Brand 055bc0c689 package gcc: fix update macro 2011-04-29 09:13:21 +02:00
Kay Hayen 9e6545a2c6 disable SJLJ exceptions explicitly, as those cause trouble 2011-04-22 14:12:35 +02:00
Mark Brand 3c9db2355b update package gcc 2011-03-25 22:35:49 +01:00
Tony Theodore d9bfa57f73 add cmake toolchain file and simplify build rules of relevant packages 2011-03-17 05:05:00 +11:00
Tony Theodore ae9e660e12 package gcc: remove mpfr configure workaround after upgrade 2010-12-23 20:55:19 +11:00
Mark Brand 8d0bad448a upgrade package gcc 2010-12-23 02:31:43 +01:00
Volker Grabsch d2530d8d9e improved pkg-config wrapper and its documentation 2010-12-13 14:41:32 +01:00
Tony Theodore 90e600677d add reminder to remove gmp links after next gcc update 2010-10-13 06:18:33 +11:00
Mark Brand ab12b85a67 upgrade packages curl freetype gcc glew gnutls gst* libarchive libevent libgcrypt pcre sqlite w32api
New requirement XZ Utils for unpacking w32api lzma archive.
2010-08-29 11:40:18 +02:00
Volker Grabsch d9a12589e8 use a build directory separate from the source directory in package gcc (by Tony Theodore) 2010-06-15 22:12:49 +02:00
Mark Brand 5a823d0b7b upgrade package gcc-mpfr 2010-06-14 21:22:54 +02:00
Volker Grabsch b7ef3664ea improved version recognition of packages: boost freetype gcc glew libgee mingwrt openssl pcre pdcurses w32api wxwidgets 2010-06-04 23:05:41 +02:00
Volker Grabsch 26a52f4774 bugfix: remove mingwrt-dll from the dependencies of package gcc 2010-06-04 21:59:52 +02:00
Volker Grabsch 86e7682e7c switch from SJLJ to DW2 in package gcc 2010-05-31 16:37:35 +02:00
Volker Grabsch 633423723e improved version recognition of packages binutils and gcc 2010-05-20 22:38:49 +02:00
Volker Grabsch d40af3575f provide GCC OpenMP functionality as extra package libgomp (by Tony Theodore) 2010-05-09 19:00:16 +02:00
Volker Grabsch 0d01b38c8d avoid all old 4.4.x versions of package gcc 2010-05-03 16:51:20 +02:00
Volker Grabsch b2053a8302 detangle package pthreads from package gcc
Originally, the builds of gcc and pthreads were interlaced as a
work-around to get OpenMPI support. However, that never worked.
2010-05-03 12:12:53 +02:00
Volker Grabsch 5086294801 upgrade package gcc to GCC 4.5, switching back from TDM to MinGW (by Tony Theodore) 2010-05-01 15:31:20 +02:00
Volker Grabsch 40d75a2ee1 enable static linking of pthreads even when <sched.h> is included without <pthread.h> 2010-04-22 01:09:36 +02:00
Volker Grabsch f6248e8b68 replace Allegro's DirectX headers with the ones provided by Qt (by Mark Brand) 2010-04-12 17:42:15 +02:00
Volker Grabsch e1ab4466ff changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand) 2010-02-16 04:12:53 +01:00
Volker Grabsch 834421011b hardcode the --static argument into i686-pc-mingw32-pkg-config 2010-02-14 18:49:22 +01:00
Volker Grabsch 0557ac94e6 use explicitly "patch -u" to avoid warnings about guessing the patch type 2010-02-11 09:17:28 +01:00
Volker Grabsch 71f83a7e0d point consequently to "doc/index.html" instead of "doc/index.html or doc/README" 2010-02-08 00:58:06 +01:00
Volker Grabsch a72939270a bugfix: remove dependencies on package pkg_config which no longer exists 2010-02-07 10:49:04 +01:00
Volker Grabsch fab6f7f553 use the natively installed pkg-config instead of building a custom pkg-config 2010-02-07 10:00:58 +01:00
Volker Grabsch fce858a1f9 ignore gcc-4.4.3 for now 2010-01-22 01:54:03 +01:00
Volker Grabsch b97990a6d9 new package: directx 2010-01-19 20:29:13 +01:00
Volker Grabsch 8a3233b044 simplified file markers 2010-01-16 23:02:02 +01:00
Volker Grabsch d642031dfb improved speed of version recognition for package gcc 2009-12-20 16:36:28 +01:00
Volker Grabsch a5e1a67929 improved structure of the gcc-* packages 2009-10-27 14:33:05 +01:00
Volker Grabsch 0c380c6572 mark TDM-GCC 4.4.1-tdm-2 as bad version 2009-10-09 16:37:26 +02:00
Volker Grabsch 32753e2007 new package: mingwrt-dll (for mingwm10.dll) 2009-10-04 04:01:31 +02:00
Volker Grabsch 48ba2c0424 strip the disturbing '#include "config.h"' from pthread.h 2009-10-03 23:19:01 +02:00
Volker Grabsch f162381b1a improved version recognition, enable the notation of ignored (bad) package versions 2009-09-20 14:36:46 +02:00
Volker Grabsch 4bf7a58c9e improved coding style 2009-09-20 13:59:54 +02:00
Volker Grabsch 0f5187c194 fix for systems where wine confuses the cross-compiling detection of ./configure 2009-09-20 13:56:19 +02:00
Volker Grabsch 89411daf8a enable libgomp (OpenMP) in package gcc by interweaving the pthread build into the gcc build 2009-09-19 04:46:12 +02:00
Volker Grabsch d3dd3c1533 revert the upgrade of the gcc* packages, because the new version causes trouble in many libraries 2009-09-02 03:13:50 +02:00
Volker Grabsch ad09fd28ae improved download URLs for all SourceForge packages to ensure that the selected SOURCEFORGE_MIRROR is really used 2009-09-02 00:55:53 +02:00
Volker Grabsch 869629d69e update version of packages gcc* 2009-09-01 21:28:51 +02:00
Volker Grabsch c291ce7ce8 improved download URLs for packages boost and gcc* 2009-09-01 20:42:21 +02:00
Volker Grabsch 163b118424 replace the contact email address with hints to the project mailing list 2009-09-01 16:35:59 +02:00
Volker Grabsch 3c5ab4e280 add a copyright notice and license to each source file 2009-08-21 06:58:11 +02:00
Volker Grabsch 2cce10cbcb improved version recognition for sourceforge packages 2009-08-10 13:24:12 +02:00
Volker Grabsch 695da3b2ca update version of packages atk, curl, gcc, gdal, glib, gnutls, gtk, libevent, libidn, libntlm, libpng, nsis, pango, pdflib_lite, pixman, sqlite, tre and xmlwrapp 2009-06-10 10:56:10 +02:00
Volker Grabsch 6a2cab9dbb validate downloads using SHA-1 checksums 2009-04-05 14:00:17 +02:00
Volker Grabsch 5deaef6eb0 improved the regexes for package version recognition 2009-03-02 06:00:03 +01:00
Volker Grabsch b05d179c96 put all package's project websites into Make variables $($(PKG)_WEBSITE) 2009-03-01 16:35:21 +01:00
Volker Grabsch fcbdac2d86 update version of packages gcc, libpng and xmlwrapp 2009-02-28 14:10:16 +01:00
Volker Grabsch 3a39922413 new packages: gcc-objc and gcc-fortran 2009-02-28 14:02:21 +01:00