How to compile libusb as shared/static library
I am trying to build libusb as shared library as follows.
Following are two steps. 1. Configure 2. Make.
預設會生成靜態庫和動態在 /libusb/.lib/目錄下。
android ndk 編譯動態和靜態庫的方法
libusb.mk
# Android build config for libusb
# Copyright © 2012-2013 RealVNC Ltd. <toby.gray@realvnc.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
LOCAL_PATH:= $(call my-dir)
LIBUSB_ROOT_REL:= ../..
LIBUSB_ROOT_ABS:= $(LOCAL_PATH)/../..
# libusb
include $(CLEAR_VARS)
LIBUSB_ROOT_REL:= ../..
LIBUSB_ROOT_ABS:= $(LOCAL_PATH)/../..
LOCAL_SRC_FILES := \
$(LIBUSB_ROOT_REL)/libusb/core.c \
$(LIBUSB_ROOT_REL)/libusb/descriptor.c \
$(LIBUSB_ROOT_REL)/libusb/hotplug.c \
$(LIBUSB_ROOT_REL)/libusb/io.c \
$(LIBUSB_ROOT_REL)/libusb/sync.c \
$(LIBUSB_ROOT_REL)/libusb/strerror.c \
$(LIBUSB_ROOT_REL)/libusb/os/linux_usbfs.c \
$(LIBUSB_ROOT_REL)/libusb/os/poll_posix.c \
$(LIBUSB_ROOT_REL)/libusb/os/threads_posix.c \
$(LIBUSB_ROOT_REL)/libusb/os/linux_netlink.c
LOCAL_C_INCLUDES += \
$(LOCAL_PATH)/.. \
$(LIBUSB_ROOT_ABS)/libusb \
$(LIBUSB_ROOT_ABS)/libusb/os
LOCAL_EXPORT_C_INCLUDES := \
$(LIBUSB_ROOT_ABS)/libusb
#LOCAL_LDLIBS := -llog
LOCAL_MODULE := libusb1.0
#include $(BUILD_SHARED_LIBRARY)
include $(BUILD_STATIC_LIBRARY)
相關文章
- How to compile Invalid Object?CompileObject
- unixODBC: How to Generate ODBC Driver Shared Library libsqora on Linux/UnixLinux
- Swift工程如何整合Static LibrarySwift
- how-to-build-c-static-libraries-boostUI
- 等待模擬-library cache shared pool 硬解析
- How to Move/Recreate GI Management Repository to Different Shared Storage
- Shared pool的library cache lock/pin及硬解析
- How To Use Google Logging Library (glog)Go
- 深入理解shared pool共享池之library cache的library cache lock系列四
- 深入理解shared pool共享池之library cache的library cache pin系列三
- shared pool之三:library cache結構/library cache object的結構-dump LibraryHandleObject
- 優化Shared Pool Latch與Library Cache Latch競爭優化
- shared pool library cache latch 競爭優化辦法優化
- How to Find which Session is Holding a Particular Library Cache LockSession
- libusb開發者指南
- How To Pin Objects in Your Shared Pool [ID 1012047.6]Object
- Flush an Object Out The Library Cache [SGA] Using The DBMS_SHARED_POOLObject
- Shared Pool優化和Library Cache Latch衝突優化優化
- 深入理解shared pool共享池之library cache系列一
- 深入理解shared pool共享池之library cache系列二
- build libusb for AndroidUIAndroid
- Android原始碼編譯jar包BUILD_JAVA_LIBRARY 與BUILD_STATIC_JAVA_LIBRARY的區別(一)Android原始碼編譯JARUIJava
- Can't debug c++ project because unable to static library start program *.libC++Project
- [原創] How to pull code when shared repo commit history has been changedMIT
- 故障排除:Shared Pool優化和Library Cache Latch衝突優化優化
- 共享池之六:shared pool latch/ library cache latch /lock pin 簡介
- 【已解決】執行Eclipse出錯:Failed toload the JNI shared libraryEclipseAI
- 啟動Eclipse的時候報錯Failed to load the JNI shared library..EclipseAI
- usb 3.0 linux libusb 問題Linux
- static
- (C language Sample ) Compile procedureCompile
- DBMS_UTILITY.COMPILE_SCHEMACompile
- oracle10g_oracle11g_library cache_shared pool管理方面的小區別Oracle
- [ERROR] mysqld: Can‘t open shared library ‘/usr/local/mysql/lib/plugin/validate_password.so‘ (errno:ErrorMySqlPlugin
- 我們來聊聊 Vue - compileVueCompile
- angularjs compile vs linkAngularJSCompile
- Libusb開發教程 API介紹與使用API
- Libusb庫在Android下的使用例程Android