mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[SPEC2DEF]
- In GCC builds, actually import by ordinal if -ordinal is specified. Found by Robert. svn path=/trunk/; revision=63873
This commit is contained in:
parent
8094b5e493
commit
f6304a30dc
1 changed files with 4 additions and 0 deletions
|
@ -664,6 +664,10 @@ ParseFile(char* pcStart, FILE *fileDest, PFNOUTLINE OutputLine)
|
|||
else if (CompareToken(pc, "-ordinal"))
|
||||
{
|
||||
exp.uFlags |= FL_ORDINAL;
|
||||
/* GCC doesn't automatically import by ordinal if an ordinal
|
||||
* is found in the def file. Force it. */
|
||||
if (gbImportLib && !gbMSComp)
|
||||
exp.uFlags |= FL_NONAME;
|
||||
}
|
||||
else if (CompareToken(pc, "-stub"))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue