mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
components: fix ldgen check errors
This commit is contained in:
parent
b9d288879d
commit
bf341d966c
@ -3,10 +3,11 @@ archive: libapp_trace.a
|
||||
entries:
|
||||
app_trace (noflash)
|
||||
app_trace_util (noflash)
|
||||
SEGGER_SYSVIEW (noflash)
|
||||
SEGGER_RTT_esp32 (noflash)
|
||||
SEGGER_SYSVIEW_Config_FreeRTOS (noflash)
|
||||
SEGGER_SYSVIEW_FreeRTOS (noflash)
|
||||
if SYSVIEW_ENABLE = y:
|
||||
SEGGER_SYSVIEW (noflash)
|
||||
SEGGER_RTT_esp32 (noflash)
|
||||
SEGGER_SYSVIEW_Config_FreeRTOS (noflash)
|
||||
SEGGER_SYSVIEW_FreeRTOS (noflash)
|
||||
|
||||
[mapping:driver]
|
||||
archive: libdriver.a
|
||||
|
@ -2,4 +2,7 @@
|
||||
archive: libfreertos.a
|
||||
entries:
|
||||
* (noflash_text)
|
||||
if FREERTOS_SUPPORT_STATIC_ALLOCATION = y:
|
||||
queue:xQueueGenericCreateStatic (default)
|
||||
|
||||
|
||||
|
@ -2,4 +2,6 @@
|
||||
archive: libheap.a
|
||||
entries:
|
||||
multi_heap (noflash)
|
||||
multi_heap_poisoning (noflash)
|
||||
if HEAP_POISONING_DISABLED = n:
|
||||
multi_heap_poisoning (noflash)
|
||||
|
||||
|
@ -62,7 +62,6 @@ entries:
|
||||
pbuf:pbuf_header_impl (noflash_text)
|
||||
pbuf:pbuf_header (noflash_text)
|
||||
pbuf:pbuf_free (noflash_text)
|
||||
timeouts:sys_timeouts_mbox_fetch (noflash_text)
|
||||
udp:udp_input_local_match (noflash_text)
|
||||
udp:udp_input (noflash_text)
|
||||
udp:udp_send (noflash_text)
|
||||
|
@ -11,5 +11,3 @@
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "soc/rtc_periph.h"
|
||||
|
@ -5,7 +5,6 @@ entries:
|
||||
rtc_clk (noflash)
|
||||
rtc_clk_init (noflash_text)
|
||||
rtc_init (noflash_text)
|
||||
rtc_periph (noflash_text)
|
||||
rtc_pm (noflash_text)
|
||||
rtc_sleep (noflash_text)
|
||||
rtc_time (noflash_text)
|
||||
@ -19,9 +18,8 @@ entries:
|
||||
spi_flash_hal_iram (noflash)
|
||||
ledc_hal_iram (noflash_text)
|
||||
i2c_hal_iram (noflash)
|
||||
spi_flash_hal_gpspi (noflash)
|
||||
lldesc (noflash_text)
|
||||
if CAN_ISR_IN_IRAM = y:
|
||||
can_hal_iram (noflash)
|
||||
else:
|
||||
can_hal_iram (default)
|
||||
can_hal_iram (default)
|
||||
|
@ -1,2 +1,3 @@
|
||||
libc
|
||||
sha256_coredump
|
||||
gcc
|
||||
|
@ -58,7 +58,7 @@ build_esp_idf_tests_make:
|
||||
extends: .build_esp_idf_unit_test_template
|
||||
variables:
|
||||
PYTHON_VER: 3
|
||||
LDGEN_CHECK_MAPPING: 0
|
||||
LDGEN_CHECK_MAPPING: 1
|
||||
script:
|
||||
- export EXTRA_CFLAGS=${PEDANTIC_CFLAGS}
|
||||
- export EXTRA_CXXFLAGS=${PEDANTIC_CXXFLAGS}
|
||||
@ -109,7 +109,7 @@ build_examples_make:
|
||||
- $LOG_PATH
|
||||
expire_in: 4 days
|
||||
variables:
|
||||
LDGEN_CHECK_MAPPING: 0
|
||||
LDGEN_CHECK_MAPPING: 1
|
||||
LOG_PATH: "$CI_PROJECT_DIR/log_examples_make"
|
||||
only:
|
||||
# Here both 'variables' and 'refs' conditions are given. They are combined with "AND" logic.
|
||||
|
Loading…
Reference in New Issue
Block a user