Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - viniciusatique

#1
I've followed the tutorial from http://magiclantern.wikia.com/wiki/Magic_Lantern_Development_on_Mac up to the point where I was supposed to compile. Instead of his repo, I cloned the unified from bitbucket.

Tried to use coutts makefile but then I get this error: make: *** No rule to make target `500d-empty.fir', needed by `magiclantern.fir'.  Stop.

Then I tried to edit the makefile that came with the bitbucket clone. After editing the paths I left everything else as was and I get this error:

[ AS       ]   entry.o
/bin/sh: /Users/viniciusatique/yagarto/yagarto-4.7.2/bin/arm-none—eabi-gcc-4.7.2: No such file or directory
make: *** [entry.o] Error 127

But my make file is like this:

ARM_PATH=~/yagarto/yagarto-4.7.2
ARM_BINPATH=$(ARM_PATH)/bin
GCC_VERSION=4.7.2
CC=$(ARM_BINPATH)/arm-none—eabi-gcc-4.7.2
OBJCOPY=$(ARM_BINPATH)/arm-none-eabi-objcopy
AR=$(ARM_BINPATH)/arm-none-eabi-ar
RANLIB=$(ARM_BINPATH)/arm-none-eabi-ranlib
LD=$(CC)
HOST_CC=gcc
HOST_CFLAGS=-O3 -W -Wall

Can someone help me?