Browse Source

Override special make variables

as seen in https://github.com/xianyi/OpenBLAS/issues/1912#issuecomment-514183900 , any external setting of TARGET_ARCH (which could result from building OpenBLAS as part of a larger project that actually uses this variable) would cause the utest build to fail. 
(Other subtargets appear to be unaffected as they do not use implicit make rules)
tags/v0.3.7
Martin Kroeker GitHub 6 years ago
parent
commit
af2e7f28fc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      utest/Makefile

+ 3
- 0
utest/Makefile View File

@@ -1,6 +1,9 @@
UTEST_CHECK = 1
TOPDIR = ..

override TARGET_ARCH=
override TARGET_MACH=

UTESTBIN=openblas_utest

.PHONY : all


Loading…
Cancel
Save