Commit Graph

90 Commits

Author SHA1 Message Date
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