Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 156596
Collapse All | Expand All

(-)cpptasks-1.0b4.orig/src/net/sf/antcontrib/cpptasks/gcc/GccLinker.java (-1 / +1 lines)
Lines 35-41 Link Here
35
    private static String[] linkerOptions = new String[]{"-bundle",
35
    private static String[] linkerOptions = new String[]{"-bundle",
36
            "-dynamiclib", "-nostartfiles", "-nostdlib", "-prebind", "-s",
36
            "-dynamiclib", "-nostartfiles", "-nostdlib", "-prebind", "-s",
37
            "-static", "-shared", "-symbolic", "-Xlinker",
37
            "-static", "-shared", "-symbolic", "-Xlinker",
38
            "--export-all-symbols", "-static-libgcc",};
38
            "--export-all-symbols", "-static-libgcc", "-pg", };
39
    private static final GccLinker dllLinker = new GccLinker("gcc", objFiles,
39
    private static final GccLinker dllLinker = new GccLinker("gcc", objFiles,
40
            discardFiles, "lib", ".so", false, new GccLinker("gcc", objFiles,
40
            discardFiles, "lib", ".so", false, new GccLinker("gcc", objFiles,
41
                    discardFiles, "lib", ".so", true, null));
41
                    discardFiles, "lib", ".so", true, null));
(-)cpptasks-1.0b4.orig/src/net/sf/antcontrib/cpptasks/gcc/GppLinker.java (-1 / +1 lines)
Lines 41-47 Link Here
41
            ".lib", ".dll", ".so", ".sl"};
41
            ".lib", ".dll", ".so", ".sl"};
42
    private static String[] linkerOptions = new String[]{"-bundle", "-dylib",
42
    private static String[] linkerOptions = new String[]{"-bundle", "-dylib",
43
            "-dynamic", "-dynamiclib", "-nostartfiles", "-nostdlib",
43
            "-dynamic", "-dynamiclib", "-nostartfiles", "-nostdlib",
44
            "-prebind", "-s", "-static", "-shared", "-symbolic", "-Xlinker"};
44
            "-prebind", "-s", "-static", "-shared", "-symbolic", "-Xlinker", "-pg" };
45
    private static final GppLinker instance = new GppLinker("gcc", objFiles,
45
    private static final GppLinker instance = new GppLinker("gcc", objFiles,
46
            discardFiles, "", "", false, null);
46
            discardFiles, "", "", false, null);
47
    private static final GppLinker machDllLinker = new GppLinker("gcc",
47
    private static final GppLinker machDllLinker = new GppLinker("gcc",

Return to bug 156596