Bug 366542 - Build failure on i686
Summary: Build failure on i686
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Portability-Compilation (show other bugs)
Version: 5.1.0
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-08-09 09:14 UTC by Antonio Rojas
Modified: 2017-08-19 21:06 UTC (History)
4 users (show)

See Also:
Latest Commit:
Version Fixed In: 5.2.0


Attachments
quick-n-dirty fix (1.04 KB, patch)
2016-08-09 15:39 UTC, Rex Dieter
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Antonio Rojas 2016-08-09 09:14:51 UTC
digikam 5.1.0 fails to build on i686, using GCC 6.1.1. Works fine on x86_64

[ 50%] Building CXX object core/libs/rawengine/CMakeFiles/rawengine_srcs.dir/drawdecoder.cpp.o
In file included from /build/digikam/src/digikam-5.1.0/core/libs/rawengine/libraw/libraw/libraw_datastream.h:36:0,
                 from /build/digikam/src/digikam-5.1.0/core/libs/rawengine/libraw/libraw/libraw.h:40,
                 from /build/digikam/src/digikam-5.1.0/core/libs/rawengine/drawdecoder_p.h:46,
                 from /build/digikam/src/digikam-5.1.0/core/libs/rawengine/drawdecoder.cpp:31:
/build/digikam/src/digikam-5.1.0/core/libs/rawengine/libraw/libraw/libraw_types.h:630:2: error: #error Unable to figure out byte order.
 #error Unable to figure out byte order.
  ^~~~~
make[2]: *** [core/libs/rawengine/CMakeFiles/rawengine_srcs.dir/build.make:63: core/libs/rawengine/CMakeFiles/rawengine_srcs.dir/drawdecoder.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:5838: core/libs/rawengine/CMakeFiles/rawengine_srcs.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....


Reproducible: Always
Comment 1 caulier.gilles 2016-08-09 09:36:39 UTC
Right, i don't compile this libraw code in 32 bits Linux, only on Windows 32 with MinGw.

I will install a 32 bits Tux VM and fix the problem.

Gilles Caulier
Comment 2 Rex Dieter 2016-08-09 14:14:48 UTC
confirmed
Comment 3 caulier.gilles 2016-08-09 14:45:52 UTC
Which Linux distro did you use exactly ?

Gilles Caulier
Comment 4 Antonio Rojas 2016-08-09 14:46:53 UTC
(In reply to caulier.gilles from comment #3)
> Which Linux distro did you use exactly ?
> 
> Gilles Caulier

Arch
Comment 5 Rex Dieter 2016-08-09 14:49:07 UTC
I verified the i686 FTBFS on fedora 25 (development branch)
Comment 6 caulier.gilles 2016-08-09 14:56:14 UTC
It sound like the byte order test is changed with GCC :

https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html

__BYTE_ORDER__
__ORDER_LITTLE_ENDIAN__
__ORDER_BIG_ENDIAN__
__ORDER_PDP_ENDIAN__
__BYTE_ORDER__ is defined to one of the values __ORDER_LITTLE_ENDIAN__, __ORDER_BIG_ENDIAN__, or __ORDER_PDP_ENDIAN__ to reflect the layout of multi-byte and multi-word quantities in memory. If __BYTE_ORDER__ is equal to __ORDER_LITTLE_ENDIAN__ or __ORDER_BIG_ENDIAN__, then multi-byte and multi-word quantities are laid out identically: the byte (word) at the lowest address is the least significant or most significant byte (word) of the quantity, respectively. If __BYTE_ORDER__ is equal to __ORDER_PDP_ENDIAN__, then bytes in 16-bit words are laid out in a little-endian fashion, whereas the 16-bit subwords of a 32-bit quantity are laid out in big-endian fashion.
You should use these macros for testing like this:

          /* Test for a little-endian machine */
          #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__

Something like this must be add in rules from libraw_type.h

Gilles Caulier
Comment 8 Rex Dieter 2016-08-09 15:39:07 UTC
Created attachment 100514 [details]
quick-n-dirty fix

here's a quick-n-dirty patch I used that fixes it for me
Comment 9 caulier.gilles 2016-08-09 16:11:18 UTC
Yes the fix sound like correct for me and simple.

In fact, this code come from Libraw. I CC Libraw team as feedback. The right fix will appear in offcial Libraw 0.18.0 that i will backport.

Gilles Caulier
Comment 10 caulier.gilles 2016-08-09 18:42:40 UTC
Git commit 067a88d8c84a5149469961d54b1d5c93df6a3167 by Gilles Caulier.
Committed on 09/08/2016 at 18:41.
Pushed by cgilles into branch 'master'.

apply patch #100514 to fix broken compilation under 32 bits platform with GCC 6.1
FIXED-IN: 5.2.0

M  +2    -1    NEWS
M  +9    -2    libs/rawengine/libraw/libraw/libraw_types.h

http://commits.kde.org/digikam/067a88d8c84a5149469961d54b1d5c93df6a3167