summaryrefslogtreecommitdiff
path: root/packaging/baselibs.conf
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/baselibs.conf')
-rw-r--r--packaging/baselibs.conf130
1 files changed, 70 insertions, 60 deletions
diff --git a/packaging/baselibs.conf b/packaging/baselibs.conf
index 17be96595..6ce1dec80 100644
--- a/packaging/baselibs.conf
+++ b/packaging/baselibs.conf
@@ -18,7 +18,6 @@ cross-armv5tel-gcc-accel
targettype armv5tel requires "gcc"
targettype armv5tel requires "gcc-c++"
-
targettype armv5tel prefix /emul/ia32-linux
targettype armv5tel extension -arm
targettype armv5tel +/
@@ -34,26 +33,26 @@ cross-armv5tel-gcc-accel
targettype armv5tel post " echo \"GCCVER: $GCCVER GCCVER_NEW: $GCCVER_NEW \" "
targettype armv5tel post " if test "${GCCVER}" == "${GCCVER_NEW}"; then"
targettype armv5tel post " echo "GCC and GCC-accel versions match. Enabling cross-compiler." "
- targettype armv5tel post " for bin in gcc g++ ; do "
+ targettype armv5tel post " for bin in c++ c89 c99 cpp g++ gcc gcov ; do "
targettype armv5tel post " binary="/usr/bin/${bin}" "
- targettype armv5tel post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv5tel post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
- targettype armv5tel post " else "
+ targettype armv5tel post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv5tel post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv5tel post " else "
+ targettype armv5tel post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
targettype armv5tel post " fi "
targettype armv5tel post " done "
- targettype armv5tel post " for bin in cc1 cc1plus ; do "
+ targettype armv5tel post " for bin in cc1 cc1plus collect2 lto-wrapper lto1 ; do "
targettype armv5tel post " binary="/usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/$GCCVER/$bin" "
- targettype armv5tel post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv5tel post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
- targettype armv5tel post " else "
+ targettype armv5tel post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv5tel post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv5tel post " else "
+ targettype armv5tel post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
targettype armv5tel post " fi "
targettype armv5tel post " done "
targettype armv5tel post " else"
targettype armv5tel post " echo "GCC and GCC-accel versions don't match. Rollback also binutils..." "
- targettype armv5tel post " for bin in addr2line ar as c++filt gprov ld nm objcopy objdump ranlib readelf size strings strip ; do"
+ targettype armv5tel post " for bin in addr2line ar as c++filt gprov ld ld.bfd nm objcopy objdump ranlib readelf size strings strip ; do"
targettype armv5tel post " binary="/usr/bin/${bin}" "
targettype armv5tel post " if test -e ${binary}.orig-arm ; then"
targettype armv5tel post " rm ${binary} && mv ${binary}.orig-arm ${binary}"
@@ -61,11 +60,14 @@ cross-armv5tel-gcc-accel
targettype armv5tel post " echo "${binary}.orig-arm not present !" "
targettype armv5tel post " fi "
targettype armv5tel post " done "
+ targettype armv5tel post " rm -f /usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/4.5.3/ld"
+ targettype armv5tel post " rm -f /usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/4.5.3/ld.bfd"
+
targettype armv5tel post " fi"
targettype armv5tel preun " export GCCVER=$(LANG=C gcc --version | head -1 | cut -d" " -f3) "
- targettype armv5tel preun " for i in gcc g++ ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
- targettype armv5tel preun " for i in cc1 cc1plus ; do cd /usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
+ targettype armv5tel preun " for i in c++ c89 c99 cpp g++ gcc gcov ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
+ targettype armv5tel preun " for i in cc1 cc1plus collect2 lto-wrapper lto1 ; do cd /usr/libexec/gcc/armv5tel-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
@@ -87,7 +89,6 @@ cross-armv6l-gcc-accel
targettype armv6l requires "gcc"
targettype armv6l requires "gcc-c++"
-
targettype armv6l prefix /emul/ia32-linux
targettype armv6l extension -arm
targettype armv6l +/
@@ -103,26 +104,26 @@ cross-armv6l-gcc-accel
targettype armv6l post " echo \"GCCVER: $GCCVER GCCVER_NEW: $GCCVER_NEW \" "
targettype armv6l post " if test "${GCCVER}" == "${GCCVER_NEW}"; then"
targettype armv6l post " echo "GCC and GCC-accel versions match. Enabling cross-compiler." "
- targettype armv6l post " for bin in gcc g++ ; do "
+ targettype armv6l post " for bin in c++ c89 c99 cpp g++ gcc gcov ; do "
targettype armv6l post " binary="/usr/bin/${bin}" "
- targettype armv6l post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv6l post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
- targettype armv6l post " else "
+ targettype armv6l post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv6l post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv6l post " else "
+ targettype armv6l post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
targettype armv6l post " fi "
targettype armv6l post " done "
- targettype armv6l post " for bin in cc1 cc1plus ; do "
+ targettype armv6l post " for bin in cc1 cc1plus collect2 lto-wrapper lto1 ; do "
targettype armv6l post " binary="/usr/libexec/gcc/armv6l-tizen-linux-gnueabi/$GCCVER/$bin" "
- targettype armv6l post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv6l post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv6l-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
- targettype armv6l post " else "
+ targettype armv6l post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv6l post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv6l post " else "
+ targettype armv6l post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv6l-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
targettype armv6l post " fi "
targettype armv6l post " done "
targettype armv6l post " else"
targettype armv6l post " echo "GCC and GCC-accel versions don't match. Rollback also binutils..." "
- targettype armv6l post " for bin in addr2line ar as c++filt gprov ld nm objcopy objdump ranlib readelf size strings strip ; do"
+ targettype armv6l post " for bin in addr2line ar as c++filt gprov ld ld.bfd nm objcopy objdump ranlib readelf size strings strip ; do"
targettype armv6l post " binary="/usr/bin/${bin}" "
targettype armv6l post " if test -e ${binary}.orig-arm ; then"
targettype armv6l post " rm ${binary} && mv ${binary}.orig-arm ${binary}"
@@ -130,11 +131,14 @@ cross-armv6l-gcc-accel
targettype armv6l post " echo "${binary}.orig-arm not present !" "
targettype armv6l post " fi "
targettype armv6l post " done "
+ targettype armv6l post " rm -f /usr/libexec/gcc/armv6l-tizen-linux-gnueabi/4.5.3/ld"
+ targettype armv6l post " rm -f /usr/libexec/gcc/armv6l-tizen-linux-gnueabi/4.5.3/ld.bfd"
+
targettype armv6l post " fi"
targettype armv6l preun " export GCCVER=$(LANG=C gcc --version | head -1 | cut -d" " -f3) "
- targettype armv6l preun " for i in gcc g++ ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
- targettype armv6l preun " for i in cc1 cc1plus ; do cd /usr/libexec/gcc/armv6l-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
+ targettype armv6l preun " for i in c++ c89 c99 cpp g++ gcc gcov ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
+ targettype armv6l preun " for i in cc1 cc1plus collect2 lto-wrapper lto1 ; do cd /usr/libexec/gcc/armv6l-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
@@ -156,7 +160,6 @@ cross-armv7l-gcc-accel
targettype armv7l requires "gcc"
targettype armv7l requires "gcc-c++"
-
targettype armv7l prefix /emul/ia32-linux
targettype armv7l extension -arm
targettype armv7l +/
@@ -172,26 +175,26 @@ cross-armv7l-gcc-accel
targettype armv7l post " echo \"GCCVER: $GCCVER GCCVER_NEW: $GCCVER_NEW \" "
targettype armv7l post " if test "${GCCVER}" == "${GCCVER_NEW}"; then"
targettype armv7l post " echo "GCC and GCC-accel versions match. Enabling cross-compiler." "
- targettype armv7l post " for bin in gcc g++ ; do "
+ targettype armv7l post " for bin in c++ c89 c99 cpp g++ gcc gcov ; do "
targettype armv7l post " binary="/usr/bin/${bin}" "
- targettype armv7l post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv7l post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
- targettype armv7l post " else "
+ targettype armv7l post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv7l post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv7l post " else "
+ targettype armv7l post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
targettype armv7l post " fi "
targettype armv7l post " done "
- targettype armv7l post " for bin in cc1 cc1plus ; do "
+ targettype armv7l post " for bin in cc1 cc1plus collect2 lto-wrapper lto1 ; do "
targettype armv7l post " binary="/usr/libexec/gcc/armv7l-tizen-linux-gnueabi/$GCCVER/$bin" "
- targettype armv7l post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv7l post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv7l-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
- targettype armv7l post " else "
+ targettype armv7l post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv7l post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv7l post " else "
+ targettype armv7l post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv7l-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
targettype armv7l post " fi "
targettype armv7l post " done "
targettype armv7l post " else"
targettype armv7l post " echo "GCC and GCC-accel versions don't match. Rollback also binutils..." "
- targettype armv7l post " for bin in addr2line ar as c++filt gprov ld nm objcopy objdump ranlib readelf size strings strip ; do"
+ targettype armv7l post " for bin in addr2line ar as c++filt gprov ld ld.bfd nm objcopy objdump ranlib readelf size strings strip ; do"
targettype armv7l post " binary="/usr/bin/${bin}" "
targettype armv7l post " if test -e ${binary}.orig-arm ; then"
targettype armv7l post " rm ${binary} && mv ${binary}.orig-arm ${binary}"
@@ -199,11 +202,14 @@ cross-armv7l-gcc-accel
targettype armv7l post " echo "${binary}.orig-arm not present !" "
targettype armv7l post " fi "
targettype armv7l post " done "
+ targettype armv7l post " rm -f /usr/libexec/gcc/armv7l-tizen-linux-gnueabi/4.5.3/ld"
+ targettype armv7l post " rm -f /usr/libexec/gcc/armv7l-tizen-linux-gnueabi/4.5.3/ld.bfd"
+
targettype armv7l post " fi"
targettype armv7l preun " export GCCVER=$(LANG=C gcc --version | head -1 | cut -d" " -f3) "
- targettype armv7l preun " for i in gcc g++ ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
- targettype armv7l preun " for i in cc1 cc1plus ; do cd /usr/libexec/gcc/armv7l-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
+ targettype armv7l preun " for i in c++ c89 c99 cpp g++ gcc gcov ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
+ targettype armv7l preun " for i in cc1 cc1plus collect2 lto-wrapper lto1 ; do cd /usr/libexec/gcc/armv7l-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
@@ -225,7 +231,6 @@ cross-armv7hl-gcc-accel
targettype armv7hl requires "gcc"
targettype armv7hl requires "gcc-c++"
-
targettype armv7hl prefix /emul/ia32-linux
targettype armv7hl extension -arm
targettype armv7hl +/
@@ -241,26 +246,26 @@ cross-armv7hl-gcc-accel
targettype armv7hl post " echo \"GCCVER: $GCCVER GCCVER_NEW: $GCCVER_NEW \" "
targettype armv7hl post " if test "${GCCVER}" == "${GCCVER_NEW}"; then"
targettype armv7hl post " echo "GCC and GCC-accel versions match. Enabling cross-compiler." "
- targettype armv7hl post " for bin in gcc g++ ; do "
+ targettype armv7hl post " for bin in c++ c89 c99 cpp g++ gcc gcov ; do "
targettype armv7hl post " binary="/usr/bin/${bin}" "
- targettype armv7hl post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv7hl post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
- targettype armv7hl post " else "
+ targettype armv7hl post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv7hl post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv7hl post " else "
+ targettype armv7hl post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
targettype armv7hl post " fi "
targettype armv7hl post " done "
- targettype armv7hl post " for bin in cc1 cc1plus ; do "
+ targettype armv7hl post " for bin in cc1 cc1plus collect2 lto-wrapper lto1 ; do "
targettype armv7hl post " binary="/usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/$GCCVER/$bin" "
- targettype armv7hl post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv7hl post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
- targettype armv7hl post " else "
+ targettype armv7hl post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv7hl post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv7hl post " else "
+ targettype armv7hl post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
targettype armv7hl post " fi "
targettype armv7hl post " done "
targettype armv7hl post " else"
targettype armv7hl post " echo "GCC and GCC-accel versions don't match. Rollback also binutils..." "
- targettype armv7hl post " for bin in addr2line ar as c++filt gprov ld nm objcopy objdump ranlib readelf size strings strip ; do"
+ targettype armv7hl post " for bin in addr2line ar as c++filt gprov ld ld.bfd nm objcopy objdump ranlib readelf size strings strip ; do"
targettype armv7hl post " binary="/usr/bin/${bin}" "
targettype armv7hl post " if test -e ${binary}.orig-arm ; then"
targettype armv7hl post " rm ${binary} && mv ${binary}.orig-arm ${binary}"
@@ -268,11 +273,14 @@ cross-armv7hl-gcc-accel
targettype armv7hl post " echo "${binary}.orig-arm not present !" "
targettype armv7hl post " fi "
targettype armv7hl post " done "
+ targettype armv7hl post " rm -f /usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/4.5.3/ld"
+ targettype armv7hl post " rm -f /usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/4.5.3/ld.bfd"
+
targettype armv7hl post " fi"
targettype armv7hl preun " export GCCVER=$(LANG=C gcc --version | head -1 | cut -d" " -f3) "
- targettype armv7hl preun " for i in gcc g++ ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
- targettype armv7hl preun " for i in cc1 cc1plus ; do cd /usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
+ targettype armv7hl preun " for i in c++ c89 c99 cpp g++ gcc gcov ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
+ targettype armv7hl preun " for i in cc1 cc1plus collect2 lto-wrapper lto1 ; do cd /usr/libexec/gcc/armv7hl-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
@@ -294,7 +302,6 @@ cross-armv7nhl-gcc-accel
targettype armv7nhl requires "gcc"
targettype armv7nhl requires "gcc-c++"
-
targettype armv7nhl prefix /emul/ia32-linux
targettype armv7nhl extension -arm
targettype armv7nhl +/
@@ -310,26 +317,26 @@ cross-armv7nhl-gcc-accel
targettype armv7nhl post " echo \"GCCVER: $GCCVER GCCVER_NEW: $GCCVER_NEW \" "
targettype armv7nhl post " if test "${GCCVER}" == "${GCCVER_NEW}"; then"
targettype armv7nhl post " echo "GCC and GCC-accel versions match. Enabling cross-compiler." "
- targettype armv7nhl post " for bin in gcc g++ ; do "
+ targettype armv7nhl post " for bin in c++ c89 c99 cpp g++ gcc gcov ; do "
targettype armv7nhl post " binary="/usr/bin/${bin}" "
- targettype armv7nhl post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv7nhl post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
- targettype armv7nhl post " else "
+ targettype armv7nhl post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv7nhl post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv7nhl post " else "
+ targettype armv7nhl post " mv ${binary} ${binary}.orig-arm && cp <prefix>${binary} ${binary}"
targettype armv7nhl post " fi "
targettype armv7nhl post " done "
- targettype armv7nhl post " for bin in cc1 cc1plus ; do "
+ targettype armv7nhl post " for bin in cc1 cc1plus collect2 lto-wrapper lto1 ; do "
targettype armv7nhl post " binary="/usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/$GCCVER/$bin" "
- targettype armv7nhl post " if test -e ${binary} -a ! -e ${binary}.orig-arm ; then"
- targettype armv7nhl post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
- targettype armv7nhl post " else "
+ targettype armv7nhl post " if test -L ${binary} -a -e ${binary}.orig-arm ; then"
targettype armv7nhl post " echo "${binary} not installed or ${binary}.orig-arm already present !" "
+ targettype armv7nhl post " else "
+ targettype armv7nhl post " mv ${binary} ${binary}.orig-arm && cp <prefix>/usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/$GCCVER_NEW/${bin} ${binary}"
targettype armv7nhl post " fi "
targettype armv7nhl post " done "
targettype armv7nhl post " else"
targettype armv7nhl post " echo "GCC and GCC-accel versions don't match. Rollback also binutils..." "
- targettype armv7nhl post " for bin in addr2line ar as c++filt gprov ld nm objcopy objdump ranlib readelf size strings strip ; do"
+ targettype armv7nhl post " for bin in addr2line ar as c++filt gprov ld ld.bfd nm objcopy objdump ranlib readelf size strings strip ; do"
targettype armv7nhl post " binary="/usr/bin/${bin}" "
targettype armv7nhl post " if test -e ${binary}.orig-arm ; then"
targettype armv7nhl post " rm ${binary} && mv ${binary}.orig-arm ${binary}"
@@ -337,10 +344,13 @@ cross-armv7nhl-gcc-accel
targettype armv7nhl post " echo "${binary}.orig-arm not present !" "
targettype armv7nhl post " fi "
targettype armv7nhl post " done "
+ targettype armv7nhl post " rm -f /usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/4.5.3/ld"
+ targettype armv7nhl post " rm -f /usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/4.5.3/ld.bfd"
+
targettype armv7nhl post " fi"
targettype armv7nhl preun " export GCCVER=$(LANG=C gcc --version | head -1 | cut -d" " -f3) "
- targettype armv7nhl preun " for i in gcc g++ ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
- targettype armv7nhl preun " for i in cc1 cc1plus ; do cd /usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "
+ targettype armv7nhl preun " for i in c++ c89 c99 cpp g++ gcc gcov ; do if test -e /usr/bin/${i}.orig-arm ; then rm /usr/bin/${i} ; mv /usr/bin/${i}.orig-arm /usr/bin/${i}; fi ; done "
+ targettype armv7nhl preun " for i in cc1 cc1plus collect2 lto-wrapper lto1 ; do cd /usr/libexec/gcc/armv7nhl-tizen-linux-gnueabi/$GCCVER ; if test -e ${i}.orig-arm ; then rm ${i} ; mv ${i}.orig-arm ${i} ; fi ; done "