mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
- added support for AT91SAM7A3 flash (patch from andre renaud, thanks)
- fix trunk build for mac os x (patch from Lauri Leukkunen, thanks) - added check for host endianness, defines WORDS_BIGENDIAN on a big-endian host (e.g. mac os-x) - fixed bug where endianness of memory accesses could be swapped on BE hosts - added space for zero termination of ftd2xx_layout string (from Magnus Ludin, tahnks) git-svn-id: svn://svn.berlios.de/openocd/trunk@73 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -17,6 +17,8 @@
|
||||
* Free Software Foundation, Inc., *
|
||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||
***************************************************************************/
|
||||
#include "config.h"
|
||||
|
||||
#include "gdb_server.h"
|
||||
|
||||
#include "server.h"
|
||||
@@ -31,7 +33,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
// -ino: 060521-1116
|
||||
#ifdef __FreeBSD__
|
||||
#ifndef HAVE_STRNDUP
|
||||
#include <stdio.h>
|
||||
char * strndup(char * str, int n) {
|
||||
unsigned char * tmp = malloc((size_t)n+1);
|
||||
@@ -40,6 +42,7 @@ char * strndup(char * str, int n) {
|
||||
return tmp;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
#define _DEBUG_GDB_IO_
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user