/*
To completely override the placement of all output sections you can define sectionsExclude to match any string.
// Note: the '.' below represents _any_ character, not just "."
Program.sectionsExclude = ".*";
To override output sections that begin with '.' you must specify the literal character '.' and use the '^' character to match the beginning of the string.
// the sequence '^\.' matches just "." at the start of the name
Program.sectionsExclude = "^\.";
To override a specific sections you should be careful to supply a regular expression that matches the entire section name. You can use '$' to match the end of the name.
// match only ".const" or ".text"
Program.sectionsExclude = "^\.const$|^\.text$";
*/
Program.sectionsExclude = ".*";