The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
18 lines
411 B
2 years ago
|
# General-purpose linker script for Metrowerks toolchains.
|
||
|
# This script will link a blank application. Its only purpose
|
||
|
# is to allow the toolchains to run Meson tests. To link an
|
||
|
# actual application, you need to write your own fine-tuned lcf.
|
||
|
|
||
|
MEMORY {
|
||
|
TEST (RWX) : ORIGIN=0, LENGTH=0
|
||
|
}
|
||
|
|
||
|
SECTIONS {
|
||
|
.TEST:{
|
||
|
* (.text)
|
||
|
* (.data)
|
||
|
* (.rodata)
|
||
|
* (.bss)
|
||
|
__startup=.;
|
||
|
} > TEST
|
||
|
}
|