[> Instructions (software)
--------------------------
1. Compile and install binutils. Take the latest version from GNU.
- ./configure --target=lm32-elf
+ mkdir build && cd build
+ ../configure --target=lm32-elf
make
make install
-2. Compile and install LLVM and Clang.
- git clone git://github.com/milkymist/llvm-lm32.git
- cd llvm-lm32/tools
- git clone git://github.com/milkymist/clang-lm32.git clang
- cd ..
- mkdir build
- cmake ..
+2. Compile and install GCC 4.5. Take gcc-core and gcc-g++ from GNU.
+ rm -rf libstdc++-v3
+ mkdir build && cd build
+ ../configure --target=lm32-elf --enable-languages="c,c++" --disable-libgcc --disable-libssp
make
make install
make flash
The second command requires m1nor, FJMEM and UrJTAG.
-These tools can be found respectively at:
- http://projects.qi-hardware.com/index.php/p/wernermisc/
+These tools can be found at:
https://github.com/milkymist/fjmem-m1
http://urjtag.org
conjunction with the LatticeMico32 CPU core from Lattice.
Unless otherwise noted, Milkymist-NG's source code is copyright (C)
-2011-2012 Sebastien Bourdeauducq. Other authors retain ownership of their
+2011-2013 Sebastien Bourdeauducq. Other authors retain ownership of their
contributions. If a submission can reasonably be considered independently
copyrightable, it's yours and I encourage you to claim it with
appropriate copyright notices. This submission then falls under the
-TARGET_PREFIX=lm32-elf
-CLANG=clang -target lm32
+TARGET_PREFIX=lm32-elf-
-CC_normal := $(CLANG)
-AS_normal := $(TARGET_PREFIX)-as
-AR_normal := $(TARGET_PREFIX)-ar
-LD_normal := $(TARGET_PREFIX)-ld
-OBJCOPY_normal := $(TARGET_PREFIX)-objcopy
-RANLIB_normal := $(TARGET_PREFIX)-ranlib
+CC_normal := $(TARGET_PREFIX)gcc
+AS_normal := $(TARGET_PREFIX)as
+AR_normal := $(TARGET_PREFIX)ar
+LD_normal := $(TARGET_PREFIX)ld
+OBJCOPY_normal := $(TARGET_PREFIX)objcopy
+RANLIB_normal := $(TARGET_PREFIX)ranlib
-CC_quiet = @echo " CC " $@ && $(CLANG)
-AS_quiet = @echo " AS " $@ && $(TARGET_PREFIX)-as
-AR_quiet = @echo " AR " $@ && $(TARGET_PREFIX)-ar
-LD_quiet = @echo " LD " $@ && $(TARGET_PREFIX)-ld
-OBJCOPY_quiet = @echo " OBJCOPY " $@ && $(TARGET_PREFIX)-objcopy
-RANLIB_quiet = @echo " RANLIB " $@ && $(TARGET_PREFIX)-ranlib
+CC_quiet = @echo " CC " $@ && $(TARGET_PREFIX)gcc
+AS_quiet = @echo " AS " $@ && $(TARGET_PREFIX)as
+AR_quiet = @echo " AR " $@ && $(TARGET_PREFIX)ar
+LD_quiet = @echo " LD " $@ && $(TARGET_PREFIX)ld
+OBJCOPY_quiet = @echo " OBJCOPY " $@ && $(TARGET_PREFIX)objcopy
+RANLIB_quiet = @echo " RANLIB " $@ && $(TARGET_PREFIX)ranlib
ifeq ($(V),1)
CC = $(CC_normal)
# Toolchain options
#
INCLUDES = -I$(M2DIR)/software/include/base -I$(M2DIR)/software/include -I$(M2DIR)/common
-CFLAGS = -O3 -Wall -Wstrict-prototypes -Wold-style-definition -Wshadow \
- -Wmissing-prototypes -nostdinc $(INCLUDES)
+CFLAGS = -O3 -mbarrel-shift-enabled -mmultiply-enabled -mdivide-enabled -msign-extend-enabled \
+ -Wall -Wstrict-prototypes -Wold-style-definition -Wshadow \
+ -Wmissing-prototypes -fno-builtin -nostdinc $(INCLUDES)
LDFLAGS = -nostdlib -nodefaultlibs
# compile and generate dependencies, based on
# http://scottmcpeak.com/autodepend/autodepend.html
define compile-dep
-$(CC) -c $(CFLAGS) $< -o $*.ts -S
+$(CC) -c $(CFLAGS) $< -o $*.o
@$(CC_normal) -MM $(CFLAGS) $< > $*.d
@mv -f $*.d $*.d.tmp
@sed -e 's|.*:|$*.o:|' < $*.d.tmp > $*.d
@sed -e 's/.*://' -e 's/\\$$//' < $*.d.tmp | fmt -1 | \
sed -e 's/^ *//' -e 's/$$/:/' >> $*.d
@rm -f $*.d.tmp
-@$(AS_normal) -o $*.o $*.ts
endef
define assemble