Blame view

buildroot/buildroot-2016.08.1/package/pixman/0002-pixman-private-include-float.h-only-in-C-code.patch 1.69 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  From 2a5b33fe5cb921993573392afac19185e224b49a Mon Sep 17 00:00:00 2001
  From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  Date: Sun, 17 Jan 2016 14:14:28 +0100
  Subject: [PATCH] pixman-private: include <float.h> only in C code
  
  <float.h> is included unconditionally by pixman-private.h, which in
  turn gets included by assembler files. Unfortunately, with certain C
  libraries (like the musl C library), <float.h> cannot be included in
  assembler files:
  
    CCLD     libpixman-arm-simd.la
  /home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h: Assembler messages:
  /home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h:8: Error: bad instruction `int __flt_rounds(void)'
  /home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h: Assembler messages:
  /home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h:8: Error: bad instruction `int __flt_rounds(void)'
  
  It turns out however that <float.h> is not needed by assembly files,
  so we move its inclusion within the #ifndef __ASSEMBLER__ condition,
  which solves the problem.
  
  Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  ---
   pixman/pixman-private.h | 3 +--
   1 file changed, 1 insertion(+), 2 deletions(-)
  
  diff --git a/pixman/pixman-private.h b/pixman/pixman-private.h
  index 73108a0..73a5414 100644
  --- a/pixman/pixman-private.h
  +++ b/pixman/pixman-private.h
  @@ -1,5 +1,3 @@
  -#include <float.h>
  -
   #ifndef PIXMAN_PRIVATE_H
   #define PIXMAN_PRIVATE_H
   
  @@ -30,6 +28,7 @@
   #include <stdio.h>
   #include <string.h>
   #include <stddef.h>
  +#include <float.h>
   
   #include "pixman-compiler.h"
   
  -- 
  2.6.4