Forum

On linux Intel 2023 adds errors

Ronald Van Nooyen, modified 2 Years ago.

On linux Intel 2023 adds errors

Youngling Posts: 4 Join Date: 11/17/22 Recent Posts
The new 2023 Intel OneAPI produces errors. Error numbers are #7938 and #7983. These errors seem to spring from a conflict between a variable c_net_file_in being declared of fixed length
```
character(kind=c_char), intent(in) :: c_netfile_in(MAXSTRLEN)
```
and a variable netfile_in being declared with length derived from c_netfile_in

```
character(len=strlen(c_netfile_in)) :: netfile_in
```
while making c_netfile_in variable length removes the error messages, I have not checked whether that breaks things. Does anyone know?