bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug ld/6022] local wildcard breaks versioning scripts for -rdynamic exe


From: madcoder at debian dot org
Subject: [Bug ld/6022] local wildcard breaks versioning scripts for -rdynamic executables
Date: 2 Apr 2008 10:28:11 -0000

------- Additional Comments From madcoder at debian dot org  2008-04-02 10:28 
-------
Further fiddling with the issue shows that local: * works properly if you put 
it in the _last_ version section of the version script. E.g. a script like:

-----8<----
VER_1 {
    global:
        sym_ver1;
};
VER_2 {
    global:
        sym_ver1;
    local:
        *;
} VER_1;
----->8----

or even:

-----8<----
VER_1 {
    global:
        sym_ver1;
};
VER_2 {
    global:
        sym_ver1;
} VER_1;
PRIVATE {
    local:
        *;
};
----->8----

product the expected results. If you put PRIVATE { local: *; }; first, it 
breaks.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6022

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]