build: add helper/types.h to config.h
this header is used in numerous files and adding to config.h simplifies its use globally. Change-Id: Id724a9950b90504721233022c7fb5768e9bc5548 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/649 Tested-by: jenkins Reviewed-by: Xiaofan <xiaofanc@gmail.com>__archive__
parent
a34b38d621
commit
7bfcc10839
|
@ -11,6 +11,7 @@ AM_MAINTAINER_MODE
|
||||||
AM_CONFIG_HEADER([config.h])
|
AM_CONFIG_HEADER([config.h])
|
||||||
AH_BOTTOM([
|
AH_BOTTOM([
|
||||||
#include <helper/system.h>
|
#include <helper/system.h>
|
||||||
|
#include <helper/types.h>
|
||||||
#include <helper/replacements.h>
|
#include <helper/replacements.h>
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#ifndef BINARYBUFFER_H
|
#ifndef BINARYBUFFER_H
|
||||||
#define BINARYBUFFER_H
|
#define BINARYBUFFER_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
/** @file
|
/** @file
|
||||||
* Support functions to access arbitrary bits in a byte array
|
* Support functions to access arbitrary bits in a byte array
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#ifndef COMMAND_H
|
#ifndef COMMAND_H
|
||||||
#define COMMAND_H
|
#define COMMAND_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
#include <jim.h>
|
#include <jim.h>
|
||||||
#include <jim-nvp.h>
|
#include <jim-nvp.h>
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,6 @@
|
||||||
#ifndef FILEIO_H
|
#ifndef FILEIO_H
|
||||||
#define FILEIO_H
|
#define FILEIO_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
#define FILEIO_MAX_ERROR_STRING (128)
|
#define FILEIO_MAX_ERROR_STRING (128)
|
||||||
|
|
||||||
enum fileio_type {
|
enum fileio_type {
|
||||||
|
|
|
@ -139,8 +139,6 @@ static inline unsigned usleep(unsigned int usecs)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
/* Windows does not declare sockaddr_un */
|
/* Windows does not declare sockaddr_un */
|
||||||
#define UNIX_PATH_LEN 108
|
#define UNIX_PATH_LEN 108
|
||||||
struct sockaddr_un {
|
struct sockaddr_un {
|
||||||
|
@ -230,8 +228,6 @@ static inline int socket_select(int max_fd,
|
||||||
|
|
||||||
#ifndef HAVE_ELF_H
|
#ifndef HAVE_ELF_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
typedef uint32_t Elf32_Addr;
|
typedef uint32_t Elf32_Addr;
|
||||||
typedef uint16_t Elf32_Half;
|
typedef uint16_t Elf32_Half;
|
||||||
typedef uint32_t Elf32_Off;
|
typedef uint32_t Elf32_Off;
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
#ifndef JTAG_LIBUSB_COMMON_H
|
#ifndef JTAG_LIBUSB_COMMON_H
|
||||||
#define JTAG_LIBUSB_COMMON_H
|
#define JTAG_LIBUSB_COMMON_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
|
|
||||||
#define jtag_libusb_device usb_device
|
#define jtag_libusb_device usb_device
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
#ifndef JTAG_LIBUSB_COMMON_H
|
#ifndef JTAG_LIBUSB_COMMON_H
|
||||||
#define JTAG_LIBUSB_COMMON_H
|
#define JTAG_LIBUSB_COMMON_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
#include <libusb-1.0/libusb.h>
|
#include <libusb-1.0/libusb.h>
|
||||||
|
|
||||||
#define jtag_libusb_device libusb_device
|
#define jtag_libusb_device libusb_device
|
||||||
|
|
|
@ -18,8 +18,6 @@
|
||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct rlink_speed_table {
|
struct rlink_speed_table {
|
||||||
uint8_t const *dtc;
|
uint8_t const *dtc;
|
||||||
uint16_t dtc_size;
|
uint16_t dtc_size;
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
#include <jtag/interface.h>
|
#include <jtag/interface.h>
|
||||||
#include <jtag/commands.h>
|
#include <jtag/commands.h>
|
||||||
#include <target/image.h>
|
#include <target/image.h>
|
||||||
#include <helper/types.h>
|
|
||||||
#include "usb_common.h"
|
#include "usb_common.h"
|
||||||
#include "OpenULINK/include/msgtypes.h"
|
#include "OpenULINK/include/msgtypes.h"
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
#ifndef JTAG_USB_COMMON_H
|
#ifndef JTAG_USB_COMMON_H
|
||||||
#define JTAG_USB_COMMON_H
|
#define JTAG_USB_COMMON_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
|
|
||||||
int jtag_usb_open(const uint16_t vids[], const uint16_t pids[],
|
int jtag_usb_open(const uint16_t vids[], const uint16_t pids[],
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#ifndef XILINX_BIT_H
|
#ifndef XILINX_BIT_H
|
||||||
#define XILINX_BIT_H
|
#define XILINX_BIT_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct xilinx_bit_file {
|
struct xilinx_bit_file {
|
||||||
uint8_t unknown_header[13];
|
uint8_t unknown_header[13];
|
||||||
uint8_t *source_file;
|
uint8_t *source_file;
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
#define RTOS_H
|
#define RTOS_H
|
||||||
|
|
||||||
#include "server/server.h"
|
#include "server/server.h"
|
||||||
#include <helper/types.h>
|
|
||||||
#include <jim-nvp.h>
|
#include <jim-nvp.h>
|
||||||
|
|
||||||
typedef int64_t threadid_t;
|
typedef int64_t threadid_t;
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#ifndef ARM_DISASSEMBLER_H
|
#ifndef ARM_DISASSEMBLER_H
|
||||||
#define ARM_DISASSEMBLER_H
|
#define ARM_DISASSEMBLER_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
enum arm_instruction_type {
|
enum arm_instruction_type {
|
||||||
ARM_UNKNOWN_INSTUCTION,
|
ARM_UNKNOWN_INSTUCTION,
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#ifndef ARM_SIMULATOR_H
|
#ifndef ARM_SIMULATOR_H
|
||||||
#define ARM_SIMULATOR_H
|
#define ARM_SIMULATOR_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct target;
|
struct target;
|
||||||
|
|
||||||
struct arm_sim_interface {
|
struct arm_sim_interface {
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#ifndef ARMV4_5_CACHE_H
|
#ifndef ARMV4_5_CACHE_H
|
||||||
#define ARMV4_5_CACHE_H
|
#define ARMV4_5_CACHE_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct command_context;
|
struct command_context;
|
||||||
|
|
||||||
struct armv4_5_cachesize {
|
struct armv4_5_cachesize {
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
#ifndef AVR32_AP7K
|
#ifndef AVR32_AP7K
|
||||||
#define AVR32_AP7K
|
#define AVR32_AP7K
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct target;
|
struct target;
|
||||||
|
|
||||||
#define AP7k_COMMON_MAGIC 0x4150374b
|
#define AP7k_COMMON_MAGIC 0x4150374b
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "target.h"
|
#include "target.h"
|
||||||
#include "helper/types.h"
|
|
||||||
#include "jtag/jtag.h"
|
#include "jtag/jtag.h"
|
||||||
#include "avr32_jtag.h"
|
#include "avr32_jtag.h"
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#ifndef BREAKPOINTS_H
|
#ifndef BREAKPOINTS_H
|
||||||
#define BREAKPOINTS_H
|
#define BREAKPOINTS_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct target;
|
struct target;
|
||||||
|
|
||||||
enum breakpoint_type {
|
enum breakpoint_type {
|
||||||
|
|
|
@ -26,8 +26,6 @@
|
||||||
#ifndef MIPS_M4K_H
|
#ifndef MIPS_M4K_H
|
||||||
#define MIPS_M4K_H
|
#define MIPS_M4K_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct target;
|
struct target;
|
||||||
|
|
||||||
#define MIPSM4K_COMMON_MAGIC 0xB321B321
|
#define MIPSM4K_COMMON_MAGIC 0xB321B321
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
#include "register.h"
|
#include "register.h"
|
||||||
#include <helper/log.h>
|
#include <helper/log.h>
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "server/server.h"
|
#include "server/server.h"
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
#include "target/target.h"
|
#include "target/target.h"
|
||||||
|
|
||||||
|
|
|
@ -33,8 +33,6 @@
|
||||||
#ifndef TARGET_H
|
#ifndef TARGET_H
|
||||||
#define TARGET_H
|
#define TARGET_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct reg;
|
struct reg;
|
||||||
struct trace;
|
struct trace;
|
||||||
struct command_context;
|
struct command_context;
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
#ifndef TARGET_TYPE_H
|
#ifndef TARGET_TYPE_H
|
||||||
#define TARGET_TYPE_H
|
#define TARGET_TYPE_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
#include <jim-nvp.h>
|
#include <jim-nvp.h>
|
||||||
|
|
||||||
struct target;
|
struct target;
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#ifndef TRACE_H
|
#ifndef TRACE_H
|
||||||
#define TRACE_H
|
#define TRACE_H
|
||||||
|
|
||||||
#include <helper/types.h>
|
|
||||||
|
|
||||||
struct target;
|
struct target;
|
||||||
struct command_context;
|
struct command_context;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue