mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
66cb2cdb0b
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
21 lines
463 B
Plaintext
21 lines
463 B
Plaintext
--- f_check.orig 2015-10-27 20:44:50 UTC
|
|
+++ f_check
|
|
@@ -261,7 +261,7 @@ if ($link ne "") {
|
|
|
|
foreach $flags (@flags) {
|
|
if (
|
|
- ($flags =~ /^\-L/)
|
|
+ ($flags =~ /^\-L\S/)
|
|
&& ($flags !~ /^-LIST:/)
|
|
&& ($flags !~ /^-LANG:/)
|
|
) {
|
|
@@ -292,7 +292,7 @@ if ($link ne "") {
|
|
}
|
|
|
|
if (
|
|
- ($flags =~ /^\-l/)
|
|
+ ($flags =~ /^\-l\S/)
|
|
&& ($flags !~ /gfortranbegin/)
|
|
&& ($flags !~ /frtbegin/)
|
|
&& ($flags !~ /pathfstart/)
|