diff options
author | Keith Packard <keithp@keithp.com> | 2009-03-15 18:11:20 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-03-15 18:11:20 -0700 |
commit | 164b4e4749ad64ebbe26e84fd7b4fa1aa733dbe4 (patch) | |
tree | 6585596d2fd99522c15420b95807b54a7b6590f7 | |
parent | 04a316133af93b79bfbebb91f05eec1015ec2abc (diff) |
sdcc gets the lib path correct based on the model
-rw-r--r-- | target/blink/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/blink/Makefile b/target/blink/Makefile index 4c9b4102..d0112e62 100644 --- a/target/blink/Makefile +++ b/target/blink/Makefile @@ -7,7 +7,7 @@ CFLAGS=--model-large $(DEBUG) --less-pedantic \ --no-peep --int-long-reent --float-reent \ --data-loc 0x30 -LDFLAGS=-L/usr/share/sdcc/lib/large --out-fmt-ihx +LDFLAGS=--out-fmt-ihx LDFLAGS_RAM=$(LDFLAGS) --code-loc 0xf000 --xram-loc 0xf400 --xram-size 1024 LDFLAGS_FLASH=$(LDFLAGS) --code-loc 0x0000 --xram-loc 0xf000 --xram-size 1024 |