Ignore:
Timestamp:
Feb 21, 2014 7:49:37 AM (10 years ago)
Author:
nanang
Message:

More pjsua2 SWIG Python (re #1519): Separate library dependencies from Python Extension setting 'extra_link_args', so PJ lib dependencies are specified before Python's (otherwise strange crash happens on MinGW).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/swig/python/helper.mak

    r4753 r4756  
    33 
    44ldflags: 
    5         @for token in `echo $(PJ_LDXXLIBS) $(PJ_LDXXFLAGS) $(LDFLAGS)`; do \ 
     5        @for token in `echo $(PJ_LDXXFLAGS) $(LDFLAGS)`; do \ 
    66                echo $$token; \ 
     7        done 
     8 
     9libs: 
     10        @for token in `echo $(PJ_LDXXLIBS) $(LIBS)`; do \ 
     11                echo $$token | grep \\-l | sed 's/-l//'; \ 
    712        done 
    813 
Note: See TracChangeset for help on using the changeset viewer.