Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1060 → Rev 1061

/shark/trunk/change_log.txt
1,5 → 1,11
S.Ha.R.K. Change Log
 
*** Version 1.5.2.1
26/10/2006
 
- fixed a little bug to the library for serial port which made unusable the port
- added clearer comments to config.mk files to make easier the fixes for compiling with older gcc versions
 
*** Version 1.5.2
20/09/2006
 
/shark/trunk/config/config.mk
59,8 → 59,11
CFG_VIDEO_OPT += -DCONFIG_FB_VGA16
endif
 
# for managing gcc4 warnings, added -Wno-attributes -Wno-pointer-sign
# this options are for newer gcc4 compilers
C_WARN = -Wimplicit-function-declaration -Wno-attributes -Wno-pointer-sign -Wall
# in case of problems with older gcc versions, please
# comment the previous line and uncomment the following line
# C_WARN = -Wimplicit-function-declaration -Wall
C_FLAGS = -O -fno-builtin -nostdinc -minline-all-stringops
C_INC = $(INCL) $(OTHERINCL) -I$(OSLIB)
C_MAC = $(CFG_OPT)
/shark/trunk/oslib/config.mk
40,7 → 40,11
CFG_OPT += -D__OLD_TRACER__
endif
 
# this options are for newer gcc4 compilers
C_OPT = -Wall -O -fno-builtin -nostdinc -Wno-attributes -Wno-pointer-sign -minline-all-stringops $(CFG_OPT) -DMAIN=__kernel_init__ -I$(INCL)
# in case of problems with older gcc versions, please
# comment the previous line and uncomment the following line
# C_OPT = -Wall -O -fno-builtin -nostdinc -minline-all-stringops $(CFG_OPT) -DMAIN=__kernel_init__ -I$(INCL)
ASM_OPT = -x assembler-with-cpp $(CFG_OPT) -I$(INCL)
LINK_OPT = -Bstatic -Ttext $(MEM_START) -s -nostartfiles -nostdlib -L$(LIB_PATH)