热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

androidlog4,在AndroidNDK下编译log4cpp1.1

NDK版本r8下载log4cpp-1.1.tar.gz并解压默认情况下,log4cpp准备好了windows平台的config文件,但是linux下一般是通过configurato

NDK版本r8

下载log4cpp-1.1.tar.gz并解压

默认情况下, log4cpp准备好了windows平台的config文件, 但是linux下一般是通过configurator生成的.

我先找了个linux生成了一下, 然后把config放在log4cpp/include/log4cpp/config.h, 内容参见

#ifndef _INCLUDE_LOG4CPP_CONFIG_H#define _INCLUDE_LOG4CPP_CONFIG_H 1/* include/log4cpp/config.h. Generated automatically at end of configure. *//* include/config.h. Generated from config.h.in by configure. *//* include/config.h.in. Generated from configure.in by autoheader. *//* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_DLFCN_H#define LOG4CPP_HAVE_DLFCN_H 1#endif/* Define to 1 if you have the `ftime' function. */#ifndef LOG4CPP_HAVE_FTIME#define LOG4CPP_HAVE_FTIME 1#endif/* Define to 1 if you have the `gettimeofday' function. */#ifndef LOG4CPP_HAVE_GETTIMEOFDAY#define LOG4CPP_HAVE_GETTIMEOFDAY 1#endif/* define if the compiler has int64_t */#ifndef LOG4CPP_HAVE_INT64_T#define LOG4CPP_HAVE_INT64_T /**/#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_INTTYPES_H#define LOG4CPP_HAVE_INTTYPES_H 1#endif/* Define to 1 if you have the header file. *//* #undef LOG4CPP_HAVE_IO_H *//* Define to 1 if you have the `idsa' library (-lidsa). *//* #undef LOG4CPP_HAVE_LIBIDSA *//* Define to 1 if you have the `localtime_r' function. */#ifndef LOG4CPP_HAVE_LOCALTIME_R#define LOG4CPP_HAVE_LOCALTIME_R 1#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_MEMORY_H#define LOG4CPP_HAVE_MEMORY_H 1#endif/* define if the compiler implements namespaces */#ifndef LOG4CPP_HAVE_NAMESPACES#define LOG4CPP_HAVE_NAMESPACES /**/#endif/* Define if you have POSIX threads libraries and header files. */#ifndef LOG4CPP_HAVE_PTHREAD#define LOG4CPP_HAVE_PTHREAD 1#endif/* define if the C library has snprintf */#ifndef LOG4CPP_HAVE_SNPRINTF#define LOG4CPP_HAVE_SNPRINTF /**/#endif/* define if the compiler has stringstream */#ifndef LOG4CPP_HAVE_SSTREAM#define LOG4CPP_HAVE_SSTREAM /**/#endif/* define if you have the header file. */#ifndef LOG4CPP_HAVE_STDINT_H#define LOG4CPP_HAVE_STDINT_H /**/#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_STDLIB_H#define LOG4CPP_HAVE_STDLIB_H 1#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_STRINGS_H#define LOG4CPP_HAVE_STRINGS_H 1#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_STRING_H#define LOG4CPP_HAVE_STRING_H 1#endif/* Define to 1 if you have the `syslog' function. */#ifndef LOG4CPP_HAVE_SYSLOG#define LOG4CPP_HAVE_SYSLOG 1#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_SYS_STAT_H#define LOG4CPP_HAVE_SYS_STAT_H 1#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_SYS_TYPES_H#define LOG4CPP_HAVE_SYS_TYPES_H 1#endif/* define if threading is enabled */#ifndef LOG4CPP_HAVE_THREADING#define LOG4CPP_HAVE_THREADING 1#endif/* Define to 1 if you have the header file. */#ifndef LOG4CPP_HAVE_UNISTD_H#define LOG4CPP_HAVE_UNISTD_H 1#endif/* Define to the sub-directory in which libtool stores uninstalled libraries.*/#ifndef LOG4CPP_LT_OBJDIR#define LOG4CPP_LT_OBJDIR ".libs/"#endif/* Name of package */#ifndef LOG4CPP_PACKAGE#define LOG4CPP_PACKAGE "log4cpp"#endif/* Define to the address where bug reports for this package should be sent. */#ifndef LOG4CPP_PACKAGE_BUGREPORT#define LOG4CPP_PACKAGE_BUGREPORT ""#endif/* Define to the full name of this package. */#ifndef LOG4CPP_PACKAGE_NAME#define LOG4CPP_PACKAGE_NAME "log4cpp"#endif/* Define to the full name and version of this package. */#ifndef LOG4CPP_PACKAGE_STRING#define LOG4CPP_PACKAGE_STRING "log4cpp 1.1"#endif/* Define to the one symbol short name of this package. */#ifndef LOG4CPP_PACKAGE_TARNAME#define LOG4CPP_PACKAGE_TARNAME "log4cpp"#endif/* Define to the home page for this package. */#ifndef LOG4CPP_PACKAGE_URL#define LOG4CPP_PACKAGE_URL ""#endif/* Define to the version of this package. */#ifndef LOG4CPP_PACKAGE_VERSION#define LOG4CPP_PACKAGE_VERSION "1.1"#endif/* Define to necessary symbol if this constant uses a non-standard name onyour system. *//* #undef LOG4CPP_PTHREAD_CREATE_JOINABLE *//* Define to 1 if you have the ANSI C header files. */#ifndef LOG4CPP_STDC_HEADERS#define LOG4CPP_STDC_HEADERS 1#endif/* define if pthread library is available */#ifndef LOG4CPP_USE_PTHREADS#define LOG4CPP_USE_PTHREADS 1#endif/* Version number of package */#ifndef LOG4CPP_VERSION#define LOG4CPP_VERSION "1.1"#endif/* _INCLUDE_LOG4CPP_CONFIG_H */#endif

