Andreas Baumann
Andreas Baumann
version is 1.3.25
I'm running in a 32-bit chroot on Archlinux (as root). And it's the only test failing, all others pass fine.
Well, if your 32-bit CI says "all ok", I'll also have to dig what's wrong in my build environment..
I have a: ``` warning: ignoring symlink /build/arduino-builder/src/arduino-builder-1.3.25/src/arduino.cc/builder/test/user_hardware/my_symlinked_avr_platform ``` when running the tests. It's pointing to my_avr_platform.
typical memory usage in /tmp (tmpfs): ``` tmpfs 4056404 63196 3993208 2% /tmp ``` looks ok to me.
I see some other warnings: ``` Warning: Board my_avr_platform:avr:mymega doesn't define a 'build.board' preference. Auto-set to: AVR_MYMEGA Warning: Board my_symlinked_avr_platform:avr:mymega doesn't define a 'build.board' preference. Auto-set to: AVR_MYMEGA ``` Maybe...
I retested on Archlinux 64-bit, there is no problem there.. I would assume, the builder doesn't generate any output for some tests and then the test code bails out with...
Aeh, you are downloading static libraries (usually illegal on many distros) and just linking against a libxml.a built with whatever flags? This will totally not work and injects binary artifacts...
Ok, I tried to patch and package it for Archlinux, so that it builds fine with system libraries. The result is here: https://aur.archlinux.org/packages/pdfalto/
Well, illegal is a harsh term, sorry. :-) Statically linked libraries have been built with all kind of flags affecting the ABI (PIC, PIE, stack smashing, optimization flags, etc.), so...