ESP32 Core: Correct tool-related prefix and path

This commit is contained in:
Gregory Nutt
2016-10-13 14:48:29 -06:00
parent 43c46fd34c
commit 04940840b6
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -50,7 +50,7 @@
/* Include architecture-specific IRQ definitions */
#ifdef CONFIG_ARCH_CHIP_LX6
#ifdef CONFIG_ARCH_FAMILY_LX6
# include <arch/lx6/irq.h>
/* Include implementation-specific IRQ definitions (including IRQ numbers) */
+5 -5
View File
@@ -69,8 +69,8 @@ typedef unsigned char _uint8_t;
typedef signed short _int16_t;
typedef unsigned short _uint16_t;
typedef signed int _int32_t;
typedef unsigned int _uint32_t;
typedef signed long _int32_t;
typedef unsigned long _uint32_t;
typedef signed long long _int64_t;
typedef unsigned long long _uint64_t;
@@ -78,12 +78,12 @@ typedef unsigned long long _uint64_t;
/* A pointer is 4 bytes */
typedef signed int _intptr_t;
typedef unsigned int _uintptr_t;
typedef signed long _intptr_t;
typedef unsigned long _uintptr_t;
/* This is the size of the interrupt state save returned by up_irq_save(). */
typedef unsigned int irqstate_t;
typedef unsigned long irqstate_t;
#endif /* __ASSEMBLY__ */
+1 -1
View File
@@ -33,4 +33,4 @@
#
############################################################################
CROSSDEV = xtensa-esp32-
CROSSDEV = xtensa-esp32-elf-
+1 -1
View File
@@ -49,7 +49,7 @@ fi
# This is the path to the location where I installed the Expressif crosstools-NG
# toolchaing
export TOOLCHAIN_BIN="home/patacongo/projects/nuttx/crosstool-NG/builds/xtensa-esp32-elf/bin"
export TOOLCHAIN_BIN="/home/patacongo/projects/nuttx/crosstool-NG/builds/xtensa-esp32-elf/bin"
# Add the path to the toolchain to the PATH variable
export PATH="${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"