summaryrefslogtreecommitdiffstats
path: root/src/lapack.mk
Commit message (Collapse)AuthorAgeFilesLines
* use cmake wrapper in all packagesBoris Nagaev2017-01-081-2/+1
| | | | | | | Native binaries (libmysqlclient, vtk, vtk6) still build with `cmake` instead of the cmake wrapper. Note that even in these cases MXE's cmake is used (not system cmake), because $(PREFIX)/$(BUILD)/bin is added to PATH by Makefile and MXE's cmake binary exists there.
* add _WEBSITE and _DESCR fields to core packagesBoris Nagaev2016-12-221-0/+1
| | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* use $(TEST_FILE) instead of $(2).c and otherBoris Nagaev2016-07-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following script was applied: set -xue find src/ plugins/ -name '*.mk' -type f > mks # special cases for test file: # ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated sed 's@$(2).c@$(PWD)/src/$(PKG)-test.c@g' -i \ src/{boost,freeimage,hdf5,lapack,sdl,sdl_image,sdl_sound}.mk sed 's@$(2).f@$(PWD)/src/$(PKG)-test.f@g' -i src/lapack.mk sed 's@$(PWD)/$(2).pro@$(PWD)/src/$(PKG)-test.pro@g' -i \ src/qt.mk plugins/examples/custom-qt-min/overrides.mk sed 's@$(2)-CMakeLists.txt@$(PWD)/src/$(PKG)-test-CMakeLists.txt@g' \ -i src/{sdl_image,sdl_sound}.mk # check for base in $(ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated); do ! grep -q '$(2)' "${base}.mk" done # other $(2) sed 's@$(2).cpp@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).cxx@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).c@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).ml@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).f@$(TEST_FILE)@g' -i $(cat mks) # check ! grep '$(2)' $(cat mks) See https://github.com/mxe/mxe/issues/1452
* blas, lapack: remove -fdefault-integer-8 FFLAGS (#1258)Tony Theodore2016-04-121-1/+0
| | | | | * only required for octave build: - https://www.gnu.org/software/octave/doc/interpreter/Compiling-Octave-with-64_002dbit-Indexing.html * closes #1247
* lapack: fix case change in 3.6.0 updateTony Theodore2015-12-311-2/+2
| | | | fixes #1114
* lapack: update 3.5.0 --> 3.6.0Tony Theodore2015-12-251-2/+2
| | | | tested on all four targets
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* Fix lapack testTimothy Gu2014-05-081-1/+1
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* package lapack: fix fortran flags on 64-bit buildsTony Theodore2014-03-101-0/+1
|
* package lapack: fix checksumTony Theodore2013-12-041-1/+1
|
* package lapack: update changed checksumMark Brand2013-11-221-1/+1
|
* update package lapackMark Brand2013-11-171-2/+2
|
* package lapack: enable C interface and add cblas link testTony Theodore2013-09-161-2/+10
|
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | 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)
* upgrade package lapackMark Brand2012-09-261-2/+1
|
* Revert "Move CMAKE_BUILD_TYPE, CMAKE_AR and CMAKE_RANLIB into toolchain file"Volker Grabsch2012-08-251-0/+2
| | | | | | This reverts commit e57db6d8c9c7ecbe43dd1fdb3d17f07871dfc9fb. See http://lists.nongnu.org/archive/html/mingw-cross-env-list/2012-08/msg00028.html
* Move CMAKE_BUILD_TYPE, CMAKE_AR and CMAKE_RANLIB into toolchain fileVolker Grabsch2012-08-131-2/+0
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* package lapack: use $(TARGET)-ranlib and add test programTony Theodore2012-05-011-0/+6
|
* package lapack: revert to v3.4.0Alois Schlögl2012-05-011-1/+1
|
* package lapack: ignore version 3.4.1Tony Theodore2012-05-011-1/+1
|
* update package lapackMark Brand2012-04-211-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|
* packages cgal, eigen, lapack: use CMAKE_TOOLCHAIN_FILETony Theodore2011-11-261-1/+1
|
* package lapack:portability fix for FreeBSD - add CMAKE_ARTony Theodore2011-11-201-0/+1
|
* package lapack:update checksumTony Theodore2011-11-201-1/+1
|
* package lapack: build with cmakeMark Brand2011-11-141-9/+4
|
* update package lapackMark Brand2011-11-141-3/+3
|
* update package lapackMark Brand2011-04-191-2/+2
|
* improved download URLs of packages: blas cblas gcc-mpc lapackVolker Grabsch2011-04-041-0/+1
|
* package lapack: fix update macroMark Brand2011-01-171-1/+1
|
* remove $($PKG)_SUBDIR) from FILE and URL defintionsMark Brand2010-12-121-1/+1
| | | | | | For now this means a bit of duplication, but if the remaining references to SUBDIR can be dealt with, we should be able to get rid of the SUBDIR defintion altogether.
* upgrade packages: atkmm gdal gdk-pixbuf glew glib gtk imagemagick lapack ↵Volker Grabsch2010-11-281-2/+2
| | | | librsvg libvpx libxml2 ogg pixman vorbis x264
* fix dummy permissions (664 -> 644)Volker Grabsch2010-11-171-1/+1
|
* fix build issues of packages: lapack suitesparseVolker Grabsch2010-11-171-1/+1
|
* cleanup packages: blas cblas lapack metis suitesparseVolker Grabsch2010-11-161-18/+11
|
* improvements for packages: cblas lapack suitesparseAlois Schlögl2010-11-161-16/+10
|
* new packages: blas cblas lapackAlois Schlögl2010-11-161-0/+44