mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 23:07:17 +00:00
* Fix w32dist (copy missing libs, create dirs, ..)
* Restore farm targets
This commit is contained in:
parent
31d7b2bb3d
commit
ef548bf55f
@ -37,13 +37,20 @@ w32:
|
|||||||
cd python && ${MAKE} w32
|
cd python && ${MAKE} w32
|
||||||
|
|
||||||
DSTNAME=radare2-bindings-w32-$(VERSION)
|
DSTNAME=radare2-bindings-w32-$(VERSION)
|
||||||
DST=../$(DSTNAME)/Python27/Lib/r2
|
DST=../$(DSTNAME)/Python27/Lib/site-packages/r2
|
||||||
|
SJLJ=/usr/i486-mingw32/bin/libgcc_s_sjlj-1.dll
|
||||||
|
STDC=/usr/i486-mingw32/bin/libstdc++-6.dll
|
||||||
|
|
||||||
w32dist:
|
w32dist:
|
||||||
rm -rf ${DST}/*
|
rm -rf ../${DSTNAME}
|
||||||
mkdir -p ${DST}
|
mkdir -p ${DST}
|
||||||
cp -f python/*.dll ${DST}
|
cp -f python/*.dll ${DST}
|
||||||
cp -f python/r_*.py ${DST}
|
cp -f python/r_*.py ${DST}
|
||||||
|
:> ${DST}/__init__.py
|
||||||
|
cd ${DST} ; for a in *.dll ; do mv $$a `echo $$a | sed -e s,dll,pyd,g` ; done
|
||||||
|
# Copy missing libraries
|
||||||
|
-cp -f ${SJLJ} ${DST}
|
||||||
|
-cp -f ${STDC} ${DST}
|
||||||
cd .. ; zip -r $(DSTNAME).zip $(DSTNAME)
|
cd .. ; zip -r $(DSTNAME).zip $(DSTNAME)
|
||||||
|
|
||||||
.PHONY: w32dist dist w32 check check-w32 vdoc vdoc_pkg
|
.PHONY: w32dist dist w32 check check-w32 vdoc vdoc_pkg
|
||||||
|
@ -24,6 +24,6 @@ TARGETS="
|
|||||||
android-arm
|
android-arm
|
||||||
android-x86
|
android-x86
|
||||||
"
|
"
|
||||||
TARGETS=android-arm
|
#TARGETS=android-arm
|
||||||
|
|
||||||
# mingw64 maemo
|
# mingw64 maemo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user