Member Site › Forums › Rosetta 3 › Rosetta 3 – Build/Install › Build Error, ubuntu 10.10, scons 2.0, python 2.6.6 and gcc 4.4.5, truncation › Reply To: Build Error, ubuntu 10.10, scons 2.0, python 2.6.6 and gcc 4.4.5, truncation
UPDATE:
SUCCESS
Install file: "build/src/release/linux/2.6/64/x86/gcc/4.5/super_aln.linuxgccrelease" as "bin/super_aln.linuxgccrelease"
scons: done building targets.
The trick was to trawl through the forum, in one of the Fedora discussions on an identical error message it was recommended that if you edit util.cc ([Rosetta_path]/src/core/conformation/symmetry/util.cc)
At around line 360, edit such that the elseif argument reads like
#ifdef WIN32
pose::PDBInfoOP pdb_info_src (new pose::PDBInfo( pose.pdb_info() ));
#else
/// pose::PDBInfoOP pdb_info_src = new pose::PDBInfo::PDBInfo( pose.pdb_info() );
pose::PDBInfoOP pdb_info_src = new pose::PDBInfo( pose.pdb_info() );
#endif
All we’ve done is comment out the original line and add a slightly different one. Apparently this is as a result of the gcc v4.5 being fussier over it’s names than previous versions
EDIT:
I’ve added a full guide of what I’ve done to get Rosetta working to my blog