From: <ped...@us...> - 2006-08-20 21:07:17
|
Revision: 316 Author: pedroalves Date: 2006-08-20 14:06:30 -0700 (Sun, 20 Aug 2006) ViewCVS: http://svn.sourceforge.net/cegcc/?rev=316&view=rev Log Message: ----------- Make pput work in bash too. Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2006-09-01 20:19:18
|
Revision: 515 http://svn.sourceforge.net/cegcc/?rev=515&view=rev Author: dannybackx Date: 2006-09-01 13:07:53 -0700 (Fri, 01 Sep 2006) Log Message: ----------- Also install the stripped version of the DLL. Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2006-09-03 06:28:00
|
Revision: 520 http://svn.sourceforge.net/cegcc/?rev=520&view=rev Author: dannybackx Date: 2006-09-02 23:27:46 -0700 (Sat, 02 Sep 2006) Log Message: ----------- Install the DLL in a device subdirectory Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2006-09-03 23:33:20
|
Revision: 521 http://svn.sourceforge.net/cegcc/?rev=521&view=rev Author: pedroalves Date: 2006-09-03 16:33:07 -0700 (Sun, 03 Sep 2006) Log Message: ----------- Better to keep the unstripped dll on bin, and the stripped filename unchanged. Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2006-09-04 00:14:31
|
Revision: 523 http://svn.sourceforge.net/cegcc/?rev=523&view=rev Author: pedroalves Date: 2006-09-03 17:14:21 -0700 (Sun, 03 Sep 2006) Log Message: ----------- Just noticed the bug report on the mailing list. This should fix it too. Sorry Danny. In the process, move some hardcoded stuff into vars. Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2006-09-05 22:49:56
|
Revision: 554 http://svn.sourceforge.net/cegcc/?rev=554&view=rev Author: dannybackx Date: 2006-09-05 15:49:51 -0700 (Tue, 05 Sep 2006) Log Message: ----------- Add some magic so this will build outside the source directory if the right shell variables are present (they are when run from scripts/linux/..). The goal is not to pollute the source directories. Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2006-12-30 11:30:11
|
Revision: 855 http://svn.sourceforge.net/cegcc/?rev=855&view=rev Author: dannybackx Date: 2006-12-30 03:30:07 -0800 (Sat, 30 Dec 2006) Log Message: ----------- Part of the profiling commit: avoid a name clash now that we build gcc without inhibit_libc. Modified Paths: -------------- trunk/cegcc/src/cegcc/cegccdll/Makefile Modified: trunk/cegcc/src/cegcc/cegccdll/Makefile =================================================================== --- trunk/cegcc/src/cegcc/cegccdll/Makefile 2006-12-30 11:29:13 UTC (rev 854) +++ trunk/cegcc/src/cegcc/cegccdll/Makefile 2006-12-30 11:30:07 UTC (rev 855) @@ -96,6 +96,7 @@ rm -f ${MY_DIR}/$(IMPLIB) rm -f ${MY_DIR}/$(IMPLIB).tmp $(AR) q ${MY_DIR}/$(IMPLIB) ${MY_DIR}/_tmp_static/*.o + rm -f ${MY_DIR}/_tmp/_eprintf.o $(CC) -o $@ $(LDFLAGS) -shared -nostdlib \ -Wl,--whole-archive ${MY_DIR}/_tmp/*.o ${LIB_PATH}/dllcrt1.o \ -Wl,--no-whole-archive -lcegcc -lcoredll -liphlpapi \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |