Browse Source

remove unused code. we handle all compiling inside openadk.

Waldemar Brodkorb 11 years ago
parent
commit
4e02f2fd1a
1 changed files with 0 additions and 24 deletions
  1. 0 24
      embedded-test.sh

+ 0 - 24
embedded-test.sh

@@ -323,30 +323,6 @@ runtest() {
 		exit 1
 	fi
 
-	case $lib in
-		uclibc-ng)
-			prefix=uclibc
-			;;
-		glibc)
-			prefix=gnu
-			;;
-		*)
-			prefix=$libc
-			;;
-	esac
-	cross=${cpu_arch}-openadk-linux-${prefix}${suffix}
-	if [ -z $psuffix ];then
-		TCPATH=${topdir}/openadk/toolchain_qemu-${march}_${lib}_${cpu_arch}
-	else
-		TCPATH=${topdir}/openadk/toolchain_qemu-${march}_${lib}_${cpu_arch}_${psuffix}
-	fi
-	export PATH="${TCPATH}/usr/bin:$PATH"
-
-	if ! which ${cross}-gcc >/dev/null; then
-		echo "Checking if ${cross}-gcc is installed... failed"
-		exit 1
-	fi
-
 	echo "Starting test for $lib and ${arch}"
 	echo "Generating root filesystem for test run"
 	root=$(mktemp -d /tmp/XXXX)