gcc -o sine sine.c -lmsine.c: No such file or directory
时间: 2024-03-25 16:36:23 浏览: 80
mac下/usr/local/bin No such file or directory问题解决
这个错误信息是告诉你找不到 `sine.c` 这个文件。请检查当前目录下是否存在 `sine.c` 文件,或者你是否在正确的目录下执行了编译命令。如果文件确实存在,你可以尝试使用绝对路径来指定文件的位置,例如:
```
gcc -o sine /path/to/sine.c -lm
```
其中 `/path/to/sine.c` 是 `sine.c` 文件的绝对路径。
阅读全文