| View previous topic :: View next topic |
| Author |
Message |
TyRaNiD
Joined: 18 Jan 2004 Posts: 918
|
Posted: Tue Jan 17, 2006 7:16 am Post subject: New PSPSDK Tag (perhaps 22/01/06) |
|
|
Well it has been almost 6months(!) since the last official release of PSPSDK so this is a call to all developers that I am going to tag off a copy probably this coming Sunday to serve as the next official release therefore what if anything do we feel we need in there before we do so?
Only things I can think of is
1) Quick cleanup of pspsdk libc (yah yah) to ensure it is reasonably compatible with its newlib friend (it is still smaller than newlib it seems).
2) Replace pspgum_vfpu.c with native assembly code instead of the macros (think this is being worked on by chip).
3) Ensure any doxygen comments are up to date (if at all possible).
4) More samples?
5) Any obvious outstanding bugs?
Anymore? |
|
| Back to top |
|
 |
danzel
Joined: 04 Nov 2005 Posts: 182
|
Posted: Tue Jan 17, 2006 9:46 am Post subject: |
|
|
strncat is broken in the pspsdk libc:
| Code: | --- pspsdk_copy/src/libc/string.c 2005-12-23 10:05:41.000000000 +1300
+++ pspsdk/src/libc/string.c 2005-12-23 10:18:27.000000000 +1300
@@ -79,6 +79,7 @@ char *strncat(char *s, const char *appen
while((*append) && (count > 0))
{
*s++ = *append++;
+ count--;
}
*s = 0; |
Fixes it. |
|
| Back to top |
|
 |
chp
Joined: 23 Jun 2004 Posts: 313
|
Posted: Tue Jan 17, 2006 9:57 am Post subject: |
|
|
GUM has now been rewritten to use proper VFPU mnemonics instead of the macros. _________________ GE Dominator |
|
| Back to top |
|
 |
jimparis
Joined: 10 Jun 2005 Posts: 1179 Location: Boston
|
Posted: Tue Jan 17, 2006 11:25 am Post subject: |
|
|
| danzel wrote: | | strncat is broken in the pspsdk libc: | Fixed, thanks. |
|
| Back to top |
|
 |
|