Remove use of deprecated configure flags
This commit is contained in:
parent
40e426b2e5
commit
75505b882d
9 changed files with 10 additions and 11 deletions
|
|
@ -11,7 +11,7 @@ To build r2 for android you need to install the NDK:
|
|||
Edit ~/.r2androidrc to setup the paths to your ndk
|
||||
|
||||
sys/android-shell.sh
|
||||
./configure --with-compiler=android --with-ostype=android --without-ssl --prefix=/data/radare2 --without-pic --with-nonpic --without-gmp
|
||||
./configure --with-compiler=android --with-ostype=android --prefix=/data/radare2 --without-pic --with-nonpic
|
||||
make -j 4
|
||||
|
||||
To compile for android-x86
|
||||
|
|
@ -29,7 +29,6 @@ Build farm
|
|||
|
||||
sys/android-shell.sh sys/android-build.sh arm-static
|
||||
|
||||
|
||||
Environment:
|
||||
|
||||
NDK_ARCH=arm|x86
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ sys/emscripten.sh
|
|||
--- random notes ---
|
||||
|
||||
export CC="emcc --ignore-dynamic-linking"
|
||||
./configure --prefix=/usr --disable-shared --enable-static --disable-debugger --with-compiler=emscripten --without-ewf --without-pic --with-nonpic --without-gmp
|
||||
./configure --prefix=/usr --disable-shared --enable-static --disable-debugger --with-compiler=emscripten --without-pic --with-nonpic
|
||||
emmake make -j4
|
||||
|
||||
cd binr/radare2
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
* Compile
|
||||
|
||||
./configure --without-ssl --prefix=/usr --with-little-endian \
|
||||
./configure --prefix=/usr --with-little-endian \
|
||||
--with-compiler=mad --with-ostype=gnulinux
|
||||
make
|
||||
|
||||
|
|
|
|||
2
doc/qnx
2
doc/qnx
|
|
@ -4,6 +4,6 @@ r2 on android
|
|||
. ./bbndk-env.sh
|
||||
cd ~/radare2
|
||||
rm -f plugins.cfg
|
||||
./configure --with-compiler=qnx --with-ostype=qnx --without-ssl --prefix=/accounts/devuser/radare2 --without-pic --with-nonpic --without-gmp
|
||||
./configure --with-compiler=qnx --with-ostype=qnx --prefix=/accounts/devuser/radare2 --without-pic --with-nonpic
|
||||
make -j 4
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Crosscompilation
|
|||
|
||||
**ArchLinux**
|
||||
|
||||
./configure --with-compiler=i486-mingw32-gcc --with-ostype=windows --host=i486-unknown-windows --without-ssl
|
||||
./configure --with-compiler=i486-mingw32-gcc --with-ostype=windows --host=i486-unknown-windows
|
||||
make
|
||||
make w32dist
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ Crosscompilation
|
|||
Build radare2
|
||||
-------------
|
||||
|
||||
./configure --with-compiler=x86_64-w64-mingw32-gcc --with-ostype=windows --host=x86_64-unknown-windows --without-magic --without-ssl
|
||||
./configure --with-compiler=x86_64-w64-mingw32-gcc --with-ostype=windows --host=x86_64-unknown-windows
|
||||
|
||||
|
||||
Python bindings:
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ if [ "${BUILD}" = 1 ]; then
|
|||
fi
|
||||
# dup
|
||||
echo ./configure --with-compiler=android \
|
||||
--with-ostype=android --without-ewf \
|
||||
--with-ostype=android \
|
||||
--prefix=${PREFIX} ${CFGFLAGS}
|
||||
|
||||
./configure --with-compiler=android --with-ostype=android \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
mad list >/dev/null 2>&1
|
||||
if [ $? = 0 ]; then
|
||||
make clean
|
||||
echo './configure --without-ssl --prefix=/usr --with-little-endian' | mad sh
|
||||
echo './configure --prefix=/usr' | mad sh
|
||||
echo make | mad sh
|
||||
cd maemo
|
||||
make
|
||||
|
|
|
|||
|
|
@ -17,6 +17,6 @@ else
|
|||
fi
|
||||
|
||||
make clean
|
||||
./configure --without-gmp --with-compiler=x86_64-w64-mingw32-gcc --with-ostype=windows --host=x86_64-unknown-windows --without-ssl
|
||||
./configure --with-compiler=x86_64-w64-mingw32-gcc --with-ostype=windows --host=x86_64-unknown-windows
|
||||
make -s -j ${MAKE_JOBS} CC="${C} -g -static-libgcc" && \
|
||||
make w64dist
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ unset LDFLAGS
|
|||
export CC="emcc --ignore-dynamic-linking"
|
||||
export AR="emar"
|
||||
|
||||
CFGFLAGS="--prefix=/usr --without-ewf --without-gmp"
|
||||
CFGFLAGS="--prefix=/usr"
|
||||
|
||||
make mrproper
|
||||
cp -f plugins.tiny.cfg plugins.cfg
|
||||
|
|
|
|||
Loading…
Reference in a new issue