coin-or-tools / BuildTools

Macros and patches for GNU autotools
https://coin-or-tools.github.io/BuildTools/
Other
3 stars 7 forks source link

AC_COIN_TRY_LINK called even when there are no flags #141

Closed tkralphs closed 4 years ago

tkralphs commented 4 years ago

This output is from a failed build that was submitted pursuant to coin-or/coinbrew#48. From the output, it appears that AC_COIN_TRY_LINK is called here, even when coin_mkl is empty. See output

2020-07-30T21:09:38.9596158Z checking for function dsyev_ in  ... no
2020-07-30T21:09:39.1589092Z checking for function dsyev in  ... no
2020-07-30T21:09:39.3613433Z checking for function DSYEV_ in  ... no
2020-07-30T21:09:39.5609888Z checking for function DSYEV in  ... no

starting at lines 474 in the output. I guess we should be checking that coin_mkl has been set before calling AC_COIN_TRY_LINK there, right?

svigerske commented 4 years ago

yes, thank you.