# libcbinder **Repository Path**: rycstar/libcbinder ## Basic Information - **Project Name**: libcbinder - **Description**: android binder wrote in C for embeded system - **Primary Language**: C - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-09-10 - **Last Updated**: 2025-11-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README a binder library wrote in C language. Test Environment: Ubuntu 16.04 with Android binder driver How to insmod binder driver into Ubuntu system: refer to below link: https://github.com/anbox/anbox-modules Compile and run command: make export LD_LIBRARY_PATH=./ ./svr_manager & ./test_services & ./test_client gcc -Wall -O3 -o led_client test/led_client.c -L./ -lcbinder -lpthread -I./include gcc -Wall -O3 -o led_service test/led_service.c -L./ -lcbinder -lpthread -I./include gcc -Wall -O3 -o fd_service test/fd_service.c -L./ -lcbinder -lpthread -I./include gcc -Wall -O3 -o fd_client test/fd_client.c -L./ -lcbinder -lpthread -I./include