Build #5 for lvmrun-1.0

[all reports]

Package lvmrun-1.0
Install InstallOk
Docs Ok
Tests NotTried
Time submitted 2015-11-13 12:31:24.927832 UTC
Compiler ghc-7.10.2
OS linux
Arch x86_64
Dependencies
Flags none

Code Coverage

No Code Coverage was submitted for this report.

Build log

[view raw]

Resolving dependencies...

** check system **
Configuring for a x86_64-unknown-pc-linux-gnu ...
gcc found
strip found
The C compiler is ANSI-compliant.
Checking the sizes of integers and pointers...
Wow! A 64 bit architecture!
This is a little-endian architecture.
Doubles can be word-aligned.
64-bit integers can be word-aligned.
POSIX signal handling found.
has keyword const.
first class labels are supported.

** check header files **
dlfcn.h found.
   link with -ldl
pthread.h found.
   link without -pthread
stdarg.h found.
time.h found.
sys/times.h found.
unistd.h found.
float.h found.

** check functions **
strerror() found.
memmove() found.
vsnprintf() found.
snprintf() found.
strncpy() found.

** Configuration summary **

System:
        descriptor................ x86_64-unknown-pc-linux-gnu
        architecture.............. 64 bit
        endianness................ little endian

Configuration for the c compiler:
        C compiler used........... gcc 
        options for compiling..... -fno-defer-pop -Wall
        linker used............... gcc
        options for linking.......  -lm -ldl


gcc -o core/main.o -c core/main.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/stats.o -c core/stats.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/options.o -c core/options.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/schedule.o -c core/schedule.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/evaluator.o -c core/evaluator.c -O3 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/instr.o -c core/instr.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/thread.o -c core/thread.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/stack.o -c core/stack.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/loader.o -c core/loader.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
core/loader.c: In function ‘resolve_external_records’:
core/loader.c:519:15: warning: variable ‘fname’ set but not used [-Wunused-but-set-variable]
   const char* fname;
               ^
gcc -o core/module.o -c core/module.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/print.o -c core/print.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/ccall.o -c core/ccall.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/dynamic.o -c core/dynamic.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/fail.o -c core/fail.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
core/fail.c: In function ‘fatal_uncaught_exception’:
core/fail.c:145:5: warning: format not a string literal and no format arguments [-Wformat-security]
     case 0:  snprintf( buf, MAXSTR, msg ); break;
     ^
core/fail.c:145:5: warning: format not a string literal and no format arguments [-Wformat-security]
gcc -o core/misc.o -c core/misc.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/signals.o -c core/signals.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/systhread.o -c core/systhread.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/sys.o -c core/sys.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o core/primfloat.o -c core/primfloat.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/fixed.o -c heap/fixed.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/bytes.o -c heap/bytes.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/alloc.o -c heap/alloc.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/compact.o -c heap/compact.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/custom.o -c heap/custom.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/finalise.o -c heap/finalise.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
heap/finalise.c: In function ‘final_do_calls’:
heap/finalise.c:81:16: warning: variable ‘f’ set but not used [-Wunused-but-set-variable]
   struct final f;
                ^
gcc -o heap/freelist.o -c heap/freelist.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/gc_ctrl.o -c heap/gc_ctrl.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
heap/gc_ctrl.c: In function ‘heap_stats’:
heap/gc_ctrl.c:132:18: warning: variable ‘prev_hp’ set but not used [-Wunused-but-set-variable]
   char *cur_hp, *prev_hp;
                  ^
gcc -o heap/major_gc.o -c heap/major_gc.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/minor_gc.o -c heap/minor_gc.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/memory.o -c heap/memory.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/roots.o -c heap/roots.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/weak.o -c heap/weak.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o heap/globroots.o -c heap/globroots.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o prim/prims.o -c prim/prims.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o prim/primio.o -c prim/primio.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o prim/primsys.o -c prim/primsys.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o prim/primstring.o -c prim/primstring.c -O2 -fno-defer-pop -Wall -fno-strict-aliasing -Iconfig -I. -Icommon
gcc -o lvmrun core/main.o core/stats.o core/options.o core/schedule.o core/evaluator.o core/instr.o core/thread.o core/stack.o core/loader.o core/module.o core/print.o core/ccall.o core/dynamic.o core/fail.o core/misc.o core/signals.o core/systhread.o core/sys.o core/primfloat.o heap/fixed.o heap/bytes.o heap/alloc.o heap/compact.o heap/custom.o heap/finalise.o heap/freelist.o heap/gc_ctrl.o heap/major_gc.o heap/minor_gc.o heap/memory.o heap/roots.o heap/weak.o heap/globroots.o prim/prims.o prim/primio.o prim/primsys.o prim/primstring.o -lm -ldl
strip lvmrun
make: Nothing to be done for `docs'.
echo "Making directory..."
Making directory...
mkdir -p /home/builder/hackage-server/build-cache/tmp-install/bin
echo "Copying..."
Copying...
cp lvmrun /home/builder/hackage-server/build-cache/tmp-install/bin
echo "Done copying"
Done copying
Installed lvmrun-1.0

Test log

No test log was submitted for this report.