Blame view

buildroot/buildroot-2016.08.1/package/dmidecode/0001-build-system-fixes.patch 1008 Bytes
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
  Minor build system fixes
  
  Usual build system fixes to allow CC/CFLAGS/LDFLAGS to be overriden
  from the command line, and completed by additional flags from the
  Makefile.
  
  Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  
  Index: b/Makefile
  ===================================================================
  --- a/Makefile
  +++ b/Makefile
  @@ -12,9 +12,10 @@
   #   (at your option) any later version.
   #
   
  -CC      = gcc
  -CFLAGS  = -W -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
  -          -Wcast-align -Wwrite-strings -Wmissing-prototypes -Winline -Wundef
  +CC      ?= gcc
  +override CFLAGS  += \
  +	-W -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
  +        -Wcast-align -Wwrite-strings -Wmissing-prototypes -Winline -Wundef
   
   # Let lseek and mmap support 64-bit wide offsets
   CFLAGS += -D_FILE_OFFSET_BITS=64
  @@ -27,7 +28,7 @@ CFLAGS += -O2
   #CFLAGS += -g
   
   # Pass linker flags here
  -LDFLAGS =
  +override LDFLAGS +=
   
   DESTDIR =
   prefix  = /usr/local