Blame view

buildroot/buildroot-2016.08.1/package/sp-oops-extract/0001-Make-the-Makefile-more-cross-compiler-friendly.patch 642 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  Fetch from: https://github.com/Schischu/ptxdist_sh/tree/master/patches/sp-oops-extract-0.0.7
  
  From: Bernhard Walle <walle@corscience.de>
  Date: Wed, 21 Mar 2012 15:55:06 +0100
  Subject: [PATCH] Make the Makefile more cross-compiler friendly
  
  Signed-off-by: Bernhard Walle <walle@corscience.de>
  ---
   src/Makefile |    2 +-
   1 file changed, 1 insertion(+), 1 deletion(-)
  
  diff --git a/src/Makefile b/src/Makefile
  index cf5b550..e05eb1f 100644
  --- a/src/Makefile
  +++ b/src/Makefile
  @@ -9,4 +9,4 @@ distclean: clean
   	$(RM) $(TARGETS)
   		
   sp-oops-extract: oopslog.c
  -	gcc -Wall -s -o $@ $^
  +	$(CC) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -Wall -o $@ $^