Skip to content
Snippets Groups Projects
Commit 0a7fb632 authored by patacongo's avatar patacongo
Browse files

fix CC case-ness

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1438 42af7a65-404d-4744-a932-0658087f49c3
parent 09de1a3a
No related branches found
No related tags found
No related merge requests found
......@@ -117,11 +117,11 @@ LINKCMDTEMPLATE = $(TOPDIR)/configs/ez80f910200kitg/ostest/ostest.linkcmd
# Tool names/pathes
CROSSDEV =
CC = $(ZDSBINDIR)/eZ80cc.exe
CC = $(ZDSBINDIR)/ez80cc.exe
CPP = gcc -E
LD = $(ZDSBINDIR)/eZ80link.exe
AS = $(ZDSBINDIR)/eZ80asm.exe
AR = $(ZDSBINDIR)/eZ80lib.exe
LD = $(ZDSBINDIR)/ez80link.exe
AS = $(ZDSBINDIR)/ez80asm.exe
AR = $(ZDSBINDIR)/ez80lib.exe
# File extensions
......
......@@ -117,11 +117,11 @@ LINKCMDTEMPLATE = $(TOPDIR)/configs/ez80f910200zco/ostest/ostest.linkcmd
# Tool names/pathes
CROSSDEV =
CC = $(ZDSBINDIR)/eZ80cc.exe
CC = $(ZDSBINDIR)/ez80cc.exe
CPP = gcc -E
LD = $(ZDSBINDIR)/eZ80link.exe
AS = $(ZDSBINDIR)/eZ80asm.exe
AR = $(ZDSBINDIR)/eZ80lib.exe
LD = $(ZDSBINDIR)/ez80link.exe
AS = $(ZDSBINDIR)/ez80asm.exe
AR = $(ZDSBINDIR)/ez80lib.exe
# File extensions
......
......@@ -68,7 +68,7 @@ fi
# sdcc -I<dir2> -I<dir2> -I<dir3> ...
# $(ZDSBINDIR)/ez8cc.exe -usrinc:'<dir1>:<dir2:<dir3>:...`
# $(ZDSBINDIR)/zneocc.exe -usrinc:'<dir1>:<dir2:<dir3>:...`
# $(ZDSBINDIR)/eZ80cc.exe -usrinc:'<dir1>:<dir2:<dir3>:...`
# $(ZDSBINDIR)/ez80cc.exe -usrinc:'<dir1>:<dir2:<dir3>:...`
#
# Furthermore, just to make matters more difficult, with Windows based
# toolchains, we have to use the full windows-style paths to the header
......@@ -84,7 +84,7 @@ else
fi
exefile=`basename "$compiler"`
if [ "X$exefile" = "Xez8cc.exe" -o "X$exefile" = "Xzneocc.exe" -o "X$exefile" = "XeZ80cc.exe" ]; then
if [ "X$exefile" = "Xez8cc.exe" -o "X$exefile" = "Xzneocc.exe" -o "X$exefile" = "Xez80cc.exe" ]; then
fmt=userinc
else
fmt=std
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment