这是 gcc 优化错误吗?
这是我的代码: bool func(const MY_STRUCT *const ptr, some_struct *x, int y) { printf("IN: %p\n", ptr); // ok for (int i = 0; i < y; ++i) { i…
从 2.9x 升级 GCC
我一直在尝试在我的 PS2 Linux 机器(mips)上从 2.95.2 升级编译器,我的头快要爆炸了。我不会声称我擅长 Linux。 我将首先回顾一下我已经完成的过程…
使用 boost 1.36 和 C++ 的 RHEL4 版本的问题
我正在努力解决一个神秘的问题 我只在我的 RHEL4 发行版上看到。我的一些单元测试(使用 boost 1.36 单元测试框架)在 RHEL4 (gcc 3.4.6) 上和使用发…
无法将流代码与 gcc 链接
我在编译以下代码时遇到问题: // writing on a text file #include #include using namespace std; int main () { ofstream myfile ("example.txt");…
GCC 3.4.3 中的 vector::push_back 错误?
使用 GCC 为 ARM 构建时,以下代码会崩溃: #include using namespace std; void foo(vector& bools) { bools.push_back(true); } int main(int argc,…
- 共 1 页
- 1