0001-Makefile-cross-compile-friendly.patch 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Makefile: make it cross-compile (and Buildroot) friendly.
  2. The current Makefile makes heavy assumptions that it is doing native
  3. compilation on the RPi, as it checks that `uname -m` is an ARM machine.
  4. This is wrong in the cross-compilation case.
  5. Remove the conditional altogether, and do not override the CFLAGS
  6. as passed in the environment (Buildroot passes proper CFLAGS).
  7. [intial patch by: Eric Limpens <limpens@gmail.com>]
  8. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
  9. diff -durN pifmrds-c67306ea9b8d827f45e0d90279d367e97119bcb1.orig/src/Makefile pifmrds-c67306ea9b8d827f45e0d90279d367e97119bcb1/src/Makefile
  10. --- pifmrds-c67306ea9b8d827f45e0d90279d367e97119bcb1.orig/src/Makefile 2014-05-04 18:21:40.000000000 +0200
  11. +++ pifmrds-c67306ea9b8d827f45e0d90279d367e97119bcb1/src/Makefile 2014-06-21 16:38:31.971804343 +0200
  12. @@ -1,20 +1,8 @@
  13. CC = gcc
  14. -STD_CFLAGS = -Wall -std=gnu99 -c -g -O3
  15. -# Enable ARM-specific options only on ARM, and compilation of the app only on ARM
  16. -UNAME := $(shell uname -m)
  17. -
  18. -ifeq ($(UNAME), armv6l)
  19. - CFLAGS = $(STD_CFLAGS) -march=armv6 -mtune=arm1176jzf-s -mfloat-abi=hard -mfpu=vfp -ffast-math
  20. -
  21. app: rds.o waveforms.o pi_fm_rds.o fm_mpx.o control_pipe.o
  22. $(CC) -o pi_fm_rds rds.o waveforms.o pi_fm_rds.o fm_mpx.o control_pipe.o -lm -lsndfile
  23. -else
  24. - CFLAGS = $(STD_CFLAGS)
  25. -endif
  26. -
  27. -
  28. rds_wav: rds.o waveforms.o rds_wav.o fm_mpx.o
  29. $(CC) -o rds_wav rds_wav.o rds.o waveforms.o fm_mpx.o -lm -lsndfile