c – 如何从stdin编译代码?

前端之家收集整理的这篇文章主要介绍了c – 如何从stdin编译代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Is it possible to get gcc to read from a pipe?2
> Compiling C++-code without a file5个
代码很简单:
test$cat test.cpp

int main()
{
}

有没有办法编译来自标准输出代码

我试过这个:

cat test.cpp | g++ -

和一些变化,但没有一个可执行.

只是一些澄清.我有一个预处理文件的程序,并生成另一个我要编译的文件.我想到没有创建这个中间文件,而是直接生成对象文件.

解决方法

编译器可能会告诉你:
-E or -x required when input is from standard input

尝试

cat test.cpp | g++ -x c++ -
原文链接:https://www.f2er.com/c/115469.html

猜你在找的C&C++相关文章