Questions tagged «g++»

2
Python ./configure找不到g ++编译器
我正在尝试在仿真的ARM机器(使用Debian 7)上编译Python 3.4.1。./configure给我 checking for g++... no 但已安装g ++。那么可能是什么问题呢?我知道不是严格需要的,但是我更喜欢make将g ++用于c ++代码。
12 compile  g++ 

2
在Linux Mint中安装GCC / G ++ 4.9版
我一直喜欢拥有最新版本的东西,尤其是如果该东西是gcc,g ++,并且最近对c ++标准进行了修订。 我忘记了我需要添加什么ppa(我认为它们来自Ubuntu组织)才能安装g ++-4.9。 谢谢,请提醒我如何完成此过程。
8 linux  ubuntu  linux-mint  gcc  g++ 

2
cygwin64上的编译不适用于g ++ 4.9.2
我有 GNU make 4.0版 g ++ / gcc版本4.9.2 命令 make clean 工作得很好 但是当我使用命令时 make 编译 我收到了这个错误 C:/cygwin64/lib/gcc/x86_64-pc-cygwin/4.9.2/cc1plus.exe: error while loading shared libraries: cygisl-10.dll: cannot open shared object file: No such file or directory Makefile:6: recipe for target 'prog' failed make: *** [prog] Error 1 我做错了什么?我错过了什么?
2 cygwin  compile  make  g++ 

1
Windows等效于UNIX正则表达式
有替代品吗 **/*.* **/*.cpp 这样我就可以做这样的事情: gcc -std=c++14 -I ./include/ -o ./bin/main ./src/**/*.cpp (不使用任何makefile时的方式) 在Windows上,我这样做: gcc -std=c++14 -I include -o bin/main src/main.cpp src/Sth.cpp src/SthEl.cpp 因为正则表达式似乎不起作用,或者我无法找到使它们起作用的方法... 你能告诉我在Windows上怎么做吗?
windows  regex  g++ 
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.