Index: tools/gold/gold-plugin.cpp =================================================================== --- tools/gold/gold-plugin.cpp +++ tools/gold/gold-plugin.cpp @@ -834,9 +834,10 @@ // FIXME: Check the gold version or add a new option to enable them. Conf.Options.RelaxELFRelocations = false; - // Enable function/data sections by default. - Conf.Options.FunctionSections = true; - Conf.Options.DataSections = true; + if (FunctionSections.getNumOccurrences() == 0) + Conf.Options.FunctionSections = true; + if (DataSections.getNumOccurrences() == 0) + Conf.Options.DataSections = true; Conf.MAttrs = MAttrs; Conf.RelocModel = RelocationModel;