You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new to compiling Fortran and C on my machine. I followed the same steps that you explained here. However, while building OpenFast, I faced with some errors. All the errors seem to say the same: Warning: __builtin_memset: specified size 18446744073709551598 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=], but the ErrMsg is different. I uploaded screenshots from my terminal. My machine OS is Ubuntu 18.04 running on IntelCore i7-2600 CPU with 16GB ram. The cmake version on my machine is 3.10.2, gcc version is 7.4.0, and make version is 4.1.
I am not sure if you can reproduce the error as it might be my machine specific. However, to reproduce the error run the following on a Linux machine terminal (this is mainly a copy-paste from the installation instruction page):
Thanks for the bug report. This is a known error that can be safely ignored.
You will notice that this only occurs on string manipulations involving ErrMsg. In these cases, we are truncating a string and prepending a few characters or words. The newly created string can't actually exceed the allocated size, so it isn't actually an issue to worry about. We simply haven't gotten around to modifying the logic to make that cleaner.
Hello,
I am new to compiling Fortran and C on my machine. I followed the same steps that you explained here. However, while building OpenFast, I faced with some errors. All the errors seem to say the same:
Warning: __builtin_memset: specified size 18446744073709551598 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
, but theErrMsg
is different. I uploaded screenshots from my terminal. My machine OS is Ubuntu 18.04 running on IntelCore i7-2600 CPU with 16GB ram. Thecmake
version on my machine is 3.10.2,gcc
version is 7.4.0, andmake
version is 4.1.I am not sure if you can reproduce the error as it might be my machine specific. However, to reproduce the error run the following on a Linux machine terminal (this is mainly a copy-paste from the installation instruction page):
Thanks a lot for the help.
The text was updated successfully, but these errors were encountered: