-
Type:
Bug
-
Resolution: Done
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
Environment:Ubuntu 64-bit
-
ALL
-
None
-
None
-
None
-
None
-
None
-
None
-
None
We're seeing inconsistent build failures. Our build process:
```
wget https://github.com/mongodb/mongo/archive/r2.6.9.tar.gz -O download.tar.gz
tar -xf download.tar.gz --strip-components 1
nice scons mongod mongo \
--disable-warnings-as-errors \
-j8 \
--prefix=some/dir
```
( This is with scons 2.3.5, also compiled from source. )
We frequently see problems such as:
standard input}: Assembler messages:
{standard input}:3946: Warning: end of file not at end of a line; newline inserted
{standard input}:5496: Error: unknown pseudo-op: `.lfe19552'
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions.
scons: *** [build/linux2/normal/mongo/s/d_migrate.o] Error 4
scons: building terminated because of errors.
travis_time:end:0f950ce8:start=1437756652159370075,finish=1437757098978616856,duration=446819246781
or:
g++: internal compiler error: Killed (program cc1plus) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions. scons: *** [build/linux2/normal/mongo/db/client.o] Error 4 scons: building terminated because of errors.
For full build logs, you can have a look at CI results on this PR: https://github.com/scitran/scitran/pull/44
Notably, the only success was "Update travis note", which was a comment-only change.
Any idea what's causing repeatability failures in our build?