ubuntu下error: library mach has Fortran sources but no Fortran compiler found
时间: 2024-01-05 22:03:03 浏览: 143
在Ubuntu上,你可以通过以下命令来安装Fortran编译器:
```
sudo apt-get update
sudo apt-get install gfortran
```
这将安装GNU Fortran编译器。安装完成后,你应该可以重新编译你的程序并解决这个错误。
相关问题
error: library mach has Fortran sources but no Fortran compiler found
这个错误是由于你的系统缺少Fortran编译器导致的。你需要安装一个Fortran编译器才能解决这个问题。如果你使用的是MacOS,你可以通过安装Xcode Command Line Tools来解决这个问题。如果你使用的是Linux系统,你可以使用命令行安装一个Fortran编译器,例如`sudo apt-get install gfortran`或者`sudo yum install gcc-gfortran`。如果你使用的是Windows系统,你可以下载和安装MinGW或者Cygwin来获取一个Fortran编译器。
fatal error: 'mach_time.h' file not found
这个错误通常发生在使用 macOS 编译 C/C++ 代码时,因为 macOS 不再支持 `mach_absolute_time` 函数,而它在 `mach_time.h` 中声明。
要解决这个问题,你需要将代码中使用的 `mach_absolute_time` 函数替换为 `std::chrono::high_resolution_clock::now()` 函数,它是 C++11 标准库中的函数,可以实现相同的功能。
另外,你也可以手动下载 `mach_time.h` 文件并将其添加到你的项目中。你可以在网上找到 `mach_time.h` 文件的下载链接,然后将其添加到你的项目的头文件路径中。具体方法取决于你使用的编译器和开发环境。
阅读全文