gfortran 行长度限制
有没有办法禁用 gfortran 编译器中的行长度限制?我正在从 ifort 移植到 gfortran,我想知道是否有一种简单的方法可以做到这一点,而无需遍历代码并在需要的地方手动引入行延续。
Is there a way of disabling the line length limit in the gfortran compiler? I am porting from ifort to gfortran and I wonder if there is an easy way to do so without going through the code and introduce line continuation by hand everywhere where it is needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
研究 GCC 手册的选项
:
Investigate the options
GCC manual:
我使用了 -ffree-line-length-none ,这样源代码中的超长行就不会导致错误
I used
-ffree-line-length-none
so that my extra long lines in the source code didn't cause errors