Skip to content
Snippets Groups Projects
Commit 0b7c8a3b authored by Kjartan Thor Wikfeldt's avatar Kjartan Thor Wikfeldt
Browse files

add workaround for intel 18.0.0 bug

parent 405b8bd3
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,19 @@ cc [flags] source.c ...@@ -52,6 +52,19 @@ cc [flags] source.c
CC [flags] source.cpp CC [flags] source.cpp
``` ```
Note: if you are using the Intel Programming Environment, and
if you are compiling C code, you might see error messages containing:
```
error: identifier "_Float128" is undefined
```
A workaround is to add a compiler flag:
```
cc -D_Float128=__float128 source.c
```
# Running MPI programs on Beskow # Running MPI programs on Beskow
First it is necessary to book a node for interactive use: First it is necessary to book a node for interactive use:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment