Questions tagged «compiler»

与编译器或提供编译工具有关的问题。

1
如何安装g ++编译器?
我尝试了以下方法: sudo apt-get install build-essential Reading package lists... Done Building dependency tree Reading state information... Done build-essential is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 但是当我编译时,终端显示以下内容: g++ hello.cpp -o hello The program 'g++' can be found in the following packages: * …


2
LLVM / Clang 3.1和libc ++
是否有人为LLVM / Clang 3.1构建和设置Ubuntu Precise PPA?一个额外的好处就是将一个最新版本的libc ++也集成到其中。
13 12.04  compiler 

5
无法执行.out文件,权限被拒绝
我已经编写了一个C ++程序并将其编译为产生一个.out文件。但是,每当我尝试运行它时,都会被拒绝权限。我读到我们可以使用sudo,但是我无法完全使用它。我使用类似sudo“ ./a.out”之类的东西,但这也行不通。 编辑: 这是我尝试“ ./a.out”时收到的消息。 bash: ./a.out: Permission denied

2
将GCC更新到6.3版本[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使它成为Ask Ubuntu 的主题。 3年前关闭。 我想使用一些仅在该语言的最新版本中可用的C ++功能。问题是Ubuntu 15.04(Vivid Vervet)已安装4.9.2,并查看我从apt-get install gcc获得的输出: Reading package lists... Done Building dependency tree Reading state information... Done gcc is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded. 2 not fully installed or removed. After this operation, …
10 apt  gcc  c++  versions  compiler 


2
如何使用clang编译OpenMP程序?
我的gcc编译良好,但是clang失败并显示以下消息: clang -fopenmp=libomp -o main main.c main.c:5:10: fatal error: 'omp.h' file not found 我还安装了libomp5package并将flag更改为-fopenmp=libomp5,尽管它也没有帮助: clang -fopenmp=libomp5 -o main main.c clang: error: unsupported argument 'libomp5' to option 'fopenmp=' clang: error: unsupported argument 'libomp5' to option 'fopenmp=' 这些建议没有用。 感谢您安装必要的16.04特定软件包并传递相应标志的提示。


2
PHP编译器/解释器
如何在Ubuntu 11.04上安装PHP编译器/解释器 我有最新版本的PHP,但是我想从终端学习PHP。是否有可用的PHP解释器将在终端中运行PHP程序。 例如,我想运行“ phpc”,“ phpi”或“ php”之类的命令来打开PHP REPL。 谢谢。
8 php  compiler 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.