walnux/libs/libc/modlib
chao an 6ee9ec7656 build: add initial cmake build system
1. Update all CMakeLists.txt to adapt to new layout
2. Fix cmake build break
3. Update all new file license
4. Fully compatible with current compilation environment(use configure.sh or cmake as you choose)

------------------

How to test

From within nuttx/. Configure:

cmake -B build -DBOARD_CONFIG=sim/nsh -GNinja
cmake -B build -DBOARD_CONFIG=sim:nsh -GNinja
cmake -B build -DBOARD_CONFIG=sabre-6quad/smp -GNinja
cmake -B build -DBOARD_CONFIG=lm3s6965-ek/qemu-flat -GNinja

(or full path in custom board) :
cmake -B build -DBOARD_CONFIG=$PWD/boards/sim/sim/sim/configs/nsh -GNinja

This uses ninja generator (install with sudo apt install ninja-build). To build:

$ cmake --build build

menuconfig:

$ cmake --build build -t menuconfig

--------------------------

2. cmake/build: reformat the cmake style by cmake-format

https://github.com/cheshirekow/cmake_format

$ pip install cmakelang

$ for i in `find -name CMakeLists.txt`;do cmake-format $i -o $i;done
$ for i in `find -name *\.cmake`;do cmake-format $i -o $i;done

Co-authored-by: Matias N <matias@protobits.dev>
Signed-off-by: chao an <anchao@xiaomi.com>
2023-07-08 13:50:48 +08:00
..
CMakeLists.txt build: add initial cmake build system 2023-07-08 13:50:48 +08:00
gnu-elf.ld modlib: Replace Gregory Nutt's copyright notice with Apache 2.0 2020-04-13 09:49:22 -06:00
Kconfig typos: fix typos in Kconfig files 2022-01-08 06:46:26 -03:00
Make.defs Add support for the loading of ET_DYN objects 2023-07-06 09:13:38 -03:00
modlib.h Fix coding style issues from PR #7202 2023-07-06 14:08:08 -03:00
modlib_bind.c Add support for the loading of ET_DYN objects 2023-07-06 09:13:38 -03:00
modlib_depend.c Don't include assert.h from public header file 2021-06-03 08:36:03 -07:00
modlib_globals.S libs/libc/modlib: fix dynamic loader issues 2023-07-07 13:43:20 -04:00
modlib_init.c libc/modlib: Replace nx_stat with file_stat 2023-07-06 09:20:24 -03:00
modlib_iobuffer.c modlib: Replace Gregory Nutt's copyright notice with Apache 2.0 2020-04-13 09:49:22 -06:00
modlib_load.c Add support for the loading of ET_DYN objects 2023-07-06 09:13:38 -03:00
modlib_loadhdrs.c libs/libc/modlib: fix dynamic loader issues 2023-07-07 13:43:20 -04:00
modlib_read.c Ensure the kernel component don't call userspace API 2021-03-01 09:23:09 +09:00
modlib_registry.c use rmutex inside of all repeated implementation 2022-05-30 19:43:48 +08:00
modlib_sections.c libs/libc/modlib/modlib_sections.c: Remove a redundant assignment 2020-07-30 16:16:21 +02:00
modlib_symbols.c Add support for the loading of ET_DYN objects 2023-07-06 09:13:38 -03:00
modlib_symtab.c symtab: Remove the unnessary inclusion of nuttx/symtab.h 2023-07-06 09:24:02 -03:00
modlib_uninit.c Add support for the loading of ET_DYN objects 2023-07-06 09:13:38 -03:00
modlib_unload.c Rename MODULE_TEXT to TEXT_HEAP as the latter is more generic. 2021-06-18 07:14:17 -05:00
modlib_verify.c libs/libc/modlib: fix dynamic loader issues 2023-07-07 13:43:20 -04:00