mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-17 23:01:53 +08:00
add ct miniframe host support
This commit is contained in:
14
bfd/hosts/miniframe.h
Normal file
14
bfd/hosts/miniframe.h
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#include "hosts/std-host.h"
|
||||||
|
|
||||||
|
#define USE_UTIME
|
||||||
|
|
||||||
|
#define NEED_MKDIR
|
||||||
|
#define NEED_RMDIR
|
||||||
|
|
||||||
|
#ifndef MAXPATHLEN
|
||||||
|
#define MAXPATHLEN 1024
|
||||||
|
#endif /* MAXPATHLEN */
|
||||||
|
|
||||||
|
#define bcmp(b1,b2,len) memcmp(b1,b2,len)
|
||||||
|
#define bcopy(src,dst,len) memcpy(dst,src,len)
|
||||||
|
#define bzero(s,n) memset(s,0,n)
|
Reference in New Issue
Block a user