Hi Andy,
This is quite an old code, hence some extra work may be required.
> AnsysEmat.cpp:90:37: warning: deprecated conversion from string
> constant to ‘char*’ [-Wwrite-strings] binclo_(&nblk, "KEEP", buffer,
This message says that it seems nowadays it is not good to put a string
constant into the function call. Presumably one has to
char* text = "KEEP";
binclo_(&nblk, text, buffer,
Otherwise the warning should be ignored.
> AnsysEmat.cpp:236:29: error: ‘abs’ was not declared in this scope
This means that the function abs has not been found in the headers. It
is necessary to check which header should be included to have abs.
Evgenii