From: <ped...@us...> - 2007-06-24 21:49:21
|
Revision: 997 http://svn.sourceforge.net/cegcc/?rev=997&view=rev Author: pedroalves Date: 2007-06-24 14:49:20 -0700 (Sun, 24 Jun 2007) Log Message: ----------- * mingwex/Makefile.in (WINCE_OBJS): Add chsize.o, findfile.o, bsearch.o, access.o, mkdir.o and rmdir.o. (LIBOBJS): Also add $(POSIX_OBJS) for wince. Modified Paths: -------------- trunk/cegcc/src/mingw/ChangeLog.mingw32ce trunk/cegcc/src/mingw/mingwex/Makefile.in Modified: trunk/cegcc/src/mingw/ChangeLog.mingw32ce =================================================================== --- trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2007-06-24 21:45:45 UTC (rev 996) +++ trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2007-06-24 21:49:20 UTC (rev 997) @@ -1,5 +1,11 @@ 2007-06-24 Pedro Alves <ped...@po...> + * mingwex/Makefile.in (WINCE_OBJS): Add chsize.o, findfile.o, + bsearch.o, access.o, mkdir.o and rmdir.o. + (LIBOBJS): Also add $(POSIX_OBJS) for wince. + +2007-06-24 Pedro Alves <ped...@po...> + * winmain_ce.c (_argc, _argv): Rename to ... (__argc, __argv): ... this. (main): Declare. Modified: trunk/cegcc/src/mingw/mingwex/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/mingwex/Makefile.in 2007-06-24 21:45:45 UTC (rev 996) +++ trunk/cegcc/src/mingw/mingwex/Makefile.in 2007-06-24 21:49:20 UTC (rev 997) @@ -217,7 +217,7 @@ close.o isalnum.o isalpha.o iscntrl.o isgraph.o islower.o isprint.o \ ispunct.o isspace.o isupper.o isxdigit.o _tolower.o _toupper.o \ mb_cur_max.o rename.o stat.o chmod.o utime.o futime.o timeutil.o \ - ctime.o + ctime.o chsize.o findfile.o bsearch.o access.o mkdir.o rmdir.o MATHCE_OBJS = \ e_acosf.o e_acosh.o e_acoshf.o e_asinf.o e_atan2f.o e_atanh.o e_coshf.o \ e_expf.o e_gamma_r.o e_gammaf_r.o e_lgamma_r.o e_lgammaf_r.o e_log10f.o \ @@ -241,7 +241,8 @@ MATHCE_FLAGS= ifneq (,$(findstring wince,$(target_alias))) -LIB_OBJS = $(WINCE_OBJS) $(MATHCE_OBJS) $(Q8_OBJS) $(STDIO_OBJS_CE) +LIB_OBJS = $(WINCE_OBJS) $(MATHCE_OBJS) $(Q8_OBJS) $(STDIO_OBJS_CE) \ + $(POSIX_OBJS) MATHCE_FLAGS=-D_IEEE_LIBM MATHDIR=mathce else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |