hi all,
What's the syntax for C style conditional compilation. I have legacy code in that form but silverfrost plato complains as that: 'error 32 - Statement not recognised'
#ifdef HAVE_CHOLMOD
INTEGER(KIND=AddrInt) :: Cholmod=0
#endif
and 'error 172 - Constant expression expected' is raised for the line below
INTEGER(KIND=AddrInt) :: SpMV=0
any help will be appreciated.