接着, 修改log4cpp/include/log4cpp/RemoteSyslogAppender.hh的包含,改为

#ifdef WIN32

#include

#else

#include

#include

#include

#include

#endif

可以删除RemoteSyslogAppender.cpp里的这个定义即可

添加Android.mk

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := log4cpp

LOCAL_SRC_FILES := \

src/AbortAppender.cpp \

src/Appender.cpp \

src/AppendersFactory.cpp \

src/AppenderSkeleton.cpp \

src/BasicConfigurator.cpp \

src/BasicLayout.cpp \

src/BufferingAppender.cpp \

src/Category.cpp \

src/CategoryStream.cpp \

src/Configurator.cpp \

src/DllMain.cpp \

src/DummyThreads.cpp \

src/FactoryParams.cpp \

src/FileAppender.cpp \

src/Filter.cpp \

src/FixedContextCategory.cpp \

src/HierarchyMaintainer.cpp \

src/IdsaAppender.cpp \

src/LayoutAppender.cpp \

src/LayoutsFactory.cpp \

src/LevelEvaluator.cpp \

src/Localtime.cpp \

src/LoggingEvent.cpp \

src/Manipulator.cpp \

src/MSThreads.cpp \

src/NDC.cpp \

src/NTEventLogAppender.cpp \

src/OmniThreads.cpp \

src/OstreamAppender.cpp \

src/PassThroughLayout.cpp \

src/PatternLayout.cpp \

src/PortabilityImpl.cpp \

src/Priority.cpp \

src/Properties.cpp \

src/PropertyConfigurator.cpp \

src/PropertyConfiguratorImpl.cpp \

src/PThreads.cpp \

src/RemoteSyslogAppender.cpp \

src/RollingFileAppender.cpp \

src/SimpleConfigurator.cpp \

src/SimpleLayout.cpp \

src/SmtpAppender.cpp \

src/StringQueueAppender.cpp \

src/StringUtil.cpp \

src/SyslogAppender.cpp \

src/TimeStamp.cpp \

src/TriggeringEventEvaluatorFactory.cpp \

LOCAL_C_INCLUDES := $(LOCAL_PATH) \

$(LOCAL_PATH)/include

include $(BUILD_STATIC_LIBRARY)

编译即可



推荐阅读
  • 使用QT构建基础串口辅助工具
    本文详细介绍了如何利用QT框架创建一个简易的串口助手应用程序,包括项目的建立、界面设计与编程实现、运行测试以及最终的应用程序打包。 ... [详细]
  • 本文介绍了一种方法,通过使用Python的ctypes库来调用C++代码。具体实例为实现一个简单的加法器,并详细说明了从编写C++代码到编译及最终在Python中调用的全过程。 ... [详细]
  • 本文详细介绍了Linux系统中信号量的相关函数,包括sem_init、sem_wait、sem_post和sem_destroy,解释了它们的功能和使用方法,并提供了示例代码。 ... [详细]
  • 深入理解Java SE 8新特性:Lambda表达式与函数式编程
    本文作为‘Java SE 8新特性概览’系列的一部分,将详细探讨Lambda表达式。通过多种示例,我们将展示Lambda表达式的不同应用场景,并解释编译器如何处理这些表达式。 ... [详细]
  • 【小白学习C++ 教程】二十三、如何安装和使用 C++ 标准库
    【小白学习C++ 教程】二十三、如何安装和使用 C++ 标准库 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • Requests库的基本使用方法
    本文介绍了Python中Requests库的基础用法,包括如何安装、GET和POST请求的实现、如何处理Cookies和Headers,以及如何解析JSON响应。相比urllib库,Requests库提供了更为简洁高效的接口来处理HTTP请求。 ... [详细]
  • 数据类型--char一、char1.1char占用2个字节char取值范围:【0~65535】char采用unicode编码方式char类型的字面量用单引号括起来char可以存储一 ... [详细]
  • 本文作为《WM平台上使用Sybase Anywhere 11》系列的第二篇,将继续探讨在Windows Mobile (WM) 系统中如何高效地操作Sybase Anywhere 11数据库。继上一篇关于安装与基本测试的文章之后,本篇将深入讲解数据库的具体操作方法。 ... [详细]
  • 本文将从基础概念入手,详细探讨SpringMVC框架中DispatcherServlet如何通过HandlerMapping进行请求分发,以及其背后的源码实现细节。 ... [详细]
  • importjava.io.*;importjava.util.*;publicclass五子棋游戏{staticintm1;staticintn1;staticfinalintS ... [详细]
  • 本文详细介绍了如何在Windows操作系统中配置和使用Lex(Flex)与Yacc(Bison),包括软件的下载、安装以及通过示例验证其正确性的步骤。 ... [详细]
  • 在Qt框架中,信号与槽机制是一种独特的组件间通信方式。本文探讨了这一机制相较于传统的C风格回调函数所具有的优势,并分析了其潜在的不足之处。 ... [详细]
  • PHP面试题精选及答案解析
    本文精选了新浪PHP笔试题及最新的PHP面试题,并提供了详细的答案解析,帮助求职者更好地准备PHP相关的面试。 ... [详细]
author-avatar
紫陌红尘一笑_423
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有