summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2014-04-27 14:15:24 (GMT)
committerTony Theodore <tonyt@logyst.com>2014-04-27 14:15:24 (GMT)
commit825cb79b78c31f73198e822a42e2a989c66c8e94 (patch)
tree82cda2545cfff971fc04866faa976b5646cb1720 /src
parent53b4442df67394fefda9daead0add47b95c6743d (diff)
downloadmxe-825cb79b78c31f73198e822a42e2a989c66c8e94.zip
mxe-825cb79b78c31f73198e822a42e2a989c66c8e94.tar.gz
mxe-825cb79b78c31f73198e822a42e2a989c66c8e94.tar.bz2
package cblas: add missing lib to test build
Diffstat (limited to 'src')
-rw-r--r--src/cblas.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cblas.mk b/src/cblas.mk
index 8f0d584..bcecdc9 100644
--- a/src/cblas.mk
+++ b/src/cblas.mk
@@ -35,10 +35,10 @@ define $(PKG)_BUILD
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(1)/examples/cblas_example1.c' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG).exe' \
- -lcblas -lblas -lgfortran
+ -lcblas -lblas -lgfortran -lquadmath
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(1)/examples/cblas_example2.c' -o '$(PREFIX)/$(TARGET)/bin/test-$(PKG)-F77.exe' \
- -lcblas -lblas -lgfortran -DADD_
+ -lcblas -lblas -lgfortran -lquadmath -DADD_
endef