Added support for current version of "emxomf".
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32020 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -405,6 +405,8 @@ for file in $inputFiles ; do
|
|||||||
*!)
|
*!)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
# we do not want to export weak symbols in general, so we filter
|
||||||
|
# those out using grep.
|
||||||
doCommand "emxexp -u $file | grep -v weak$ >> $tmpdefFile || true"
|
doCommand "emxexp -u $file | grep -v weak$ >> $tmpdefFile || true"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@@ -466,7 +468,17 @@ if [ $flag_USE_LXLITE -ne 0 ]; then
|
|||||||
fi
|
fi
|
||||||
doCommand "lxlite -cs -t: -mrn -mln $add_flags $dllFile"
|
doCommand "lxlite -cs -t: -mrn -mln $add_flags $dllFile"
|
||||||
fi
|
fi
|
||||||
doCommand "emxomf -s -l $arcFile"
|
|
||||||
|
#New version of emxomf do no longer want the "-l" flag
|
||||||
|
case `emxomf` in
|
||||||
|
emxomf\ 0.6*)
|
||||||
|
omflibflag=""
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
omflibflag=" -l"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
doCommand "emxomf -s$omflibflag $arcFile"
|
||||||
|
|
||||||
# Successful exit.
|
# Successful exit.
|
||||||
CleanUp 1
|
CleanUp 1
|
||||||
|
Reference in New Issue
Block a user