Update buildsystem to track -fPIC and ranlib removal in MiSoC.

This commit is contained in:
whitequark 2015-07-27 21:10:04 +03:00
parent 0cd74533ca
commit eec4a2d2d2
2 changed files with 2 additions and 3 deletions

View File

@ -4,10 +4,10 @@ ENTRY(_start)
INCLUDE generated/regions.ld INCLUDE generated/regions.ld
/* First 4M of main memory are reserved for runtime code/data /* First 4M of main memory are reserved for runtime code/data
* then comes kernel memory. First 16K of kernel memory are for support code. * then comes kernel memory. First 32K of kernel memory are for support code.
*/ */
MEMORY { MEMORY {
ksupport : ORIGIN = 0x40400000, LENGTH = 0x4000 ksupport : ORIGIN = 0x40400000, LENGTH = 0x8000
} }
/* On AMP systems, kernel stack is at the end of main RAM, /* On AMP systems, kernel stack is at the end of main RAM,

View File

@ -53,4 +53,3 @@ clean:
liblwip.a: $(LWIPOBJS) liblwip.a: $(LWIPOBJS)
$(AR) clr liblwip.a $(LWIPOBJS) $(AR) clr liblwip.a $(LWIPOBJS)
$(RANLIB) liblwip.a