diff options
author | Tony Theodore <tonyt@logyst.com> | 2014-04-27 14:15:24 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2014-04-27 14:15:24 (GMT) |
commit | 825cb79b78c31f73198e822a42e2a989c66c8e94 (patch) | |
tree | 82cda2545cfff971fc04866faa976b5646cb1720 /src/cblas.mk | |
parent | 53b4442df67394fefda9daead0add47b95c6743d (diff) | |
download | mxe-825cb79b78c31f73198e822a42e2a989c66c8e94.zip mxe-825cb79b78c31f73198e822a42e2a989c66c8e94.tar.gz mxe-825cb79b78c31f73198e822a42e2a989c66c8e94.tar.bz2 |
package cblas: add missing lib to test build
Diffstat (limited to 'src/cblas.mk')
-rw-r--r-- | src/cblas.mk | 4 |
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 |