Chinaunix首页 | 论坛 | 博客
  • 博客访问: 300952
  • 博文数量: 43
  • 博客积分: 2071
  • 博客等级: 大尉
  • 技术积分: 488
  • 用 户 组: 普通用户
  • 注册时间: 2009-08-25 17:48
文章分类

全部博文(43)

文章存档

2014年(5)

2013年(4)

2011年(9)

2010年(8)

2009年(17)

我的朋友

分类: 嵌入式

2009-08-26 16:54:40

下面的文档描述如何移植 iperf 到 android 平台中

1. download iperf source code

latest iperf version from the below link:

and then unzip it.
tar zxvf iperf_2.0.4.orig.tar.gz

2. copy iperf-2.0.4
copy iperf-2.0.4 folder to external/ in cupcake or other Android version, and rename it as iperf.

3. add header files
add two header files in iperf folder
iperf/include/iperf-int.h
iperf/config.h
you can get it if you build iperf source code in iperf formal package.
文件:iperf-two-headers.tar.gz
大小:2KB
下载:下载


4. add Makefile
add a new Android.mk in iperf folder for Android environment.
and the context is as belows:
#
# Copyright (C) 2008 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
LOCAL_PATH := $(call my-dir)

OBJS += compat/error.c
OBJS += compat/snprintf.c
OBJS += compat/inet_ntop.c
OBJS += compat/inet_pton.c
OBJS += compat/signal.c
OBJS += compat/Thread.c
OBJS += compat/string.c
OBJS += compat/gettimeofday.c
OBJS += src/gnu_getopt.c
OBJS += src/gnu_getopt_long.c
OBJS += src/tcp_window_size.c
OBJS += src/service.c
OBJS += src/sockets.c
OBJS += src/stdio.c
OBJS += src/ReportCSV.c
OBJS += src/Locale.c
OBJS += src/ReportDefault.c
OBJS += src/Reporter.c
OBJS += src/Extractor.c
OBJS += src/SocketAddr.c
OBJS += compat/delay.cpp
OBJS += src/Server.cpp
OBJS += src/Client.cpp
OBJS += src/List.cpp
OBJS += src/Launch.cpp
OBJS += src/PerfSocket.cpp
OBJS += src/Settings.cpp
OBJS += src/Listener.cpp
OBJS += src/main.cpp

INCLUDES = $(LOCAL_PATH)/include

L_CFLAGS = -DHAVE_CONFIG_H

########################

include $(CLEAR_VARS)
LOCAL_MODULE := iperf
#LOCAL_SHARED_LIBRARIES := libc libcutils libutils libnetutils libstdc++
LOCAL_CFLAGS := $(L_CFLAGS)
LOCAL_SRC_FILES := $(OBJS)
LOCAL_C_INCLUDES := $(INCLUDES)
include $(BUILD_EXECUTABLE)
########################

4. do modification
do some modification which blocks the build.
4.1 util.h
because Android environment has also one util.h, and Make system will select it instead of util.h in iperf folder,
so we need let Make system select local util.h. one easy method is to use below sentence.
#include "include/util.h"
instead of
#include "util.h"

4.2 headers.h
for iperf/include/headers.h
#ifndef NDEBUG
#define NDEBUG
#endif
instead of
#define NDEBUG

4.3 Listener.cpp
for iperf/src/Listener.cpp
delete the below since we don't care about ipv6 currently.
mreq.ipv6mr_interface = 0;


阅读(4243) | 评论(9) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2009-09-22 22:37:42

sudhir@sudhir-laptop:~/bin$ make ============================================ PLATFORM_VERSION_CODENAME=REL PLATFORM_VERSION=1.6 TARGET_PRODUCT=generic TARGET_BUILD_VARIANT=eng TARGET_SIMULATOR= TARGET_BUILD_TYPE=release TARGET_ARCH=arm HOST_ARCH=x86 HOST_OS=linux HOST_BUILD_TYPE=release BUILD_ID=Donut ============================================ build/core/copy_headers.mk:15: warning: overriding commands for target `out/target/product/generic/obj/include/libpv/getactualaacconfig.h

amuhong2009-09-19 15:42:15

Hi, you can find the below sentence in iperf source code to get all references to this file. include "util.h" and then modify all.

chinaunix网友2009-09-19 02:59:18

could you please explain further, what should i do afte i put it in external? I tried building it, It did not compile.........als ""4.1 util.h because Android environment has also one util.h, and Make system will select it instead of util.h in iperf folder, because Android environment has also one util.h, and Make system will select it instead of util.h in iperf folder, so we need let Make system select local util.h. one easy method is to use below sentence. so we need let Make system select

chinaunix网友2009-09-19 02:58:58

http://blog.chinaunix.net/comment/comment.php?bg=F9F5E7&ctype=0&iscomment=1&artid=2037838&blogid=103613

chinaunix网友2009-09-19 02:58:02

could you please explain further, what should i do afte i put it in external? I tried building it, It did not compile.........als ""4.1 util.h because Android environment has also one util.h, and Make system will select it instead of util.h in iperf folder, because Android environment has also one util.h, and Make system will select it instead of util.h in iperf folder, so we need let Make system select local util.h. one easy method is to use below sentence. so we need let Make system select