| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
packages
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Warning: ARM support is still experimental
... and it fails with:
In file included from ./src/containers/printf_buffer.hpp:11:0,
from ./src/containers/archive/archive.hpp:10,
from ./src/rdb_protocol/serialize_datum.hpp:6,
from src/rdb_protocol/serialize_datum.cc:2:
./src/errors.hpp: In function 'size_t ql::datum_get_element_offset(const shared_buf_ref_t<char>&, size_t)':
./src/errors.hpp:122:9: error: 'element_offset' may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (!(cond)) { \
^
src/rdb_protocol/serialize_datum.cc:939:18: note: 'element_offset' was declared here
uint64_t element_offset;
^
[155/400] CC build/release_system/obj/rdb_protocol/artificial_table/caching_cfeed_backend.o
cc1plus: all warnings being treated as errors
src/build.mk:381: recipe for target 'build/release_system/obj/rdb_protocol/serialize_datum.o' failed
|
|
|
|
|
|
| |
also update the tarball checksum. probably cgit just returning the
same data encoded slightly differently with new timestamp / gzip
compression level.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Seems mono needs now special action to bootstrap it. Build fails with:
*** The compiler 'mcs' doesn't appear to be usable.
*** You need Mono version 3.8 or better installed to build MCS
*** Check mono README for information on how to bootstrap a Mono installation.
/bin/sh: mcs: not found
*** The version of 'mcs' is: .
|
| |
|
|
|
|
|
| |
https://github.com/nikic/php-ast
Extension exposing PHP 7 abstract syntax tree
|
| |
|
| |
|
|
|
|
|
| |
stylitic fixes. seems the mirrors keep only the latest version
of each release branch, so we may need look alternative mirror.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
http://rtsisyk.github.io/luafun/
"Lua Fun is a high-performance functional programming library for Lua
designed with LuaJIT's trace compiler in mind."
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
explicitly disable pam (it worked on x86_64 and x86, due to different
configure.ac defaults depending on $target_os, but fails on arm due
to missing pam headers)
|
|
|
|
|
|
|
|
|
| |
Fails with:
domoticz-0_git20160214/hardware/PiFace.cpp: In member function 'int CPiFace::Read_Write_SPI_Byte(unsigned char*, int)':
domoticz-0_git20160214/hardware/PiFace.cpp:1011:23: error: '_IOC_SIZEBITS' was not declared in this scope
return ioctl (m_fd, SPI_IOC_MESSAGE(1), &spi) ;
probably missing include
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fails with (apparently due to new gcc toolchain):
gcc -E `if test false = true; then echo '-DASM_UNDERSCORE'; fi` ./vacall-arm.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//,@,g' -e 's,\$,#,g' > vacall-arm.s
gcc -x none -c vacall-arm.s
vacall-arm.s: Assembler messages:
vacall-arm.s:3: Warning: ignoring attempt to redefine built-in register 'sl'
vacall-arm.s:4: Warning: ignoring attempt to redefine built-in register 'fp'
vacall-arm.s:5: Warning: ignoring attempt to redefine built-in register 'ip'
vacall-arm.s:6: Warning: ignoring attempt to redefine built-in register 'sp'
vacall-arm.s:7: Warning: ignoring attempt to redefine built-in register 'lr'
vacall-arm.s:8: Warning: ignoring attempt to redefine built-in register 'pc'
vacall-arm.s:80: Error: selected processor does not support `ldfeqs f0,[sp,#20]' in ARM mode
vacall-arm.s:84: Error: selected processor does not support `ldfeqd f0,[sp,#20]' in ARM mode
Makefile:105: recipe for target 'vacall-arm.o' failed
make[1]: *** [vacall-arm.o] Error 1
See also:
https://wiki.debian.org/ArmEabiProblems (search for ffcall)
|
|
|
|
|
|
|
|
|
|
| |
LD_LIBRARY_PATH="$LD_LIBRARY_PATH`echo -Wl,--as-needed | \
sed -e 's/-L/:/g' -e 's/ //g'`" \
./H5detect > H5Tinit.c || \
(test $HDF5_Make_Ignore && echo "*** Error ignored") || \
(rm -f H5Tinit.c ; exit 1)
Segmentation fault
Makefile:1678: recipe for target 'H5Tinit.c' failed
|
|
|
|
| |
libbsd is not available on arm
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
g++ -Os -fomit-frame-pointer -pipe -fPIC -fPIC -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -Wl,--as-needed -fexpensive-optimizations -funroll-loops -mmmx -msse -msse2 -msse3 -DPARALLEL_MODE=PARALLEL_128_SSE2 -c FFdecsa.c
g++: error: unrecognized command line option '-mmmx'
g++: error: unrecognized command line option '-msse'
g++: error: unrecognized command line option '-msse2'
g++: error: unrecognized command line option '-msse3'
probably just matter of getting CFLAGS correctly in makefile
|