Skip to content

Commit

Permalink
[ground_segment] make multimon compile on arm
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Jan 4, 2013
1 parent e04623c commit d40c03d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sw/ground_segment/multimon/Makefile
Expand Up @@ -49,7 +49,7 @@ endif
LBITS := $(shell getconf LONG_BIT)
ifeq ($(LBITS),64)
CFLAGS += -fPIC
else
else ifeq ($(MACHINE),'i686')
CFLAGS += -march=i486 -falign-loops=2 -falign-jumps=2 -falign-functions=2 -DARCH_I386
endif

Expand Down Expand Up @@ -89,7 +89,7 @@ $(BINDIR)/%.o: %.c
@echo CC $<
$(Q)$(CC) $(CFLAGS) -c -o $@ $<

SRC_L2 =hdlc.c pprz.c
SRC_L2 = hdlc.c pprz.c
SRC_L1 = demod_afsk48p.c demod_display.c
SRC_MISC = unixinput.c xdisplay.c

Expand Down

0 comments on commit d40c03d

Please sign in to comment.