freebsd-ports/math/openblas/files/patch-Makefile.rule
Raphael Kubo da Costa 66cb2cdb0b Update to 0.2.15.
0.2.15 was released in October 2015.
Release notes: http://www.openblas.net/Changelog.txt

This update introduces support for new CPU architectures, such as Intel's
Broadwell and Skylake. In practice, this means people using those architectures
can actually build the port now (OpenBLAS seems to do some CPU-detection that
cannot be easily turned off and refusing to build on unrecognized CPUs).

Port changes:
- Reorganize a few variables in Makefile.
- Refresh patches.

PR:		206886
Submitted by:	Adriaan de Groot <groot@kde.org> (first version),
		Eijiro Shibusawa <phd_kimberlite@yahoo.co.jp> (maintainer)
MFH:		2016Q1
2016-02-18 16:35:48 +00:00

15 lines
419 B
Text

--- Makefile.rule.orig 2015-10-27 20:44:50 UTC
+++ Makefile.rule
@@ -19,10 +19,10 @@ VERSION = 0.2.15
# C compiler including binary type(32bit / 64bit). Default is gcc.
# Don't use Intel Compiler or PGI, it won't generate right codes as I expect.
-# CC = gcc
+CC = %%CC%%
# Fortran compiler. Default is g77.
-# FC = gfortran
+FC = %%FC%%
# Even you can specify cross compiler. Meanwhile, please set HOSTCC.