Blame view

buildroot/buildroot-2016.08.1/package/xfsprogs/0003-xfsprogs-don-t-use-CFLAGS-with-BUILD_CC.patch 1.26 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
  From 5b3dd8eb1f7720c68dab032c3d89d4e3102d6347 Mon Sep 17 00:00:00 2001
  From: Gustavo Zacarias <gustavo@zacarias.com.ar>
  Date: Tue, 15 Dec 2015 20:51:35 -0300
  Subject: [PATCH] xfsprogs: don't use CFLAGS with BUILD_CC
  
  When cross-compiling CFLAGS might not be suitable for the host
  (BUILD_CC) compiler since it might contain arch-specific options.
  
  Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  ---
  Status: reported http://oss.sgi.com/bugzilla/show_bug.cgi?id=1132
  
   libxfs/Makefile | 4 ++--
   1 file changed, 2 insertions(+), 2 deletions(-)
  
  diff --git a/libxfs/Makefile b/libxfs/Makefile
  index ecf1921..3979077 100644
  --- a/libxfs/Makefile
  +++ b/libxfs/Makefile
  @@ -111,7 +111,7 @@ default: crc32selftest ltdepend $(LTLIBRARY)
   
   crc32table.h: gen_crc32table.c
   	@echo "    [CC]     gen_crc32table"
  -	$(Q) $(BUILD_CC) $(CFLAGS) -o gen_crc32table $<
  +	$(Q) $(BUILD_CC) -o gen_crc32table $<
   	@echo "    [GENERATE] $@"
   	$(Q) ./gen_crc32table > crc32table.h
   
  @@ -122,7 +122,7 @@ crc32table.h: gen_crc32table.c
   # disk.
   crc32selftest: gen_crc32table.c crc32table.h crc32.c
   	@echo "    [TEST]    CRC32"
  -	$(Q) $(BUILD_CC) $(CFLAGS) -D CRC32_SELFTEST=1 crc32.c -o $@
  +	$(Q) $(BUILD_CC) -D CRC32_SELFTEST=1 crc32.c -o $@
   	$(Q) ./$@
   
   # set up include/xfs header directory
  -- 
  2.4.10