Home | History | Annotate | Download | only in Hexagon

Lines Matching full:pconfig

18                                   LinkerConfig& pConfig) {
19 if (!MCLDEmulateELF(pScript, pConfig))
23 pConfig.targets().setEndian(TargetOptions::Little);
24 pConfig.targets().setBitClass(32);
27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
32 pConfig.attribute().predefined().unsetWholeArchive();
33 pConfig.attribute().predefined().unsetAsNeeded();
34 pConfig.attribute().predefined().setDynamic();
41 bool emulateHexagonLD(LinkerScript& pScript, LinkerConfig& pConfig) {
42 if (pConfig.targets().triple().isOSDarwin()) {
46 if (pConfig.targets().triple().isOSWindows()) {
51 return MCLDEmulateHexagonELF(pScript, pConfig);