我正在尝试使用以下构建命令从 Kate 编辑器编译并运行 C++ 程序。
konsole -e g++ -std=c++14 -Wall -c %f -o %n.o && chmod +x %n.o && ./%n.o
但是它给出了错误“Exec 格式错误”。如何解决这个问题?
答案1
假设我们有 hello.cpp 作为我们的示例 c++ 文件。您可以按“F4”并写入以下命令来运行 Kate。
g++ hello.cpp -o 你好
。/你好
我正在尝试使用以下构建命令从 Kate 编辑器编译并运行 C++ 程序。
konsole -e g++ -std=c++14 -Wall -c %f -o %n.o && chmod +x %n.o && ./%n.o
但是它给出了错误“Exec 格式错误”。如何解决这个问题?
假设我们有 hello.cpp 作为我们的示例 c++ 文件。您可以按“F4”并写入以下命令来运行 Kate。
g++ hello.cpp -o 你好
。/你好