You've already forked gitified_old_clb_svn
14 lines
296 B
Plaintext
14 lines
296 B
Plaintext
/*
|
|
* This is used to generate wrc.o from all objects. We need to use
|
|
* --gc-sections because sockitowm include a lot of stuff we don't run,
|
|
* but at the same time we need to preserve all commands. So use KEEP()
|
|
*/
|
|
SECTIONS
|
|
{
|
|
.cmd : {
|
|
__cmd_begin = .;
|
|
KEEP(*(.cmd))
|
|
__cmd_end = .;
|
|
}
|
|
}
|