[llvm-testresults] buildbot failure in smooshlab on llvm-gcc-i386-darwin9
daniel_dunbar at apple.com
daniel_dunbar at apple.com
Tue Nov 16 11:04:38 PST 2010
The Buildbot has detected a new failure of llvm-gcc-i386-darwin9 on smooshlab.
Full details are available at:
http://smooshlab.apple.com:8010/builders/llvm-gcc-i386-darwin9/builds/11032
Buildbot URL: http://smooshlab.apple.com:8010/
Buildslave for this Build: smoosh-03.apple.com
Build Reason:
Build Source Stamp: 119364
Blamelist: bwilson,kremenek,mspencer,rafael
BUILD FAILED: failed compile.llvm.stage1
sincerely,
-The Buildbot
================================================================================
CHANGES:
Files:
include/llvm/System/system_error.h
lib/System/CMakeLists.txt
lib/System/Unix/system_error.inc
lib/System/Win32/system_error.inc
lib/System/system_error.cpp
utils/KillTheDoctor/CMakeLists.txt
utils/KillTheDoctor/KillTheDoctor.cpp
utils/KillTheDoctor/system_error.cpp
utils/KillTheDoctor/system_error.h
At: Tue 16 Nov 2010 10:38:10
Changed By: mspencer
Comments: This is the first step in adding sane error handling support to LLVMSystem.
The system API's will be shifted over to returning an error_code, and returning
other return values as out parameters to the function.
Code that needs to check error conditions will use the errc enum values which
are the same as the posix_errno defines (EBADF, E2BIG, etc...), and are
compatable with the error codes in WinError.h due to some magic in system_error.
An example would be:
if (error_code ec = KillEvil("Java")) { // error_code can be converted to bool.
handle_error(ec);
}Properties:
File: lib/MC/MCParser/AsmParser.cpp
At: Tue 16 Nov 2010 10:38:10
Changed By: rafael
Comments: Parse and ignore some .cfi_* directives.Properties:
File: utils/TableGen/NeonEmitter.cpp
At: Tue 16 Nov 2010 10:47:37
Changed By: bwilson
Comments: Revert "Stop using struct wrappers for Neon vector types in <arm_neon.h>."
It's breaking buildbots.Properties:
File: include/llvm/System/system_error.h
At: Tue 16 Nov 2010 10:52:43
Changed By: mspencer
Comments: system_error: More conditional error codes for Darwin.Properties:
Files:
lib/Checker/UnixAPIChecker.cpp
test/Analysis/unix-fns.c
At: Tue 16 Nov 2010 10:53:00
Changed By: kremenek
Comments: Static analyzer: Catch calls to malloc() with
allocation sizes of 0 bytes.
Fixes PR 2899.Properties:
LOGS:
Last 10 lines of 'stdio':
llvm[1]: Compiling ThreadLocal.cpp for Release+Asserts build
llvm[1]: Compiling Threading.cpp for Release+Asserts build
llvm[1]: Compiling TimeValue.cpp for Release+Asserts build
llvm[1]: Compiling Valgrind.cpp for Release+Asserts build
llvm[1]: Compiling system_error.cpp for Release+Asserts build
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.llvm-gcc-i386-darwin9/llvm.src/include/llvm/System/system_error.h:573: error: 'EOWNERDEAD' was not declared in this scope
/Users/buildslave/zorg/buildbot/smooshlab/slave/build.llvm-gcc-i386-darwin9/llvm.src/include/llvm/System/system_error.h:581: error: 'ENOTRECOVERABLE' was not declared in this scope
make[1]: *** [/Users/buildslave/zorg/buildbot/smooshlab/slave/build.llvm-gcc-i386-darwin9/llvm.obj/lib/System/Release+Asserts/system_error.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [all] Error 1
More information about the llvm-testresults
mailing list