User forums > Nightly builds
The 21 June 2009 build (5678) is out.
dk:
--- Quote from: stahta01 on June 24, 2009, 01:06:04 am ---Would it help if one of the Nightly snapshots was named an Beta every 6 months or so?
--- End quote ---
Current nightly are enough stable and have some new features (vector debugging is cool!).
I need new version with automated installer and integrated MinGW to distribute C::B to my school students.
Since my students are 13-16 years old, it is too difficult for them to install C::B as separate MinGW compiler and C::B IDE.
oBFusCATed:
--- Quote from: dk on June 24, 2009, 03:31:27 pm ---
--- Code: ---A = Couldn't find method std::vector <std::basic_string <char, std::char_traits <char> , std::allocator <char> > , [... and so on]
--- End code ---
Where A is vector <string>.
--- End quote ---
Can you post 2-3 lines of the code, so I can reproduce it?
Does it work for vector<int>?
dk:
--- Code: ---#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector <string> A;
A.resize(4);
A[0]="abc";
A[2]="def";
A.push_back("xyz");
return 0;
}
--- End code ---
$ g++ --version
i586-alt-linux-g++ (GCC) 4.4.0 20090514 (ALT Linux 4.4.0-alt3)
$ gdb --version
GNU gdb 6.6-alt3 (ALT Linux)
C::B - svn 5678.
oBFusCATed:
What a strange combination - bleeding edge compiler and relatively old debugger.
Can you try with gdb 6.8?
p.s. I'll test the code later....
dk:
--- Quote from: oBFusCATed on June 24, 2009, 04:10:29 pm ---What a strange combination - bleeding edge compiler and relatively old debugger.
Can you try with gdb 6.8?
--- End quote ---
No. gdb 6.8 is rather new (3 months old) and there are no gdb 6.8 in my linux distribution repository.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version