View Single Post
Re: LoadLibrary failure for Linux
Old
  (#8)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: LoadLibrary failure for Linux - 21-01-2005

change this one:
PHP Code:
${TARGET}_i386.so: ${OBJ}
    ${
CPP} -fPIC -shared -$@ ${OBJ} -Xlinker -Map -Xlinker ${TARGET}.map -ldl 
to:
PHP Code:
${TARGET}_i386.so: ${OBJ}
    ${
CPP} -fPIC -shared -static -$@ ${OBJ} -Xlinker -Map -Xlinker ${TARGET}.map -ldl
    strip 
-${TARGET}_i386.so 
  
Reply With Quote