zephyr/tests/lib/shared_multi_heap/linker_arm64_shared_pool.ld
Anas Nashif 11365fc4f8 tests: move shared_multi_heap to tests/lib
Move shared_multi_heap test under lib alongside all other heap tests.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2023-12-13 17:27:54 -05:00

25 lines
412 B
Plaintext

/*
* Copyright (c) Carlo Caione <ccaione@baylibre.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <zephyr/linker/devicetree_regions.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
MEMORY
{
LINKER_DT_REGIONS()
}
SECTIONS
{
LINKER_DT_SECTIONS()
}
#include <zephyr/arch/arm64/scripts/linker.ld>