* pe-dll.c (make_one): fix a typo in the __imp_ name decoration
for dll import libraries
This commit is contained in:
parent
1a1404f11e
commit
5b4cf3f497
|
@ -1,3 +1,8 @@
|
||||||
|
2000-07-12 Charles Wilson <cwilson@ece.gatech.edu>
|
||||||
|
|
||||||
|
* pe-dll.c (make_one): fix a typo in the __imp_ name decoration
|
||||||
|
for dll import libraries
|
||||||
|
|
||||||
2000-07-12 Mark Elbrecht <snowball3@bigfoot.com>
|
2000-07-12 Mark Elbrecht <snowball3@bigfoot.com>
|
||||||
|
|
||||||
* scripttempl/i386go32.sc: Support the g++ attribute init_priority in
|
* scripttempl/i386go32.sc: Support the g++ attribute init_priority in
|
||||||
|
|
|
@ -1444,7 +1444,7 @@ make_one (exp, parent)
|
||||||
if (! exp->flag_data)
|
if (! exp->flag_data)
|
||||||
quick_symbol (abfd, U(""), exp->internal_name, "", tx, BSF_GLOBAL, 0);
|
quick_symbol (abfd, U(""), exp->internal_name, "", tx, BSF_GLOBAL, 0);
|
||||||
quick_symbol (abfd, U("_head_"), dll_symname, "", UNDSEC, BSF_GLOBAL, 0);
|
quick_symbol (abfd, U("_head_"), dll_symname, "", UNDSEC, BSF_GLOBAL, 0);
|
||||||
quick_symbol (abfd, U("__imp_"), exp->internal_name, "", id5, BSF_GLOBAL, 0);
|
quick_symbol (abfd, U("_imp__"), exp->internal_name, "", id5, BSF_GLOBAL, 0);
|
||||||
if (pe_dll_compat_implib)
|
if (pe_dll_compat_implib)
|
||||||
quick_symbol (abfd, U("__imp_"), exp->internal_name, "",
|
quick_symbol (abfd, U("__imp_"), exp->internal_name, "",
|
||||||
id5, BSF_GLOBAL, 0);
|
id5, BSF_GLOBAL, 0);
|
||||||
|
|
Loading…
Reference in New Issue