Include library (`-l') files at the beginning, rather than at the end.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@694 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
130df734cb
commit
0203a7da5d
1 changed files with 6 additions and 4 deletions
|
|
@ -387,17 +387,19 @@ int SWIG_main(int argc, char *argv[], Language *l) {
|
|||
{
|
||||
DOH *cpps;
|
||||
int i;
|
||||
DOH *fs = NewString("");
|
||||
DOH *ds = Swig_include(input_file);
|
||||
if (!ds) {
|
||||
Printf(stderr,"Unable to find '%s'\n", input_file);
|
||||
SWIG_exit(1);
|
||||
}
|
||||
Seek(ds,0,SEEK_END);
|
||||
for (i = 0; i < Len(libfiles); i++) {
|
||||
Printf(ds,"\n%%include \"%s\"\n", Getitem(libfiles,i));
|
||||
Printf(fs,"\n%%include \"%s\"\n", Getitem(libfiles,i));
|
||||
}
|
||||
Seek(ds,0,SEEK_SET);
|
||||
cpps = Preprocessor_parse(ds);
|
||||
Append(fs, ds);
|
||||
Delete(ds);
|
||||
Seek(fs,0,SEEK_SET);
|
||||
cpps = Preprocessor_parse(fs);
|
||||
if (cpp_only) {
|
||||
Printf(stdout,"%s", cpps);
|
||||
while (freeze);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue