Skip to content

Instantly share code, notes, and snippets.

@lupyuen
Last active June 22, 2023 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lupyuen/9d9b89dfd91b27f93459828178b83b77 to your computer and use it in GitHub Desktop.
Save lupyuen/9d9b89dfd91b27f93459828178b83b77 to your computer and use it in GitHub Desktop.
Apache NuttX RTOS for RISC-V QEMU (64-bit): Build Log. See https://lupyuen.github.io/articles/riscv
This file has been truncated, but you can view the full file.
→ make V=1
grep -v "CONFIG_BASE_DEFCONFIG" "nuttx/.config" > "nuttx/.config.tmp"
if ! cmp -s "nuttx/.config.tmp" "nuttx/.config.orig" ; then \
sed -i.bak "/CONFIG_BASE_DEFCONFIG/s/\"$/-dirty\"/" "nuttx/.config"; \
else \
sed -i.bak "s/-dirty//g" "nuttx/.config"; \
fi
rm -f "nuttx/.config.tmp" "nuttx/.config.bak"
tools/mkconfig nuttx > include/nuttx/config.h.tmp
if [ -f include/nuttx/config.h ]; then if cmp -s include/nuttx/config.h.tmp include/nuttx/config.h; then rm -f include/nuttx/config.h.tmp; else mv include/nuttx/config.h.tmp include/nuttx/config.h; fi else mv include/nuttx/config.h.tmp include/nuttx/config.h; fi
echo "Create version.h"
Create version.h
tools/mkversion nuttx > include/nuttx/version.h
make -C boards/ TOPDIR="nuttx" context
make[1]: Entering directory 'nuttx/boards'
make -C nuttx/arch/risc-v/src/board context
make[2]: Entering directory 'nuttx/boards/risc-v/qemu-rv/rv-virt/src'
make[2]: Nothing to be done for 'context'.
make[2]: Leaving directory 'nuttx/boards/risc-v/qemu-rv/rv-virt/src'
make[1]: Leaving directory 'nuttx/boards'
touch boards/.context
make -C drivers/ TOPDIR="nuttx" context
make[1]: Entering directory 'nuttx/drivers'
make[1]: Nothing to be done for 'context'.
make[1]: Leaving directory 'nuttx/drivers'
touch drivers/.context
make -C fs/ TOPDIR="nuttx" context
make[1]: Entering directory 'nuttx/fs'
make[1]: Nothing to be done for 'context'.
make[1]: Leaving directory 'nuttx/fs'
touch fs/.context
make -C apps/ TOPDIR="nuttx" context
make[1]: Entering directory 'apps'
make context_all
make[2]: Entering directory 'apps'
make -C apps/builtin context APPDIR="apps"
make[3]: Entering directory 'apps/builtin'
make[3]: Nothing to be done for 'context'.
make[3]: Leaving directory 'apps/builtin'
make -C apps/examples/hello context APPDIR="apps"
make[3]: Entering directory 'apps/examples/hello'
make[3]: Nothing to be done for 'context'.
make[3]: Leaving directory 'apps/examples/hello'
make -C apps/nshlib context APPDIR="apps"
make[3]: Entering directory 'apps/nshlib'
make[3]: Nothing to be done for 'context'.
make[3]: Leaving directory 'apps/nshlib'
make -C apps/platform context APPDIR="apps"
make[3]: Entering directory 'apps/platform'
LN: platform/board to apps/platform/dummy
nuttx/tools/link.sh apps/platform/dummy board
make[3]: Leaving directory 'apps/platform'
make -C apps/system/nsh context APPDIR="apps"
make[3]: Entering directory 'apps/system/nsh'
make[3]: Nothing to be done for 'context'.
make[3]: Leaving directory 'apps/system/nsh'
make -C apps/system/readline context APPDIR="apps"
make[3]: Entering directory 'apps/system/readline'
make[3]: Nothing to be done for 'context'.
make[3]: Leaving directory 'apps/system/readline'
make -C apps/testing/ostest context APPDIR="apps"
make[3]: Entering directory 'apps/testing/ostest'
make[3]: Nothing to be done for 'context'.
make[3]: Leaving directory 'apps/testing/ostest'
make[2]: Leaving directory 'apps'
make register_all
make[2]: Entering directory 'apps'
make -C apps/builtin register APPDIR="apps"
make[3]: Entering directory 'apps/builtin'
make[3]: Nothing to be done for 'register'.
make[3]: Leaving directory 'apps/builtin'
make -C apps/examples/hello register APPDIR="apps"
make[3]: Entering directory 'apps/examples/hello'
echo "Register: hello"
Register: hello
echo "{ \"hello\", 100, 2048, }," > "apps/builtin/registry/hello.bdat"
if [ ! -z ]; then echo "int (int argc, char *argv[]);" > "apps/builtin/registry/hello.pdat"; fi;
touch "apps/builtin/registry/.updated"
make[3]: Leaving directory 'apps/examples/hello'
make -C apps/nshlib register APPDIR="apps"
make[3]: Entering directory 'apps/nshlib'
make[3]: Nothing to be done for 'register'.
make[3]: Leaving directory 'apps/nshlib'
make -C apps/platform register APPDIR="apps"
make[3]: Entering directory 'apps/platform'
make[3]: Nothing to be done for 'register'.
make[3]: Leaving directory 'apps/platform'
make -C apps/system/nsh register APPDIR="apps"
make[3]: Entering directory 'apps/system/nsh'
echo "Register: nsh"
Register: nsh
echo "{ \"nsh\", 100, 3072, nsh_main }," > "apps/builtin/registry/nsh.bdat"
if [ ! -z nsh_main ]; then echo "int nsh_main(int argc, char *argv[]);" > "apps/builtin/registry/nsh.pdat"; fi;
touch "apps/builtin/registry/.updated"
echo "Register: sh"
Register: sh
echo "{ \"sh\", 100, 3072, sh_main }," > "apps/builtin/registry/sh.bdat"
if [ ! -z sh_main ]; then echo "int sh_main(int argc, char *argv[]);" > "apps/builtin/registry/sh.pdat"; fi;
touch "apps/builtin/registry/.updated"
make[3]: Leaving directory 'apps/system/nsh'
make -C apps/system/readline register APPDIR="apps"
make[3]: Entering directory 'apps/system/readline'
make[3]: Nothing to be done for 'register'.
make[3]: Leaving directory 'apps/system/readline'
make -C apps/testing/ostest register APPDIR="apps"
make[3]: Entering directory 'apps/testing/ostest'
echo "Register: ostest"
Register: ostest
echo "{ \"ostest\", SCHED_PRIORITY_DEFAULT, 2048, ostest_main }," > "apps/builtin/registry/ostest.bdat"
if [ ! -z ostest_main ]; then echo "int ostest_main(int argc, char *argv[]);" > "apps/builtin/registry/ostest.pdat"; fi;
touch "apps/builtin/registry/.updated"
make[3]: Leaving directory 'apps/testing/ostest'
make[2]: Leaving directory 'apps'
make[1]: Leaving directory 'apps'
touch apps/.context
make -C arch/risc-v/src/ TOPDIR="nuttx" context
make[1]: Entering directory 'nuttx/arch/risc-v/src'
make[1]: Nothing to be done for 'context'.
make[1]: Leaving directory 'nuttx/arch/risc-v/src'
touch arch/risc-v/src/.context
make -C libs/libc/ TOPDIR="nuttx" context
make[1]: Entering directory 'nuttx/libs/libc'
make[1]: Nothing to be done for 'context'.
make[1]: Leaving directory 'nuttx/libs/libc'
touch libs/libc/.context
mkdir -p staging
for dir in apps sched drivers boards arch/risc-v/src fs binfmt libs/libc mm ; do \
make -C $dir EXTRAFLAGS="-D__KERNEL__ " depend || exit; \
done
make[1]: Entering directory 'apps'
make -C apps/builtin depend APPDIR="apps"
make[2]: Entering directory 'apps/builtin'
if [ -z "registry/hello.bdat registry/nsh.bdat registry/ostest.bdat registry/sh.bdat" ]; then echo '' > builtin_list.h; else cat registry/hello.bdat registry/nsh.bdat registry/ostest.bdat registry/sh.bdat > builtin_list.h; fi
if [ -z "registry/nsh.pdat registry/ostest.pdat registry/sh.pdat" ]; then echo '' > builtin_proto.h; else cat registry/nsh.pdat registry/ostest.pdat registry/sh.pdat > builtin_proto.h; fi
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.builtin.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- builtin_list.c exec_builtin.c >Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.builtin.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.builtin.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/builtin'
make -C apps/examples/hello depend APPDIR="apps"
make[2]: Entering directory 'apps/examples/hello'
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.examples.hello.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- hello_main.c >Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.examples.hello.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.examples.hello.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/examples/hello'
make -C apps/nshlib depend APPDIR="apps"
make[2]: Entering directory 'apps/nshlib'
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.nshlib.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- nsh_init.c nsh_parse.c nsh_console.c nsh_script.c nsh_system.c nsh_command.c nsh_fscmds.c nsh_ddcmd.c nsh_proccmds.c nsh_mmcmds.c nsh_timcmds.c nsh_envcmds.c nsh_syscmds.c nsh_dbgcmds.c nsh_session.c nsh_fsutils.c nsh_builtin.c nsh_mntcmds.c nsh_consolemain.c nsh_printf.c nsh_test.c nsh_alias.c >Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.nshlib.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.nshlib.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/nshlib'
make -C apps/platform depend APPDIR="apps"
make[2]: Entering directory 'apps/platform'
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path board --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.platform.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- board/dummy.c >Make.dep
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path board --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.platform.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path board --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.platform.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/platform'
make -C apps/system/nsh depend APPDIR="apps"
make[2]: Entering directory 'apps/system/nsh'
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.system.nsh.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- nsh_main.c sh_main.c >Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.system.nsh.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.system.nsh.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/system/nsh'
make -C apps/system/readline depend APPDIR="apps"
make[2]: Entering directory 'apps/system/readline'
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.system.readline.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- readline.c readline_fd.c readline_common.c >Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.system.readline.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.system.readline.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/system/readline'
make -C apps/testing/ostest depend APPDIR="apps"
make[2]: Entering directory 'apps/testing/ostest'
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .c.private.tmp.nuttx.apps.testing.ostest.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- getopt.c dev_null.c restart.c sigprocmask.c sighand.c signest.c sighelper.c setvbuf.c tls.c waitpid.c cancel.c cond.c mutex.c timedmutex.c sem.c semtimed.c barrier.c timedwait.c pthread_rwlock.c pthread_rwlock_cancel.c specific.c robust.c roundrobin.c mqueue.c timedmqueue.c posixtimer.c vfork.c ostest_main.c >Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .S.private.tmp.nuttx.apps.testing.ostest.o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
nuttx/tools/mkdeps --dep-path . --obj-path . --obj-suffix .cxx.private.tmp.nuttx.apps.testing.ostest.o "riscv64-unknown-elf-g++" -- -fno-common -nostdinc++ -Wall -Wshadow -Wundef -fno-exceptions -fcheck-new -fno-rtti -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include/cxx -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "apps/include" -- >>Make.dep
touch .depend
make[2]: Leaving directory 'apps/testing/ostest'
touch .depend
make[1]: Leaving directory 'apps'
make[1]: Entering directory 'nuttx/sched'
make makedepfile
make[2]: Entering directory 'nuttx/sched'
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_initialize.c > clock_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_settime.c > clock_settime.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_gettime.c > clock_gettime.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_getres.c > clock_getres.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_abstime2ticks.c > clock_abstime2ticks.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_systime_ticks.c > clock_systime_ticks.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock_systime_timespec.c > clock_systime_timespec.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- clock/clock.c > clock.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_getenvironptr.c > env_getenvironptr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_dup.c > env_dup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_release.c > env_release.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_findvar.c > env_findvar.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_removevar.c > env_removevar.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_clearenv.c > env_clearenv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_getenv.c > env_getenv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_putenv.c > env_putenv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_setenv.c > env_setenv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_unsetenv.c > env_unsetenv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- environ/env_foreach.c > env_foreach.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_create.c > group_create.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_join.c > group_join.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_leave.c > group_leave.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_find.c > group_find.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_setupstreams.c > group_setupstreams.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_setupidlefiles.c > group_setupidlefiles.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_setuptaskfiles.c > group_setuptaskfiles.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_foreachchild.c > group_foreachchild.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_killchildren.c > group_killchildren.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_signal.c > group_signal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_argvstr.c > group_argvstr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_waiter.c > group_waiter.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- group/group_exitinfo.c > group_exitinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- init/nx_start.c > nx_start.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- init/nx_bringup.c > nx_bringup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- irq/irq_initialize.c > irq_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- irq/irq_attach.c > irq_attach.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- irq/irq_dispatch.c > irq_dispatch.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- irq/irq_unexpectedisr.c > irq_unexpectedisr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- misc/assert.c > assert.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- misc/panic_notifier.c > panic_notifier.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- misc/reboot_notifier.c > reboot_notifier.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_send.c > mq_send.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_timedsend.c > mq_timedsend.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_sndinternal.c > mq_sndinternal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_receive.c > mq_receive.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_timedreceive.c > mq_timedreceive.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_rcvinternal.c > mq_rcvinternal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_initialize.c > mq_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_msgfree.c > mq_msgfree.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_msgqalloc.c > mq_msgqalloc.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_msgqfree.c > mq_msgqfree.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_recover.c > mq_recover.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_setattr.c > mq_setattr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_waitirq.c > mq_waitirq.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_notify.c > mq_notify.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/mq_getattr.c > mq_getattr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/msgctl.c > msgctl.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/msgget.c > msgget.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/msginternal.c > msginternal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/msgrcv.c > msgrcv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- mqueue/msgsnd.c > msgsnd.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_create.c > pthread_create.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_exit.c > pthread_exit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_join.c > pthread_join.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_detach.c > pthread_detach.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_getschedparam.c > pthread_getschedparam.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_setschedparam.c > pthread_setschedparam.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutexinit.c > pthread_mutexinit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutexdestroy.c > pthread_mutexdestroy.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutextimedlock.c > pthread_mutextimedlock.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutextrylock.c > pthread_mutextrylock.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutexunlock.c > pthread_mutexunlock.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_condwait.c > pthread_condwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_condsignal.c > pthread_condsignal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_condbroadcast.c > pthread_condbroadcast.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_condclockwait.c > pthread_condclockwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_sigmask.c > pthread_sigmask.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_cancel.c > pthread_cancel.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_initialize.c > pthread_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_completejoin.c > pthread_completejoin.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_findjoininfo.c > pthread_findjoininfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_release.c > pthread_release.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_setschedprio.c > pthread_setschedprio.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_barrierwait.c > pthread_barrierwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutex.c > pthread_mutex.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutexconsistent.c > pthread_mutexconsistent.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- pthread/pthread_mutexinconsistent.c > pthread_mutexinconsistent.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_getfiles.c > sched_getfiles.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_addreadytorun.c > sched_addreadytorun.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_removereadytorun.c > sched_removereadytorun.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_addprioritized.c > sched_addprioritized.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_mergeprioritized.c > sched_mergeprioritized.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_mergepending.c > sched_mergepending.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_addblocked.c > sched_addblocked.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_removeblocked.c > sched_removeblocked.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_gettcb.c > sched_gettcb.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_verifytcb.c > sched_verifytcb.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_releasetcb.c > sched_releasetcb.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_setparam.c > sched_setparam.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_setpriority.c > sched_setpriority.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_getparam.c > sched_getparam.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_setscheduler.c > sched_setscheduler.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_getscheduler.c > sched_getscheduler.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_yield.c > sched_yield.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_rrgetinterval.c > sched_rrgetinterval.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_foreach.c > sched_foreach.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_lock.c > sched_lock.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_unlock.c > sched_unlock.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_lockcount.c > sched_lockcount.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_idletask.c > sched_idletask.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_self.c > sched_self.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_get_stackinfo.c > sched_get_stackinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_sysinfo.c > sched_sysinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_reprioritizertr.c > sched_reprioritizertr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_get_stateinfo.c > sched_get_stateinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_waitpid.c > sched_waitpid.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_roundrobin.c > sched_roundrobin.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_resumescheduler.c > sched_resumescheduler.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- sched/sched_processtimer.c > sched_processtimer.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_destroy.c > sem_destroy.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_wait.c > sem_wait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_trywait.c > sem_trywait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_tickwait.c > sem_tickwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_timedwait.c > sem_timedwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_clockwait.c > sem_clockwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_timeout.c > sem_timeout.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_post.c > sem_post.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_recover.c > sem_recover.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_reset.c > sem_reset.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- semaphore/sem_waitirq.c > sem_waitirq.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_initialize.c > sig_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_action.c > sig_action.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_procmask.c > sig_procmask.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_pending.c > sig_pending.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_suspend.c > sig_suspend.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_kill.c > sig_kill.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_tgkill.c > sig_tgkill.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_queue.c > sig_queue.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_waitinfo.c > sig_waitinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_timedwait.c > sig_timedwait.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_findaction.c > sig_findaction.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_allocpendingsigaction.c > sig_allocpendingsigaction.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_releasependingsigaction.c > sig_releasependingsigaction.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_unmaskpendingsignal.c > sig_unmaskpendingsignal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_removependingsignal.c > sig_removependingsignal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_releasependingsignal.c > sig_releasependingsignal.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_lowest.c > sig_lowest.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_notification.c > sig_notification.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_cleanup.c > sig_cleanup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_dispatch.c > sig_dispatch.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_deliver.c > sig_deliver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_pause.c > sig_pause.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_nanosleep.c > sig_nanosleep.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_usleep.c > sig_usleep.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_sleep.c > sig_sleep.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_ppoll.c > sig_ppoll.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- signal/sig_pselect.c > sig_pselect.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_create.c > task_create.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_init.c > task_init.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_setup.c > task_setup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_activate.c > task_activate.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_start.c > task_start.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_delete.c > task_delete.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_exit.c > task_exit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_exithook.c > task_exithook.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_getgroup.c > task_getgroup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_getpid.c > task_getpid.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_prctl.c > task_prctl.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_recover.c > task_recover.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_restart.c > task_restart.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_spawnparms.c > task_spawnparms.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_setcancelstate.c > task_setcancelstate.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_cancelpt.c > task_cancelpt.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_terminate.c > task_terminate.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_gettid.c > task_gettid.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/exit.c > exit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_tls_alloc.c > task_tls_alloc.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_vfork.c > task_vfork.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_spawn.c > task_spawn.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_execve.c > task_execve.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- task/task_posixspawn.c > task_posixspawn.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_initialize.c > timer_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_create.c > timer_create.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_delete.c > timer_delete.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_getoverrun.c > timer_getoverrun.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_getitimer.c > timer_getitimer.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_gettime.c > timer_gettime.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_setitimer.c > timer_setitimer.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_settime.c > timer_settime.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- timer/timer_release.c > timer_release.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- tls/task_initinfo.c > task_initinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- tls/task_uninitinfo.c > task_uninitinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- tls/tls_initinfo.c > tls_initinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- tls/tls_dupinfo.c > tls_dupinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- wdog/wd_initialize.c > wd_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- wdog/wd_start.c > wd_start.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- wdog/wd_cancel.c > wd_cancel.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- wdog/wd_gettime.c > wd_gettime.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path addrenv --dep-path clock --dep-path environ --dep-path group --dep-path init --dep-path irq --dep-path misc --dep-path mqueue --dep-path pthread --dep-path sched --dep-path semaphore --dep-path signal --dep-path task --dep-path timer --dep-path tls --dep-path wdog "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/sched -- wdog/wd_recover.c > wd_recover.ddc
if [ -z "clock_initialize.ddc clock_settime.ddc clock_gettime.ddc clock_getres.ddc clock_abstime2ticks.ddc clock_systime_ticks.ddc clock_systime_timespec.ddc clock.ddc env_getenvironptr.ddc env_dup.ddc env_release.ddc env_findvar.ddc env_removevar.ddc env_clearenv.ddc env_getenv.ddc env_putenv.ddc env_setenv.ddc env_unsetenv.ddc env_foreach.ddc group_create.ddc group_join.ddc group_leave.ddc group_find.ddc group_setupstreams.ddc group_setupidlefiles.ddc group_setuptaskfiles.ddc group_foreachchild.ddc group_killchildren.ddc group_signal.ddc group_argvstr.ddc group_waiter.ddc group_exitinfo.ddc nx_start.ddc nx_bringup.ddc irq_initialize.ddc irq_attach.ddc irq_dispatch.ddc irq_unexpectedisr.ddc assert.ddc panic_notifier.ddc reboot_notifier.ddc mq_send.ddc mq_timedsend.ddc mq_sndinternal.ddc mq_receive.ddc mq_timedreceive.ddc mq_rcvinternal.ddc mq_initialize.ddc mq_msgfree.ddc mq_msgqalloc.ddc mq_msgqfree.ddc mq_recover.ddc mq_setattr.ddc mq_waitirq.ddc mq_notify.ddc mq_getattr.ddc msgctl.ddc msgget.ddc msginternal.ddc msgrcv.ddc msgsnd.ddc pthread_create.ddc pthread_exit.ddc pthread_join.ddc pthread_detach.ddc pthread_getschedparam.ddc pthread_setschedparam.ddc pthread_mutexinit.ddc pthread_mutexdestroy.ddc pthread_mutextimedlock.ddc pthread_mutextrylock.ddc pthread_mutexunlock.ddc pthread_condwait.ddc pthread_condsignal.ddc pthread_condbroadcast.ddc pthread_condclockwait.ddc pthread_sigmask.ddc pthread_cancel.ddc pthread_initialize.ddc pthread_completejoin.ddc pthread_findjoininfo.ddc pthread_release.ddc pthread_setschedprio.ddc pthread_barrierwait.ddc pthread_mutex.ddc pthread_mutexconsistent.ddc pthread_mutexinconsistent.ddc sched_getfiles.ddc sched_addreadytorun.ddc sched_removereadytorun.ddc sched_addprioritized.ddc sched_mergeprioritized.ddc sched_mergepending.ddc sched_addblocked.ddc sched_removeblocked.ddc sched_gettcb.ddc sched_verifytcb.ddc sched_releasetcb.ddc sched_setparam.ddc sched_setpriority.ddc sched_getparam.ddc sched_setscheduler.ddc sched_getscheduler.ddc sched_yield.ddc sched_rrgetinterval.ddc sched_foreach.ddc sched_lock.ddc sched_unlock.ddc sched_lockcount.ddc sched_idletask.ddc sched_self.ddc sched_get_stackinfo.ddc sched_sysinfo.ddc sched_reprioritizertr.ddc sched_get_stateinfo.ddc sched_waitpid.ddc sched_roundrobin.ddc sched_resumescheduler.ddc sched_processtimer.ddc sem_destroy.ddc sem_wait.ddc sem_trywait.ddc sem_tickwait.ddc sem_timedwait.ddc sem_clockwait.ddc sem_timeout.ddc sem_post.ddc sem_recover.ddc sem_reset.ddc sem_waitirq.ddc sig_initialize.ddc sig_action.ddc sig_procmask.ddc sig_pending.ddc sig_suspend.ddc sig_kill.ddc sig_tgkill.ddc sig_queue.ddc sig_waitinfo.ddc sig_timedwait.ddc sig_findaction.ddc sig_allocpendingsigaction.ddc sig_releasependingsigaction.ddc sig_unmaskpendingsignal.ddc sig_removependingsignal.ddc sig_releasependingsignal.ddc sig_lowest.ddc sig_notification.ddc sig_cleanup.ddc sig_dispatch.ddc sig_deliver.ddc sig_pause.ddc sig_nanosleep.ddc sig_usleep.ddc sig_sleep.ddc sig_ppoll.ddc sig_pselect.ddc task_create.ddc task_init.ddc task_setup.ddc task_activate.ddc task_start.ddc task_delete.ddc task_exit.ddc task_exithook.ddc task_getgroup.ddc task_getpid.ddc task_prctl.ddc task_recover.ddc task_restart.ddc task_spawnparms.ddc task_setcancelstate.ddc task_cancelpt.ddc task_terminate.ddc task_gettid.ddc exit.ddc task_tls_alloc.ddc task_vfork.ddc task_spawn.ddc task_execve.ddc task_posixspawn.ddc timer_initialize.ddc timer_create.ddc timer_delete.ddc timer_getoverrun.ddc timer_getitimer.ddc timer_gettime.ddc timer_setitimer.ddc timer_settime.ddc timer_release.ddc task_initinfo.ddc task_uninitinfo.ddc tls_initinfo.ddc tls_dupinfo.ddc wd_initialize.ddc wd_start.ddc wd_cancel.ddc wd_gettime.ddc wd_recover.ddc" ]; then echo '' > Make.dep; else cat clock_initialize.ddc clock_settime.ddc clock_gettime.ddc clock_getres.ddc clock_abstime2ticks.ddc clock_systime_ticks.ddc clock_systime_timespec.ddc clock.ddc env_getenvironptr.ddc env_dup.ddc env_release.ddc env_findvar.ddc env_removevar.ddc env_clearenv.ddc env_getenv.ddc env_putenv.ddc env_setenv.ddc env_unsetenv.ddc env_foreach.ddc group_create.ddc group_join.ddc group_leave.ddc group_find.ddc group_setupstreams.ddc group_setupidlefiles.ddc group_setuptaskfiles.ddc group_foreachchild.ddc group_killchildren.ddc group_signal.ddc group_argvstr.ddc group_waiter.ddc group_exitinfo.ddc nx_start.ddc nx_bringup.ddc irq_initialize.ddc irq_attach.ddc irq_dispatch.ddc irq_unexpectedisr.ddc assert.ddc panic_notifier.ddc reboot_notifier.ddc mq_send.ddc mq_timedsend.ddc mq_sndinternal.ddc mq_receive.ddc mq_timedreceive.ddc mq_rcvinternal.ddc mq_initialize.ddc mq_msgfree.ddc mq_msgqalloc.ddc mq_msgqfree.ddc mq_recover.ddc mq_setattr.ddc mq_waitirq.ddc mq_notify.ddc mq_getattr.ddc msgctl.ddc msgget.ddc msginternal.ddc msgrcv.ddc msgsnd.ddc pthread_create.ddc pthread_exit.ddc pthread_join.ddc pthread_detach.ddc pthread_getschedparam.ddc pthread_setschedparam.ddc pthread_mutexinit.ddc pthread_mutexdestroy.ddc pthread_mutextimedlock.ddc pthread_mutextrylock.ddc pthread_mutexunlock.ddc pthread_condwait.ddc pthread_condsignal.ddc pthread_condbroadcast.ddc pthread_condclockwait.ddc pthread_sigmask.ddc pthread_cancel.ddc pthread_initialize.ddc pthread_completejoin.ddc pthread_findjoininfo.ddc pthread_release.ddc pthread_setschedprio.ddc pthread_barrierwait.ddc pthread_mutex.ddc pthread_mutexconsistent.ddc pthread_mutexinconsistent.ddc sched_getfiles.ddc sched_addreadytorun.ddc sched_removereadytorun.ddc sched_addprioritized.ddc sched_mergeprioritized.ddc sched_mergepending.ddc sched_addblocked.ddc sched_removeblocked.ddc sched_gettcb.ddc sched_verifytcb.ddc sched_releasetcb.ddc sched_setparam.ddc sched_setpriority.ddc sched_getparam.ddc sched_setscheduler.ddc sched_getscheduler.ddc sched_yield.ddc sched_rrgetinterval.ddc sched_foreach.ddc sched_lock.ddc sched_unlock.ddc sched_lockcount.ddc sched_idletask.ddc sched_self.ddc sched_get_stackinfo.ddc sched_sysinfo.ddc sched_reprioritizertr.ddc sched_get_stateinfo.ddc sched_waitpid.ddc sched_roundrobin.ddc sched_resumescheduler.ddc sched_processtimer.ddc sem_destroy.ddc sem_wait.ddc sem_trywait.ddc sem_tickwait.ddc sem_timedwait.ddc sem_clockwait.ddc sem_timeout.ddc sem_post.ddc sem_recover.ddc sem_reset.ddc sem_waitirq.ddc sig_initialize.ddc sig_action.ddc sig_procmask.ddc sig_pending.ddc sig_suspend.ddc sig_kill.ddc sig_tgkill.ddc sig_queue.ddc sig_waitinfo.ddc sig_timedwait.ddc sig_findaction.ddc sig_allocpendingsigaction.ddc sig_releasependingsigaction.ddc sig_unmaskpendingsignal.ddc sig_removependingsignal.ddc sig_releasependingsignal.ddc sig_lowest.ddc sig_notification.ddc sig_cleanup.ddc sig_dispatch.ddc sig_deliver.ddc sig_pause.ddc sig_nanosleep.ddc sig_usleep.ddc sig_sleep.ddc sig_ppoll.ddc sig_pselect.ddc task_create.ddc task_init.ddc task_setup.ddc task_activate.ddc task_start.ddc task_delete.ddc task_exit.ddc task_exithook.ddc task_getgroup.ddc task_getpid.ddc task_prctl.ddc task_recover.ddc task_restart.ddc task_spawnparms.ddc task_setcancelstate.ddc task_cancelpt.ddc task_terminate.ddc task_gettid.ddc exit.ddc task_tls_alloc.ddc task_vfork.ddc task_spawn.ddc task_execve.ddc task_posixspawn.ddc timer_initialize.ddc timer_create.ddc timer_delete.ddc timer_getoverrun.ddc timer_getitimer.ddc timer_gettime.ddc timer_setitimer.ddc timer_settime.ddc timer_release.ddc task_initinfo.ddc task_uninitinfo.ddc tls_initinfo.ddc tls_dupinfo.ddc wd_initialize.ddc wd_start.ddc wd_cancel.ddc wd_gettime.ddc wd_recover.ddc > Make.dep; fi
rm -f clock_initialize.ddc clock_settime.ddc clock_gettime.ddc clock_getres.ddc clock_abstime2ticks.ddc clock_systime_ticks.ddc clock_systime_timespec.ddc clock.ddc env_getenvironptr.ddc env_dup.ddc env_release.ddc env_findvar.ddc env_removevar.ddc env_clearenv.ddc env_getenv.ddc env_putenv.ddc env_setenv.ddc env_unsetenv.ddc env_foreach.ddc group_create.ddc group_join.ddc group_leave.ddc group_find.ddc group_setupstreams.ddc group_setupidlefiles.ddc group_setuptaskfiles.ddc group_foreachchild.ddc group_killchildren.ddc group_signal.ddc group_argvstr.ddc group_waiter.ddc group_exitinfo.ddc nx_start.ddc nx_bringup.ddc irq_initialize.ddc irq_attach.ddc irq_dispatch.ddc irq_unexpectedisr.ddc assert.ddc panic_notifier.ddc reboot_notifier.ddc mq_send.ddc mq_timedsend.ddc mq_sndinternal.ddc mq_receive.ddc mq_timedreceive.ddc mq_rcvinternal.ddc mq_initialize.ddc mq_msgfree.ddc mq_msgqalloc.ddc mq_msgqfree.ddc mq_recover.ddc mq_setattr.ddc mq_waitirq.ddc mq_notify.ddc mq_getattr.ddc msgctl.ddc msgget.ddc msginternal.ddc msgrcv.ddc msgsnd.ddc pthread_create.ddc pthread_exit.ddc pthread_join.ddc pthread_detach.ddc pthread_getschedparam.ddc pthread_setschedparam.ddc pthread_mutexinit.ddc pthread_mutexdestroy.ddc pthread_mutextimedlock.ddc pthread_mutextrylock.ddc pthread_mutexunlock.ddc pthread_condwait.ddc pthread_condsignal.ddc pthread_condbroadcast.ddc pthread_condclockwait.ddc pthread_sigmask.ddc pthread_cancel.ddc pthread_initialize.ddc pthread_completejoin.ddc pthread_findjoininfo.ddc pthread_release.ddc pthread_setschedprio.ddc pthread_barrierwait.ddc pthread_mutex.ddc pthread_mutexconsistent.ddc pthread_mutexinconsistent.ddc sched_getfiles.ddc sched_addreadytorun.ddc sched_removereadytorun.ddc sched_addprioritized.ddc sched_mergeprioritized.ddc sched_mergepending.ddc sched_addblocked.ddc sched_removeblocked.ddc sched_gettcb.ddc sched_verifytcb.ddc sched_releasetcb.ddc sched_setparam.ddc sched_setpriority.ddc sched_getparam.ddc sched_setscheduler.ddc sched_getscheduler.ddc sched_yield.ddc sched_rrgetinterval.ddc sched_foreach.ddc sched_lock.ddc sched_unlock.ddc sched_lockcount.ddc sched_idletask.ddc sched_self.ddc sched_get_stackinfo.ddc sched_sysinfo.ddc sched_reprioritizertr.ddc sched_get_stateinfo.ddc sched_waitpid.ddc sched_roundrobin.ddc sched_resumescheduler.ddc sched_processtimer.ddc sem_destroy.ddc sem_wait.ddc sem_trywait.ddc sem_tickwait.ddc sem_timedwait.ddc sem_clockwait.ddc sem_timeout.ddc sem_post.ddc sem_recover.ddc sem_reset.ddc sem_waitirq.ddc sig_initialize.ddc sig_action.ddc sig_procmask.ddc sig_pending.ddc sig_suspend.ddc sig_kill.ddc sig_tgkill.ddc sig_queue.ddc sig_waitinfo.ddc sig_timedwait.ddc sig_findaction.ddc sig_allocpendingsigaction.ddc sig_releasependingsigaction.ddc sig_unmaskpendingsignal.ddc sig_removependingsignal.ddc sig_releasependingsignal.ddc sig_lowest.ddc sig_notification.ddc sig_cleanup.ddc sig_dispatch.ddc sig_deliver.ddc sig_pause.ddc sig_nanosleep.ddc sig_usleep.ddc sig_sleep.ddc sig_ppoll.ddc sig_pselect.ddc task_create.ddc task_init.ddc task_setup.ddc task_activate.ddc task_start.ddc task_delete.ddc task_exit.ddc task_exithook.ddc task_getgroup.ddc task_getpid.ddc task_prctl.ddc task_recover.ddc task_restart.ddc task_spawnparms.ddc task_setcancelstate.ddc task_cancelpt.ddc task_terminate.ddc task_gettid.ddc exit.ddc task_tls_alloc.ddc task_vfork.ddc task_spawn.ddc task_execve.ddc task_posixspawn.ddc timer_initialize.ddc timer_create.ddc timer_delete.ddc timer_getoverrun.ddc timer_getitimer.ddc timer_gettime.ddc timer_setitimer.ddc timer_settime.ddc timer_release.ddc task_initinfo.ddc task_uninitinfo.ddc tls_initinfo.ddc tls_dupinfo.ddc wd_initialize.ddc wd_start.ddc wd_cancel.ddc wd_gettime.ddc wd_recover.ddc
make[2]: Leaving directory 'nuttx/sched'
touch .depend
make[1]: Leaving directory 'nuttx/sched'
make[1]: Entering directory 'nuttx/drivers'
make makedepfile
make[2]: Entering directory 'nuttx/drivers'
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- drivers_initialize.c > drivers_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchlib_setup.c > bchlib_setup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchlib_teardown.c > bchlib_teardown.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchlib_read.c > bchlib_read.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchlib_write.c > bchlib_write.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchlib_cache.c > bchlib_cache.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchdev_register.c > bchdev_register.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchdev_unregister.c > bchdev_unregister.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- bch/bchdev_driver.c > bchdev_driver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- loop/losetup.c > losetup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- misc/dev_null.c > dev_null.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- misc/dev_zero.c > dev_zero.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- misc/ramdisk.c > ramdisk.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- misc/mkrd.c > mkrd.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- pipes/pipe.c > pipe.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- pipes/fifo.c > fifo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- pipes/pipe_common.c > pipe_common.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- serial/serial.c > serial.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- serial/serial_io.c > serial_io.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- serial/uart_16550.c > uart_16550.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/vsyslog.c > vsyslog.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_channel.c > syslog_channel.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_putc.c > syslog_putc.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_write.c > syslog_write.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_force.c > syslog_force.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_flush.c > syslog_flush.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_initialize.c > syslog_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- syslog/syslog_device.c > syslog_device.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- timers/oneshot.c > oneshot.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path bch --dep-path crypto --dep-path math --dep-path motor --dep-path loop --dep-path misc --dep-path note --dep-path pipes --dep-path power/battery --dep-path power/supply --dep-path power/relay --dep-path serial --dep-path syslog --dep-path timers --dep-path usbhost --dep-path virtio "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/drivers/bch -I nuttx/drivers/crypto -I nuttx/drivers/motor -I nuttx/drivers/loop -I nuttx/sched -I nuttx/drivers/usbhost -- timers/arch_alarm.c > arch_alarm.ddc
if [ -z "drivers_initialize.ddc bchlib_setup.ddc bchlib_teardown.ddc bchlib_read.ddc bchlib_write.ddc bchlib_cache.ddc bchdev_register.ddc bchdev_unregister.ddc bchdev_driver.ddc losetup.ddc dev_null.ddc dev_zero.ddc ramdisk.ddc mkrd.ddc pipe.ddc fifo.ddc pipe_common.ddc serial.ddc serial_io.ddc uart_16550.ddc vsyslog.ddc syslog_channel.ddc syslog_putc.ddc syslog_write.ddc syslog_force.ddc syslog_flush.ddc syslog_initialize.ddc syslog_device.ddc oneshot.ddc arch_alarm.ddc" ]; then echo '' > Make.dep; else cat drivers_initialize.ddc bchlib_setup.ddc bchlib_teardown.ddc bchlib_read.ddc bchlib_write.ddc bchlib_cache.ddc bchdev_register.ddc bchdev_unregister.ddc bchdev_driver.ddc losetup.ddc dev_null.ddc dev_zero.ddc ramdisk.ddc mkrd.ddc pipe.ddc fifo.ddc pipe_common.ddc serial.ddc serial_io.ddc uart_16550.ddc vsyslog.ddc syslog_channel.ddc syslog_putc.ddc syslog_write.ddc syslog_force.ddc syslog_flush.ddc syslog_initialize.ddc syslog_device.ddc oneshot.ddc arch_alarm.ddc > Make.dep; fi
rm -f drivers_initialize.ddc bchlib_setup.ddc bchlib_teardown.ddc bchlib_read.ddc bchlib_write.ddc bchlib_cache.ddc bchdev_register.ddc bchdev_unregister.ddc bchdev_driver.ddc losetup.ddc dev_null.ddc dev_zero.ddc ramdisk.ddc mkrd.ddc pipe.ddc fifo.ddc pipe_common.ddc serial.ddc serial_io.ddc uart_16550.ddc vsyslog.ddc syslog_channel.ddc syslog_putc.ddc syslog_write.ddc syslog_force.ddc syslog_flush.ddc syslog_initialize.ddc syslog_device.ddc oneshot.ddc arch_alarm.ddc
make[2]: Leaving directory 'nuttx/drivers'
touch .depend
make[1]: Leaving directory 'nuttx/drivers'
make[1]: Entering directory 'nuttx/boards'
make makedepfile
make[2]: Entering directory 'nuttx/boards'
nuttx/tools/mkdeps --obj-path . --obj-suffix .o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- dummy.c > dummy.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- boardctl.c > boardctl.ddc
if [ -z "dummy.ddc boardctl.ddc" ]; then echo '' > Make.dep; else cat dummy.ddc boardctl.ddc > Make.dep; fi
rm -f dummy.ddc boardctl.ddc
make[2]: Leaving directory 'nuttx/boards'
touch .depend
make[1]: Leaving directory 'nuttx/boards'
make[1]: Entering directory 'nuttx/arch/risc-v/src'
make -C board depend
make[2]: Entering directory 'nuttx/boards/risc-v/qemu-rv/rv-virt/src'
mkdir -p etctmp/etc/init.d/
CPP: etc/init.d/rc.sysinit-> etctmp/etc/init.d/rc.sysinit
riscv64-unknown-elf-gcc -E -P -x c -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ etc/init.d/rc.sysinit -o etctmp/etc/init.d/rc.sysinit
mkdir -p etctmp/etc/init.d/
CPP: etc/init.d/rcS-> etctmp/etc/init.d/rcS
riscv64-unknown-elf-gcc -E -P -x c -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ etc/init.d/rcS -o etctmp/etc/init.d/rcS
genromfs -f romfs.img -d etctmp/ -V "NSHInitVol"
echo "#include <nuttx/compiler.h>" > etctmp.c
xxd -i romfs.img | sed -e "s/^unsigned char/const unsigned char aligned_data(4)/g" >> etctmp.c
rm romfs.img
nuttx/tools/mkdeps riscv64-unknown-elf-gcc -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I "nuttx/sched" -I "nuttx/arch/risc-v/src/chip" -I "nuttx/arch/risc-v/src/common" -I "nuttx/arch/risc-v/src/rv64" -- qemu_rv_appinit.c etctmp.c >Make.dep
nuttx/tools/mkdeps "riscv64-unknown-elf-gcc -E -P -x c" --obj-path . -- -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -- etc/init.d/rc.sysinit etc/init.d/rcS >>Make.dep
touch .depend
make[2]: Leaving directory 'nuttx/boards/risc-v/qemu-rv/rv-virt/src'
make makedepfile DEPPATH="--dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv"
make[2]: Entering directory 'nuttx/arch/risc-v/src'
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- chip/qemu_rv_start.c > qemu_rv_start.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- chip/qemu_rv_irq_dispatch.c > qemu_rv_irq_dispatch.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- chip/qemu_rv_irq.c > qemu_rv_irq.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- chip/qemu_rv_timerisr.c > qemu_rv_timerisr.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- chip/qemu_rv_allocateheap.c > qemu_rv_allocateheap.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_initialize.c > riscv_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_swint.c > riscv_swint.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_mtimer.c > riscv_mtimer.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_allocateheap.c > riscv_allocateheap.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_createstack.c > riscv_createstack.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_cpuinfo.c > riscv_cpuinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_cpuidlestack.c > riscv_cpuidlestack.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_doirq.c > riscv_doirq.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_exit.c > riscv_exit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_exception.c > riscv_exception.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_getnewintctx.c > riscv_getnewintctx.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_getintstack.c > riscv_getintstack.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_initialstate.c > riscv_initialstate.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_idle.c > riscv_idle.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_modifyreg32.c > riscv_modifyreg32.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_nputs.c > riscv_nputs.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_releasestack.c > riscv_releasestack.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_registerdump.c > riscv_registerdump.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_stackframe.c > riscv_stackframe.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_schedulesigaction.c > riscv_schedulesigaction.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_sigdeliver.c > riscv_sigdeliver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_switchcontext.c > riscv_switchcontext.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_usestack.c > riscv_usestack.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_tcbinfo.c > riscv_tcbinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_checkstack.c > riscv_checkstack.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_vfork.c > riscv_vfork.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_hostfs.c > riscv_hostfs.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_vectors.S > riscv_vectors.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_exception_common.S > riscv_exception_common.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_mhartid.S > riscv_mhartid.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_saveusercontext.S > riscv_saveusercontext.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/vfork.S > vfork.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_testset.S > riscv_testset.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- common/riscv_semihost.S > riscv_semihost.dds
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path chip --dep-path common --dep-path nuttx/arch/risc-v/src/qemu-rv "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/arch/risc-v/src/chip -I nuttx/arch/risc-v/src/common -I nuttx/sched -- chip/qemu_rv_head.S > qemu_rv_head.dds
if [ -z "qemu_rv_start.ddc qemu_rv_irq_dispatch.ddc qemu_rv_irq.ddc qemu_rv_timerisr.ddc qemu_rv_allocateheap.ddc riscv_initialize.ddc riscv_swint.ddc riscv_mtimer.ddc riscv_allocateheap.ddc riscv_createstack.ddc riscv_cpuinfo.ddc riscv_cpuidlestack.ddc riscv_doirq.ddc riscv_exit.ddc riscv_exception.ddc riscv_getnewintctx.ddc riscv_getintstack.ddc riscv_initialstate.ddc riscv_idle.ddc riscv_modifyreg32.ddc riscv_nputs.ddc riscv_releasestack.ddc riscv_registerdump.ddc riscv_stackframe.ddc riscv_schedulesigaction.ddc riscv_sigdeliver.ddc riscv_switchcontext.ddc riscv_usestack.ddc riscv_tcbinfo.ddc riscv_checkstack.ddc riscv_vfork.ddc riscv_hostfs.ddc riscv_vectors.dds riscv_exception_common.dds riscv_mhartid.dds riscv_saveusercontext.dds vfork.dds riscv_testset.dds riscv_semihost.dds qemu_rv_head.dds" ]; then echo '' > Make.dep; else cat qemu_rv_start.ddc qemu_rv_irq_dispatch.ddc qemu_rv_irq.ddc qemu_rv_timerisr.ddc qemu_rv_allocateheap.ddc riscv_initialize.ddc riscv_swint.ddc riscv_mtimer.ddc riscv_allocateheap.ddc riscv_createstack.ddc riscv_cpuinfo.ddc riscv_cpuidlestack.ddc riscv_doirq.ddc riscv_exit.ddc riscv_exception.ddc riscv_getnewintctx.ddc riscv_getintstack.ddc riscv_initialstate.ddc riscv_idle.ddc riscv_modifyreg32.ddc riscv_nputs.ddc riscv_releasestack.ddc riscv_registerdump.ddc riscv_stackframe.ddc riscv_schedulesigaction.ddc riscv_sigdeliver.ddc riscv_switchcontext.ddc riscv_usestack.ddc riscv_tcbinfo.ddc riscv_checkstack.ddc riscv_vfork.ddc riscv_hostfs.ddc riscv_vectors.dds riscv_exception_common.dds riscv_mhartid.dds riscv_saveusercontext.dds vfork.dds riscv_testset.dds riscv_semihost.dds qemu_rv_head.dds > Make.dep; fi
rm -f qemu_rv_start.ddc qemu_rv_irq_dispatch.ddc qemu_rv_irq.ddc qemu_rv_timerisr.ddc qemu_rv_allocateheap.ddc riscv_initialize.ddc riscv_swint.ddc riscv_mtimer.ddc riscv_allocateheap.ddc riscv_createstack.ddc riscv_cpuinfo.ddc riscv_cpuidlestack.ddc riscv_doirq.ddc riscv_exit.ddc riscv_exception.ddc riscv_getnewintctx.ddc riscv_getintstack.ddc riscv_initialstate.ddc riscv_idle.ddc riscv_modifyreg32.ddc riscv_nputs.ddc riscv_releasestack.ddc riscv_registerdump.ddc riscv_stackframe.ddc riscv_schedulesigaction.ddc riscv_sigdeliver.ddc riscv_switchcontext.ddc riscv_usestack.ddc riscv_tcbinfo.ddc riscv_checkstack.ddc riscv_vfork.ddc riscv_hostfs.ddc riscv_vectors.dds riscv_exception_common.dds riscv_mhartid.dds riscv_saveusercontext.dds vfork.dds riscv_testset.dds riscv_semihost.dds qemu_rv_head.dds
make[2]: Leaving directory 'nuttx/arch/risc-v/src'
touch .depend
make[1]: Leaving directory 'nuttx/arch/risc-v/src'
make[1]: Entering directory 'nuttx/fs'
make makedepfile
make[2]: Entering directory 'nuttx/fs'
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- fs_initialize.c > fs_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_files.c > fs_files.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_foreachinode.c > fs_foreachinode.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inode.c > fs_inode.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodeaddref.c > fs_inodeaddref.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodebasename.c > fs_inodebasename.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodefind.c > fs_inodefind.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodefree.c > fs_inodefree.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodegetpath.c > fs_inodegetpath.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inoderelease.c > fs_inoderelease.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inoderemove.c > fs_inoderemove.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodereserve.c > fs_inodereserve.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- inode/fs_inodesearch.c > fs_inodesearch.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_chstat.c > fs_chstat.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_close.c > fs_close.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_dup.c > fs_dup.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_dup2.c > fs_dup2.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_fcntl.c > fs_fcntl.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_epoll.c > fs_epoll.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_fchstat.c > fs_fchstat.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_fstat.c > fs_fstat.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_fstatfs.c > fs_fstatfs.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_ioctl.c > fs_ioctl.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_lseek.c > fs_lseek.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_mkdir.c > fs_mkdir.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_open.c > fs_open.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_poll.c > fs_poll.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_pread.c > fs_pread.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_pwrite.c > fs_pwrite.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_read.c > fs_read.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_rename.c > fs_rename.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_rmdir.c > fs_rmdir.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_select.c > fs_select.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_sendfile.c > fs_sendfile.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_stat.c > fs_stat.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_statfs.c > fs_statfs.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_unlink.c > fs_unlink.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_write.c > fs_write.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_dir.c > fs_dir.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_fsync.c > fs_fsync.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_truncate.c > fs_truncate.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_link.c > fs_link.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_symlink.c > fs_symlink.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_readlink.c > fs_readlink.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- vfs/fs_fdopen.c > fs_fdopen.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_registerdriver.c > fs_registerdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_unregisterdriver.c > fs_unregisterdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_registerblockdriver.c > fs_registerblockdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_unregisterblockdriver.c > fs_unregisterblockdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_findblockdriver.c > fs_findblockdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_openblockdriver.c > fs_openblockdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_closeblockdriver.c > fs_closeblockdriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_blockpartition.c > fs_blockpartition.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_findmtddriver.c > fs_findmtddriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_closemtddriver.c > fs_closemtddriver.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- driver/fs_blockproxy.c > fs_blockproxy.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mmap/fs_mmap.c > fs_mmap.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mmap/fs_munmap.c > fs_munmap.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mmap/fs_mmisc.c > fs_mmisc.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mmap/fs_anonmap.c > fs_anonmap.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mqueue/mq_open.c > mq_open.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mqueue/mq_close.c > mq_close.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mqueue/mq_unlink.c > mq_unlink.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mount/fs_mount.c > fs_mount.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mount/fs_umount2.c > fs_umount2.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mount/fs_foreachmountpoint.c > fs_foreachmountpoint.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mount/fs_procfs_mount.c > fs_procfs_mount.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- mount/fs_gettype.c > fs_gettype.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- partition/fs_partition.c > fs_partition.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfs.c > fs_procfs.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfscpuinfo.c > fs_procfscpuinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfscpuload.c > fs_procfscpuload.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfscritmon.c > fs_procfscritmon.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfsiobinfo.c > fs_procfsiobinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfsmeminfo.c > fs_procfsmeminfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfsproc.c > fs_procfsproc.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfstcbinfo.c > fs_procfstcbinfo.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfsuptime.c > fs_procfsuptime.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfsutil.c > fs_procfsutil.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- procfs/fs_procfsversion.c > fs_procfsversion.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path inode --dep-path vfs --dep-path driver --dep-path mmap --dep-path mqueue --dep-path mount --dep-path partition --dep-path procfs --dep-path hostfs --dep-path rpmsgfs "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/fs -I nuttx/sched -- hostfs/hostfs.c > hostfs.ddc
if [ -z "fs_initialize.ddc fs_files.ddc fs_foreachinode.ddc fs_inode.ddc fs_inodeaddref.ddc fs_inodebasename.ddc fs_inodefind.ddc fs_inodefree.ddc fs_inodegetpath.ddc fs_inoderelease.ddc fs_inoderemove.ddc fs_inodereserve.ddc fs_inodesearch.ddc fs_chstat.ddc fs_close.ddc fs_dup.ddc fs_dup2.ddc fs_fcntl.ddc fs_epoll.ddc fs_fchstat.ddc fs_fstat.ddc fs_fstatfs.ddc fs_ioctl.ddc fs_lseek.ddc fs_mkdir.ddc fs_open.ddc fs_poll.ddc fs_pread.ddc fs_pwrite.ddc fs_read.ddc fs_rename.ddc fs_rmdir.ddc fs_select.ddc fs_sendfile.ddc fs_stat.ddc fs_statfs.ddc fs_unlink.ddc fs_write.ddc fs_dir.ddc fs_fsync.ddc fs_truncate.ddc fs_link.ddc fs_symlink.ddc fs_readlink.ddc fs_fdopen.ddc fs_registerdriver.ddc fs_unregisterdriver.ddc fs_registerblockdriver.ddc fs_unregisterblockdriver.ddc fs_findblockdriver.ddc fs_openblockdriver.ddc fs_closeblockdriver.ddc fs_blockpartition.ddc fs_findmtddriver.ddc fs_closemtddriver.ddc fs_blockproxy.ddc fs_mmap.ddc fs_munmap.ddc fs_mmisc.ddc fs_anonmap.ddc mq_open.ddc mq_close.ddc mq_unlink.ddc fs_mount.ddc fs_umount2.ddc fs_foreachmountpoint.ddc fs_procfs_mount.ddc fs_gettype.ddc fs_partition.ddc fs_procfs.ddc fs_procfscpuinfo.ddc fs_procfscpuload.ddc fs_procfscritmon.ddc fs_procfsiobinfo.ddc fs_procfsmeminfo.ddc fs_procfsproc.ddc fs_procfstcbinfo.ddc fs_procfsuptime.ddc fs_procfsutil.ddc fs_procfsversion.ddc hostfs.ddc" ]; then echo '' > Make.dep; else cat fs_initialize.ddc fs_files.ddc fs_foreachinode.ddc fs_inode.ddc fs_inodeaddref.ddc fs_inodebasename.ddc fs_inodefind.ddc fs_inodefree.ddc fs_inodegetpath.ddc fs_inoderelease.ddc fs_inoderemove.ddc fs_inodereserve.ddc fs_inodesearch.ddc fs_chstat.ddc fs_close.ddc fs_dup.ddc fs_dup2.ddc fs_fcntl.ddc fs_epoll.ddc fs_fchstat.ddc fs_fstat.ddc fs_fstatfs.ddc fs_ioctl.ddc fs_lseek.ddc fs_mkdir.ddc fs_open.ddc fs_poll.ddc fs_pread.ddc fs_pwrite.ddc fs_read.ddc fs_rename.ddc fs_rmdir.ddc fs_select.ddc fs_sendfile.ddc fs_stat.ddc fs_statfs.ddc fs_unlink.ddc fs_write.ddc fs_dir.ddc fs_fsync.ddc fs_truncate.ddc fs_link.ddc fs_symlink.ddc fs_readlink.ddc fs_fdopen.ddc fs_registerdriver.ddc fs_unregisterdriver.ddc fs_registerblockdriver.ddc fs_unregisterblockdriver.ddc fs_findblockdriver.ddc fs_openblockdriver.ddc fs_closeblockdriver.ddc fs_blockpartition.ddc fs_findmtddriver.ddc fs_closemtddriver.ddc fs_blockproxy.ddc fs_mmap.ddc fs_munmap.ddc fs_mmisc.ddc fs_anonmap.ddc mq_open.ddc mq_close.ddc mq_unlink.ddc fs_mount.ddc fs_umount2.ddc fs_foreachmountpoint.ddc fs_procfs_mount.ddc fs_gettype.ddc fs_partition.ddc fs_procfs.ddc fs_procfscpuinfo.ddc fs_procfscpuload.ddc fs_procfscritmon.ddc fs_procfsiobinfo.ddc fs_procfsmeminfo.ddc fs_procfsproc.ddc fs_procfstcbinfo.ddc fs_procfsuptime.ddc fs_procfsutil.ddc fs_procfsversion.ddc hostfs.ddc > Make.dep; fi
rm -f fs_initialize.ddc fs_files.ddc fs_foreachinode.ddc fs_inode.ddc fs_inodeaddref.ddc fs_inodebasename.ddc fs_inodefind.ddc fs_inodefree.ddc fs_inodegetpath.ddc fs_inoderelease.ddc fs_inoderemove.ddc fs_inodereserve.ddc fs_inodesearch.ddc fs_chstat.ddc fs_close.ddc fs_dup.ddc fs_dup2.ddc fs_fcntl.ddc fs_epoll.ddc fs_fchstat.ddc fs_fstat.ddc fs_fstatfs.ddc fs_ioctl.ddc fs_lseek.ddc fs_mkdir.ddc fs_open.ddc fs_poll.ddc fs_pread.ddc fs_pwrite.ddc fs_read.ddc fs_rename.ddc fs_rmdir.ddc fs_select.ddc fs_sendfile.ddc fs_stat.ddc fs_statfs.ddc fs_unlink.ddc fs_write.ddc fs_dir.ddc fs_fsync.ddc fs_truncate.ddc fs_link.ddc fs_symlink.ddc fs_readlink.ddc fs_fdopen.ddc fs_registerdriver.ddc fs_unregisterdriver.ddc fs_registerblockdriver.ddc fs_unregisterblockdriver.ddc fs_findblockdriver.ddc fs_openblockdriver.ddc fs_closeblockdriver.ddc fs_blockpartition.ddc fs_findmtddriver.ddc fs_closemtddriver.ddc fs_blockproxy.ddc fs_mmap.ddc fs_munmap.ddc fs_mmisc.ddc fs_anonmap.ddc mq_open.ddc mq_close.ddc mq_unlink.ddc fs_mount.ddc fs_umount2.ddc fs_foreachmountpoint.ddc fs_procfs_mount.ddc fs_gettype.ddc fs_partition.ddc fs_procfs.ddc fs_procfscpuinfo.ddc fs_procfscpuload.ddc fs_procfscritmon.ddc fs_procfsiobinfo.ddc fs_procfsmeminfo.ddc fs_procfsproc.ddc fs_procfstcbinfo.ddc fs_procfsuptime.ddc fs_procfsutil.ddc fs_procfsversion.ddc hostfs.ddc
make[2]: Leaving directory 'nuttx/fs'
touch .depend
make[1]: Leaving directory 'nuttx/fs'
make[1]: Entering directory 'nuttx/binfmt'
make makedepfile
make[2]: Entering directory 'nuttx/binfmt'
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_globals.c > binfmt_globals.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_initialize.c > binfmt_initialize.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_register.c > binfmt_register.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_unregister.c > binfmt_unregister.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_loadmodule.c > binfmt_loadmodule.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_unloadmodule.c > binfmt_unloadmodule.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_execmodule.c > binfmt_execmodule.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_exec.c > binfmt_exec.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_copyargv.c > binfmt_copyargv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_dumpmodule.c > binfmt_dumpmodule.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_coredump.c > binfmt_coredump.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_exit.c > binfmt_exit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- binfmt_execsymtab.c > binfmt_execsymtab.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- builtin.c > builtin.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- elf.c > elf.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_bind.c > libelf_bind.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_init.c > libelf_init.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_addrenv.c > libelf_addrenv.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_iobuffer.c > libelf_iobuffer.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_load.c > libelf_load.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_read.c > libelf_read.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_sections.c > libelf_sections.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_symbols.c > libelf_symbols.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_uninit.c > libelf_uninit.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_unload.c > libelf_unload.ddc
nuttx/tools/mkdeps --obj-path . --obj-suffix .o --dep-path libelf "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -- libelf/libelf_verify.c > libelf_verify.ddc
if [ -z "binfmt_globals.ddc binfmt_initialize.ddc binfmt_register.ddc binfmt_unregister.ddc binfmt_loadmodule.ddc binfmt_unloadmodule.ddc binfmt_execmodule.ddc binfmt_exec.ddc binfmt_copyargv.ddc binfmt_dumpmodule.ddc binfmt_coredump.ddc binfmt_exit.ddc binfmt_execsymtab.ddc builtin.ddc elf.ddc libelf_bind.ddc libelf_init.ddc libelf_addrenv.ddc libelf_iobuffer.ddc libelf_load.ddc libelf_read.ddc libelf_sections.ddc libelf_symbols.ddc libelf_uninit.ddc libelf_unload.ddc libelf_verify.ddc" ]; then echo '' > Make.dep; else cat binfmt_globals.ddc binfmt_initialize.ddc binfmt_register.ddc binfmt_unregister.ddc binfmt_loadmodule.ddc binfmt_unloadmodule.ddc binfmt_execmodule.ddc binfmt_exec.ddc binfmt_copyargv.ddc binfmt_dumpmodule.ddc binfmt_coredump.ddc binfmt_exit.ddc binfmt_execsymtab.ddc builtin.ddc elf.ddc libelf_bind.ddc libelf_init.ddc libelf_addrenv.ddc libelf_iobuffer.ddc libelf_load.ddc libelf_read.ddc libelf_sections.ddc libelf_symbols.ddc libelf_uninit.ddc libelf_unload.ddc libelf_verify.ddc > Make.dep; fi
rm -f binfmt_globals.ddc binfmt_initialize.ddc binfmt_register.ddc binfmt_unregister.ddc binfmt_loadmodule.ddc binfmt_unloadmodule.ddc binfmt_execmodule.ddc binfmt_exec.ddc binfmt_copyargv.ddc binfmt_dumpmodule.ddc binfmt_coredump.ddc binfmt_exit.ddc binfmt_execsymtab.ddc builtin.ddc elf.ddc libelf_bind.ddc libelf_init.ddc libelf_addrenv.ddc libelf_iobuffer.ddc libelf_load.ddc libelf_read.ddc libelf_sections.ddc libelf_symbols.ddc libelf_uninit.ddc libelf_unload.ddc libelf_verify.ddc
make[2]: Leaving directory 'nuttx/binfmt'
touch .depend
make[1]: Leaving directory 'nuttx/binfmt'
make[1]: Entering directory 'nuttx/libs/libc'
make makedepfile OBJPATH="bin"
make[2]: Entering directory 'nuttx/libs/libc'
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- assert/lib_assert.c > lib_assert.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- builtin/lib_builtin_getname.c > lib_builtin_getname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- builtin/lib_builtin_isavail.c > lib_builtin_isavail.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- builtin/lib_builtin_forindex.c > lib_builtin_forindex.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isalnum.c > lib_isalnum.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isalpha.c > lib_isalpha.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isascii.c > lib_isascii.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isblank.c > lib_isblank.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_iscntrl.c > lib_iscntrl.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isdigit.c > lib_isdigit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isgraph.c > lib_isgraph.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_islower.c > lib_islower.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isprint.c > lib_isprint.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_ispunct.c > lib_ispunct.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isspace.c > lib_isspace.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isupper.c > lib_isupper.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_isxdigit.c > lib_isxdigit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_tolower.c > lib_tolower.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- ctype/lib_toupper.c > lib_toupper.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_readdirr.c > lib_readdirr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_telldir.c > lib_telldir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_alphasort.c > lib_alphasort.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_scandir.c > lib_scandir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_ftw.c > lib_ftw.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_nftw.c > lib_nftw.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_opendir.c > lib_opendir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_fdopendir.c > lib_fdopendir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_closedir.c > lib_closedir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_readdir.c > lib_readdir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_rewinddir.c > lib_rewinddir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_seekdir.c > lib_seekdir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_dirfd.c > lib_dirfd.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- dirent/lib_versionsort.c > lib_versionsort.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- errno/lib_errno.c > lib_errno.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- fixedmath/lib_fixedmath.c > lib_fixedmath.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- fixedmath/lib_b16sin.c > lib_b16sin.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- fixedmath/lib_b16cos.c > lib_b16cos.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- fixedmath/lib_b16atan2.c > lib_b16atan2.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- fixedmath/lib_ubsqrt.c > lib_ubsqrt.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_getgrgid.c > lib_getgrgid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_getgrgidr.c > lib_getgrgidr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_getgrnam.c > lib_getgrnam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_getgrnamr.c > lib_getgrnamr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_initgroups.c > lib_initgroups.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_getgrbuf.c > lib_getgrbuf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- grp/lib_getgrbufr.c > lib_getgrbufr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- inttypes/lib_imaxabs.c > lib_imaxabs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- inttypes/lib_strtoimax.c > lib_strtoimax.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- inttypes/lib_strtoumax.c > lib_strtoumax.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- libgen/lib_basename.c > lib_basename.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- libgen/lib_dirname.c > lib_dirname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- machine/risc-v/arch_elf.c > arch_elf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_mknod.c > lib_mknod.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_umask.c > lib_umask.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_utsname.c > lib_utsname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_getrandom.c > lib_getrandom.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_xorshift128.c > lib_xorshift128.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_tea_encrypt.c > lib_tea_encrypt.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_tea_decrypt.c > lib_tea_decrypt.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_cxx_initialize.c > lib_cxx_initialize.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_impure.c > lib_impure.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_memfd.c > lib_memfd.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_mutex.c > lib_mutex.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_fchmodat.c > lib_fchmodat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_fstatat.c > lib_fstatat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_getfullpath.c > lib_getfullpath.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_openat.c > lib_openat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_mkdirat.c > lib_mkdirat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_utimensat.c > lib_utimensat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_umul32.c > lib_umul32.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_umul64.c > lib_umul64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_umul32x64.c > lib_umul32x64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_uadd32x64.c > lib_uadd32x64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_uadd64.c > lib_uadd64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_usub64x32.c > lib_usub64x32.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_usub64.c > lib_usub64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_dumpbuffer.c > lib_dumpbuffer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_dumpvbuffer.c > lib_dumpvbuffer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_fnmatch.c > lib_fnmatch.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_debug.c > lib_debug.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc64.c > lib_crc64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc32.c > lib_crc32.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc16.c > lib_crc16.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc16ccitt.c > lib_crc16ccitt.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc8.c > lib_crc8.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc8ccitt.c > lib_crc8ccitt.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_crc8table.c > lib_crc8table.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_glob.c > lib_glob.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_execinfo.c > lib_execinfo.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_ftok.c > lib_ftok.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_err.c > lib_err.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- misc/lib_envpath.c > lib_envpath.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_addrconfig.c > lib_addrconfig.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_base64.c > lib_base64.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_htons.c > lib_htons.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_htonl.c > lib_htonl.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_inetaddr.c > lib_inetaddr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_inetaton.c > lib_inetaton.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_inetntoa.c > lib_inetntoa.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_inetntop.c > lib_inetntop.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_inetpton.c > lib_inetpton.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_inetnetwork.c > lib_inetnetwork.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_etherntoa.c > lib_etherntoa.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- net/lib_etheraton.c > lib_etheraton.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_init.c > lib_obstack_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_alloc.c > lib_obstack_alloc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_copy.c > lib_obstack_copy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_free.c > lib_obstack_free.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_make_room.c > lib_obstack_make_room.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_blank.c > lib_obstack_blank.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_grow.c > lib_obstack_grow.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_finish.c > lib_obstack_finish.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_object_size.c > lib_obstack_object_size.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_room.c > lib_obstack_room.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_printf.c > lib_obstack_printf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_vprintf.c > lib_obstack_vprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- obstack/lib_obstack_malloc.c > lib_obstack_malloc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_keycreate.c > pthread_keycreate.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_setspecific.c > pthread_setspecific.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_getspecific.c > pthread_getspecific.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_keydelete.c > pthread_keydelete.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_init.c > pthread_attr_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_destroy.c > pthread_attr_destroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setschedpolicy.c > pthread_attr_setschedpolicy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getschedpolicy.c > pthread_attr_getschedpolicy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setinheritsched.c > pthread_attr_setinheritsched.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getinheritsched.c > pthread_attr_getinheritsched.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setdetachstate.c > pthread_attr_setdetachstate.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getdetachstate.c > pthread_attr_getdetachstate.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setstackaddr.c > pthread_attr_setstackaddr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getstackaddr.c > pthread_attr_getstackaddr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setstacksize.c > pthread_attr_setstacksize.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getstacksize.c > pthread_attr_getstacksize.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setstack.c > pthread_attr_setstack.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getstack.c > pthread_attr_getstack.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_setschedparam.c > pthread_attr_setschedparam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_attr_getschedparam.c > pthread_attr_getschedparam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_barrierattr_init.c > pthread_barrierattr_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_barrierattr_destroy.c > pthread_barrierattr_destroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_barrierattr_getpshared.c > pthread_barrierattr_getpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_barrierattr_setpshared.c > pthread_barrierattr_setpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_barrierinit.c > pthread_barrierinit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_barrierdestroy.c > pthread_barrierdestroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condattr_init.c > pthread_condattr_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condattr_destroy.c > pthread_condattr_destroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condattr_getpshared.c > pthread_condattr_getpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condattr_setpshared.c > pthread_condattr_setpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condattr_setclock.c > pthread_condattr_setclock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condattr_getclock.c > pthread_condattr_getclock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condinit.c > pthread_condinit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_conddestroy.c > pthread_conddestroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_condtimedwait.c > pthread_condtimedwait.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_create.c > pthread_create.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_exit.c > pthread_exit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_kill.c > pthread_kill.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_setname_np.c > pthread_setname_np.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_getname_np.c > pthread_getname_np.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_get_stackaddr_np.c > pthread_get_stackaddr_np.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_get_stacksize_np.c > pthread_get_stacksize_np.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_init.c > pthread_mutexattr_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_destroy.c > pthread_mutexattr_destroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_getpshared.c > pthread_mutexattr_getpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_setpshared.c > pthread_mutexattr_setpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_setprotocol.c > pthread_mutexattr_setprotocol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_getprotocol.c > pthread_mutexattr_getprotocol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_settype.c > pthread_mutexattr_settype.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_gettype.c > pthread_mutexattr_gettype.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_setrobust.c > pthread_mutexattr_setrobust.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutexattr_getrobust.c > pthread_mutexattr_getrobust.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_mutex_lock.c > pthread_mutex_lock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_once.c > pthread_once.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_yield.c > pthread_yield.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_atfork.c > pthread_atfork.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlockattr_init.c > pthread_rwlockattr_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlockattr_destroy.c > pthread_rwlockattr_destroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlockattr_getpshared.c > pthread_rwlockattr_getpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlockattr_setpshared.c > pthread_rwlockattr_setpshared.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlock.c > pthread_rwlock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlock_rdlock.c > pthread_rwlock_rdlock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_rwlock_wrlock.c > pthread_rwlock_wrlock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_setcancelstate.c > pthread_setcancelstate.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_setcanceltype.c > pthread_setcanceltype.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pthread/pthread_testcancel.c > pthread_testcancel.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pwd/lib_getpwnam.c > lib_getpwnam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pwd/lib_getpwnamr.c > lib_getpwnamr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pwd/lib_getpwuid.c > lib_getpwuid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pwd/lib_getpwuidr.c > lib_getpwuidr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pwd/lib_getpwbuf.c > lib_getpwbuf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- pwd/lib_getpwbufr.c > lib_getpwbufr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/sq_addafter.c > sq_addafter.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/sq_remlast.c > sq_remlast.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/sq_remfirst.c > sq_remfirst.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/sq_remafter.c > sq_remafter.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/sq_count.c > sq_count.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/dq_addafter.c > dq_addafter.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/dq_remlast.c > dq_remlast.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/dq_remfirst.c > dq_remfirst.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/dq_remafter.c > dq_remafter.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- queue/dq_count.c > dq_count.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/sched_getprioritymax.c > sched_getprioritymax.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/sched_getprioritymin.c > sched_getprioritymin.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/clock_ticks2time.c > clock_ticks2time.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/clock_time2ticks.c > clock_time2ticks.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/clock_timespec_add.c > clock_timespec_add.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/clock_timespec_subtract.c > clock_timespec_subtract.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/task_setcanceltype.c > task_setcanceltype.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/task_testcancel.c > task_testcancel.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- sched/task_startup.c > task_startup.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- semaphore/sem_init.c > sem_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- semaphore/sem_getprotocol.c > sem_getprotocol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- semaphore/sem_getvalue.c > sem_getvalue.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- semaphore/sem_setprotocol.c > sem_setprotocol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_addset.c > sig_addset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_delset.c > sig_delset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_emptyset.c > sig_emptyset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_fillset.c > sig_fillset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_nandset.c > sig_nandset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_andset.c > sig_andset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_orset.c > sig_orset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_xorset.c > sig_xorset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_isemptyset.c > sig_isemptyset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_hold.c > sig_hold.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_ignore.c > sig_ignore.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_ismember.c > sig_ismember.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_pause.c > sig_pause.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_psignal.c > sig_psignal.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_raise.c > sig_raise.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_relse.c > sig_relse.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_set.c > sig_set.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_signal.c > sig_signal.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- signal/sig_wait.c > sig_wait.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_addaction.c > lib_psfa_addaction.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_addclose.c > lib_psfa_addclose.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_adddup2.c > lib_psfa_adddup2.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_addopen.c > lib_psfa_addopen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_destroy.c > lib_psfa_destroy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_init.c > lib_psfa_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_getflags.c > lib_psa_getflags.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_getschedparam.c > lib_psa_getschedparam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_getschedpolicy.c > lib_psa_getschedpolicy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_init.c > lib_psa_init.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_setflags.c > lib_psa_setflags.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_setschedparam.c > lib_psa_setschedparam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_setschedpolicy.c > lib_psa_setschedpolicy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_getsigmask.c > lib_psa_getsigmask.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_setsigmask.c > lib_psa_setsigmask.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_getstacksize.c > lib_psa_getstacksize.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_setstacksize.c > lib_psa_setstacksize.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_getstackaddr.c > lib_psa_getstackaddr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_setstackaddr.c > lib_psa_setstackaddr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psfa_dump.c > lib_psfa_dump.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- spawn/lib_psa_dump.c > lib_psa_dump.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fileno.c > lib_fileno.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_printf.c > lib_printf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_sprintf.c > lib_sprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_asprintf.c > lib_asprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_snprintf.c > lib_snprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libsprintf.c > lib_libsprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vsprintf.c > lib_vsprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vasprintf.c > lib_vasprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vsnprintf.c > lib_vsnprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_dprintf.c > lib_dprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vdprintf.c > lib_vdprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vprintf.c > lib_vprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_perror.c > lib_perror.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_putchar.c > lib_putchar.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_getchar.c > lib_getchar.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_puts.c > lib_puts.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_gets_s.c > lib_gets_s.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_gets.c > lib_gets.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libdgets.c > lib_libdgets.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_sscanf.c > lib_sscanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vsscanf.c > lib_vsscanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libvscanf.c > lib_libvscanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libvsprintf.c > lib_libvsprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_remove.c > lib_remove.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_tempnam.c > lib_tempnam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_tmpnam.c > lib_tmpnam.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_ultoa_invert.c > lib_ultoa_invert.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_renameat.c > lib_renameat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fopen.c > lib_fopen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_freopen.c > lib_freopen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fclose.c > lib_fclose.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fread.c > lib_fread.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libfread.c > lib_libfread.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fseek.c > lib_fseek.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fseeko.c > lib_fseeko.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_ftell.c > lib_ftell.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_ftello.c > lib_ftello.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fsetpos.c > lib_fsetpos.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_getdelim.c > lib_getdelim.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fgetpos.c > lib_fgetpos.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_getc.c > lib_getc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fgetc.c > lib_fgetc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fgets.c > lib_fgets.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libfgets.c > lib_libfgets.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fwrite.c > lib_fwrite.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libfwrite.c > lib_libfwrite.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fflush.c > lib_fflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libflushall.c > lib_libflushall.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libfflush.c > lib_libfflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_rdflush.c > lib_rdflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_wrflush.c > lib_wrflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_putc.c > lib_putc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fputc.c > lib_fputc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fputs.c > lib_fputs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_ungetc.c > lib_ungetc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fprintf.c > lib_fprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vfprintf.c > lib_vfprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_feof.c > lib_feof.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_ferror.c > lib_ferror.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_rewind.c > lib_rewind.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_clearerr.c > lib_clearerr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_scanf.c > lib_scanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vscanf.c > lib_vscanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_fscanf.c > lib_fscanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_vfscanf.c > lib_vfscanf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_tmpfile.c > lib_tmpfile.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_setbuf.c > lib_setbuf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_setvbuf.c > lib_setvbuf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libstream.c > lib_libstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libfilelock.c > lib_libfilelock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_libgetstreams.c > lib_libgetstreams.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdio/lib_setbuffer.c > lib_setbuffer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_abs.c > lib_abs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_abort.c > lib_abort.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_atof.c > lib_atof.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_atoi.c > lib_atoi.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_getprogname.c > lib_getprogname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_atol.c > lib_atol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_atoll.c > lib_atoll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_div.c > lib_div.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_ldiv.c > lib_ldiv.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_lldiv.c > lib_lldiv.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_exit.c > lib_exit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_itoa.c > lib_itoa.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_labs.c > lib_labs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_llabs.c > lib_llabs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_realpath.c > lib_realpath.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_bsearch.c > lib_bsearch.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_rand.c > lib_rand.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_rand48.c > lib_rand48.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_qsort.c > lib_qsort.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_srand.c > lib_srand.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_strtol.c > lib_strtol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_strtoll.c > lib_strtoll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_strtoul.c > lib_strtoul.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_strtoull.c > lib_strtoull.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_strtold.c > lib_strtold.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_checkbase.c > lib_checkbase.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_mktemp.c > lib_mktemp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_mkstemp.c > lib_mkstemp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_mkdtemp.c > lib_mkdtemp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_aligned_alloc.c > lib_aligned_alloc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_posix_memalign.c > lib_posix_memalign.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_valloc.c > lib_valloc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_mblen.c > lib_mblen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_mbtowc.c > lib_mbtowc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_wctomb.c > lib_wctomb.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_mbstowcs.c > lib_mbstowcs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_wcstombs.c > lib_wcstombs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stdlib/lib_atexit.c > lib_atexit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_meminstream.c > lib_meminstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_memoutstream.c > lib_memoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_memsistream.c > lib_memsistream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_memsostream.c > lib_memsostream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_lowoutstream.c > lib_lowoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_rawinstream.c > lib_rawinstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_rawoutstream.c > lib_rawoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_rawsistream.c > lib_rawsistream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_rawsostream.c > lib_rawsostream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_zeroinstream.c > lib_zeroinstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_nullinstream.c > lib_nullinstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_nulloutstream.c > lib_nulloutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_mtdoutstream.c > lib_mtdoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_libnoflush.c > lib_libnoflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_libsnoflush.c > lib_libsnoflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_syslogstream.c > lib_syslogstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_syslograwstream.c > lib_syslograwstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_bufferedoutstream.c > lib_bufferedoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_hexdumpstream.c > lib_hexdumpstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_stdinstream.c > lib_stdinstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_stdoutstream.c > lib_stdoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_stdsistream.c > lib_stdsistream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_stdsostream.c > lib_stdsostream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- stream/lib_blkoutstream.c > lib_blkoutstream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_ffs.c > lib_ffs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_ffsl.c > lib_ffsl.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_ffsll.c > lib_ffsll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_fls.c > lib_fls.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_flsl.c > lib_flsl.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_flsll.c > lib_flsll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_isbasedigit.c > lib_isbasedigit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memccpy.c > lib_memccpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memrchr.c > lib_memrchr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memmem.c > lib_memmem.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_popcount.c > lib_popcount.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_popcountl.c > lib_popcountl.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_popcountll.c > lib_popcountll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_skipspace.c > lib_skipspace.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_stpcpy.c > lib_stpcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_stpncpy.c > lib_stpncpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strcasecmp.c > lib_strcasecmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strcat.c > lib_strcat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strcspn.c > lib_strcspn.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strchrnul.c > lib_strchrnul.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strdup.c > lib_strdup.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strerror.c > lib_strerror.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strncasecmp.c > lib_strncasecmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strncat.c > lib_strncat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strncmp.c > lib_strncmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strndup.c > lib_strndup.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strcasestr.c > lib_strcasestr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strpbrk.c > lib_strpbrk.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strrchr.c > lib_strrchr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strspn.c > lib_strspn.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strstr.c > lib_strstr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strtok.c > lib_strtok.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strtokr.c > lib_strtokr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strsep.c > lib_strsep.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strerrorr.c > lib_strerrorr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_explicit_bzero.c > lib_explicit_bzero.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strsignal.c > lib_strsignal.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_index.c > lib_index.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_rindex.c > lib_rindex.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_timingsafe_bcmp.c > lib_timingsafe_bcmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strverscmp.c > lib_strverscmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_mempcpy.c > lib_mempcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_rawmemchr.c > lib_rawmemchr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_bzero.c > lib_bzero.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memchr.c > lib_memchr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memcmp.c > lib_memcmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memmove.c > lib_memmove.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memset.c > lib_memset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strchr.c > lib_strchr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strcmp.c > lib_strcmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strcpy.c > lib_strcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strlcat.c > lib_strlcat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strlcpy.c > lib_strlcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strlen.c > lib_strlen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strncpy.c > lib_strncpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_strnlen.c > lib_strnlen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- string/lib_memcpy.c > lib_memcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- symtab/symtab_findbyname.c > symtab_findbyname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- symtab/symtab_findbyvalue.c > symtab_findbyvalue.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- symtab/symtab_sortbyname.c > symtab_sortbyname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- syslog/lib_syslog.c > lib_syslog.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- syslog/lib_setlogmask.c > lib_setlogmask.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_cfspeed.c > lib_cfspeed.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_cfmakeraw.c > lib_cfmakeraw.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_isatty.c > lib_isatty.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_tcflush.c > lib_tcflush.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_tcdrain.c > lib_tcdrain.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_tcflow.c > lib_tcflow.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_tcgetattr.c > lib_tcgetattr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_tcsetattr.c > lib_tcsetattr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_tcsendbreak.c > lib_tcsendbreak.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_ttyname.c > lib_ttyname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- termios/lib_ttynamer.c > lib_ttynamer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_strftime.c > lib_strftime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_strptime.c > lib_strptime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_calendar2utc.c > lib_calendar2utc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_daysbeforemonth.c > lib_daysbeforemonth.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_gettimeofday.c > lib_gettimeofday.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_isleapyear.c > lib_isleapyear.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_settimeofday.c > lib_settimeofday.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_time.c > lib_time.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_timespec_get.c > lib_timespec_get.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_nanosleep.c > lib_nanosleep.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_difftime.c > lib_difftime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_dayofweek.c > lib_dayofweek.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_asctime.c > lib_asctime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_asctimer.c > lib_asctimer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_ctime.c > lib_ctime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_ctimer.c > lib_ctimer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_gethrtime.c > lib_gethrtime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_timegm.c > lib_timegm.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_gmtime.c > lib_gmtime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- time/lib_gmtimer.c > lib_gmtimer.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- tls/task_getinfo.c > task_getinfo.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- tls/tls_getinfo.c > tls_getinfo.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- tls/tls_destruct.c > tls_destruct.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uio/lib_readv.c > lib_readv.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uio/lib_writev.c > lib_writev.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uio/lib_preadv.c > lib_preadv.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uio/lib_pwritev.c > lib_pwritev.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_access.c > lib_access.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_daemon.c > lib_daemon.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_swab.c > lib_swab.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_pathconf.c > lib_pathconf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_sysconf.c > lib_sysconf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getentropy.c > lib_getentropy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getopt_common.c > lib_getopt_common.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getopt.c > lib_getopt.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getopt_long.c > lib_getopt_long.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getopt_longonly.c > lib_getopt_longonly.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getoptvars.c > lib_getoptvars.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getoptargp.c > lib_getoptargp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getopterrp.c > lib_getopterrp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getoptindp.c > lib_getoptindp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getoptoptp.c > lib_getoptoptp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_times.c > lib_times.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_alarm.c > lib_alarm.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_fstatvfs.c > lib_fstatvfs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_statvfs.c > lib_statvfs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_sleep.c > lib_sleep.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_nice.c > lib_nice.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_usleep.c > lib_usleep.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_seteuid.c > lib_seteuid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setegid.c > lib_setegid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_geteuid.c > lib_geteuid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getegid.c > lib_getegid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setreuid.c > lib_setreuid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setregid.c > lib_setregid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getrusage.c > lib_getrusage.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_utime.c > lib_utime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_utimes.c > lib_utimes.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setrlimit.c > lib_setrlimit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getrlimit.c > lib_getrlimit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setpriority.c > lib_setpriority.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getpriority.c > lib_getpriority.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_futimes.c > lib_futimes.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_lutimes.c > lib_lutimes.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_gethostname.c > lib_gethostname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_sethostname.c > lib_sethostname.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_fchownat.c > lib_fchownat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_linkat.c > lib_linkat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_readlinkat.c > lib_readlinkat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_symlinkat.c > lib_symlinkat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_unlinkat.c > lib_unlinkat.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setuid.c > lib_setuid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_setgid.c > lib_setgid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getuid.c > lib_getuid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getgid.c > lib_getgid.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_chdir.c > lib_chdir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_fchdir.c > lib_fchdir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_getcwd.c > lib_getcwd.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_restoredir.c > lib_restoredir.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_execl.c > lib_execl.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_execle.c > lib_execle.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_execv.c > lib_execv.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_truncate.c > lib_truncate.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- unistd/lib_posix_fallocate.c > lib_posix_fallocate.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_compare.c > lib_uuid_compare.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_create.c > lib_uuid_create.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_create_nil.c > lib_uuid_create_nil.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_equal.c > lib_uuid_equal.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_from_string.c > lib_uuid_from_string.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_hash.c > lib_uuid_hash.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_is_nil.c > lib_uuid_is_nil.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_stream.c > lib_uuid_stream.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- uuid/lib_uuid_to_string.c > lib_uuid_to_string.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcscmp.c > lib_wcscmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcslen.c > lib_wcslen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wmemchr.c > lib_wmemchr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wmemcmp.c > lib_wmemcmp.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wmemcpy.c > lib_wmemcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wmemmove.c > lib_wmemmove.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wmemset.c > lib_wmemset.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_btowc.c > lib_btowc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_mbrtowc.c > lib_mbrtowc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wctob.c > lib_wctob.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcslcpy.c > lib_wcslcpy.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcsxfrm.c > lib_wcsxfrm.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcrtomb.c > lib_wcrtomb.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcsftime.c > lib_wcsftime.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcscoll.c > lib_wcscoll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstol.c > lib_wcstol.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstoll.c > lib_wcstoll.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstoul.c > lib_wcstoul.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstoull.c > lib_wcstoull.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstold.c > lib_wcstold.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstof.c > lib_wcstof.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcstod.c > lib_wcstod.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_swprintf.c > lib_swprintf.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_mbsnrtowcs.c > lib_mbsnrtowcs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcsnrtombs.c > lib_wcsnrtombs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_mbsinit.c > lib_mbsinit.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_mbrlen.c > lib_mbrlen.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_mbsrtowcs.c > lib_mbsrtowcs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wchar/lib_wcsrtombs.c > lib_wcsrtombs.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wctype/lib_wctype.c > lib_wctype.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wctype/lib_iswctype.c > lib_iswctype.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wctype/lib_towlower.c > lib_towlower.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path errno --dep-path fixedmath --dep-path grp --dep-path inttypes --dep-path libgen --dep-path machine/risc-v/gnu --dep-path machine/risc-v --dep-path machine --dep-path misc --dep-path net --dep-path obstack --dep-path pthread --dep-path pwd --dep-path queue --dep-path sched --dep-path semaphore --dep-path signal --dep-path spawn --dep-path stdio --dep-path stdlib --dep-path stream --dep-path string --dep-path symtab --dep-path syslog --dep-path termios --dep-path time --dep-path tls --dep-path uio --dep-path unistd --dep-path uuid --dep-path wchar --dep-path wctype "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/libs/libc -- wctype/lib_towupper.c > lib_towupper.ddc
if [ -z "lib_assert.ddc lib_builtin_getname.ddc lib_builtin_isavail.ddc lib_builtin_forindex.ddc lib_isalnum.ddc lib_isalpha.ddc lib_isascii.ddc lib_isblank.ddc lib_iscntrl.ddc lib_isdigit.ddc lib_isgraph.ddc lib_islower.ddc lib_isprint.ddc lib_ispunct.ddc lib_isspace.ddc lib_isupper.ddc lib_isxdigit.ddc lib_tolower.ddc lib_toupper.ddc lib_readdirr.ddc lib_telldir.ddc lib_alphasort.ddc lib_scandir.ddc lib_ftw.ddc lib_nftw.ddc lib_opendir.ddc lib_fdopendir.ddc lib_closedir.ddc lib_readdir.ddc lib_rewinddir.ddc lib_seekdir.ddc lib_dirfd.ddc lib_versionsort.ddc lib_errno.ddc lib_fixedmath.ddc lib_b16sin.ddc lib_b16cos.ddc lib_b16atan2.ddc lib_ubsqrt.ddc lib_getgrgid.ddc lib_getgrgidr.ddc lib_getgrnam.ddc lib_getgrnamr.ddc lib_initgroups.ddc lib_getgrbuf.ddc lib_getgrbufr.ddc lib_imaxabs.ddc lib_strtoimax.ddc lib_strtoumax.ddc lib_basename.ddc lib_dirname.ddc arch_elf.ddc lib_mknod.ddc lib_umask.ddc lib_utsname.ddc lib_getrandom.ddc lib_xorshift128.ddc lib_tea_encrypt.ddc lib_tea_decrypt.ddc lib_cxx_initialize.ddc lib_impure.ddc lib_memfd.ddc lib_mutex.ddc lib_fchmodat.ddc lib_fstatat.ddc lib_getfullpath.ddc lib_openat.ddc lib_mkdirat.ddc lib_utimensat.ddc lib_umul32.ddc lib_umul64.ddc lib_umul32x64.ddc lib_uadd32x64.ddc lib_uadd64.ddc lib_usub64x32.ddc lib_usub64.ddc lib_dumpbuffer.ddc lib_dumpvbuffer.ddc lib_fnmatch.ddc lib_debug.ddc lib_crc64.ddc lib_crc32.ddc lib_crc16.ddc lib_crc16ccitt.ddc lib_crc8.ddc lib_crc8ccitt.ddc lib_crc8table.ddc lib_glob.ddc lib_execinfo.ddc lib_ftok.ddc lib_err.ddc lib_envpath.ddc lib_addrconfig.ddc lib_base64.ddc lib_htons.ddc lib_htonl.ddc lib_inetaddr.ddc lib_inetaton.ddc lib_inetntoa.ddc lib_inetntop.ddc lib_inetpton.ddc lib_inetnetwork.ddc lib_etherntoa.ddc lib_etheraton.ddc lib_obstack_init.ddc lib_obstack_alloc.ddc lib_obstack_copy.ddc lib_obstack_free.ddc lib_obstack_make_room.ddc lib_obstack_blank.ddc lib_obstack_grow.ddc lib_obstack_finish.ddc lib_obstack_object_size.ddc lib_obstack_room.ddc lib_obstack_printf.ddc lib_obstack_vprintf.ddc lib_obstack_malloc.ddc pthread_keycreate.ddc pthread_setspecific.ddc pthread_getspecific.ddc pthread_keydelete.ddc pthread_attr_init.ddc pthread_attr_destroy.ddc pthread_attr_setschedpolicy.ddc pthread_attr_getschedpolicy.ddc pthread_attr_setinheritsched.ddc pthread_attr_getinheritsched.ddc pthread_attr_setdetachstate.ddc pthread_attr_getdetachstate.ddc pthread_attr_setstackaddr.ddc pthread_attr_getstackaddr.ddc pthread_attr_setstacksize.ddc pthread_attr_getstacksize.ddc pthread_attr_setstack.ddc pthread_attr_getstack.ddc pthread_attr_setschedparam.ddc pthread_attr_getschedparam.ddc pthread_barrierattr_init.ddc pthread_barrierattr_destroy.ddc pthread_barrierattr_getpshared.ddc pthread_barrierattr_setpshared.ddc pthread_barrierinit.ddc pthread_barrierdestroy.ddc pthread_condattr_init.ddc pthread_condattr_destroy.ddc pthread_condattr_getpshared.ddc pthread_condattr_setpshared.ddc pthread_condattr_setclock.ddc pthread_condattr_getclock.ddc pthread_condinit.ddc pthread_conddestroy.ddc pthread_condtimedwait.ddc pthread_create.ddc pthread_exit.ddc pthread_kill.ddc pthread_setname_np.ddc pthread_getname_np.ddc pthread_get_stackaddr_np.ddc pthread_get_stacksize_np.ddc pthread_mutexattr_init.ddc pthread_mutexattr_destroy.ddc pthread_mutexattr_getpshared.ddc pthread_mutexattr_setpshared.ddc pthread_mutexattr_setprotocol.ddc pthread_mutexattr_getprotocol.ddc pthread_mutexattr_settype.ddc pthread_mutexattr_gettype.ddc pthread_mutexattr_setrobust.ddc pthread_mutexattr_getrobust.ddc pthread_mutex_lock.ddc pthread_once.ddc pthread_yield.ddc pthread_atfork.ddc pthread_rwlockattr_init.ddc pthread_rwlockattr_destroy.ddc pthread_rwlockattr_getpshared.ddc pthread_rwlockattr_setpshared.ddc pthread_rwlock.ddc pthread_rwlock_rdlock.ddc pthread_rwlock_wrlock.ddc pthread_setcancelstate.ddc pthread_setcanceltype.ddc pthread_testcancel.ddc lib_getpwnam.ddc lib_getpwnamr.ddc lib_getpwuid.ddc lib_getpwuidr.ddc lib_getpwbuf.ddc lib_getpwbufr.ddc sq_addafter.ddc sq_remlast.ddc sq_remfirst.ddc sq_remafter.ddc sq_count.ddc dq_addafter.ddc dq_remlast.ddc dq_remfirst.ddc dq_remafter.ddc dq_count.ddc sched_getprioritymax.ddc sched_getprioritymin.ddc clock_ticks2time.ddc clock_time2ticks.ddc clock_timespec_add.ddc clock_timespec_subtract.ddc task_setcanceltype.ddc task_testcancel.ddc task_startup.ddc sem_init.ddc sem_getprotocol.ddc sem_getvalue.ddc sem_setprotocol.ddc sig_addset.ddc sig_delset.ddc sig_emptyset.ddc sig_fillset.ddc sig_nandset.ddc sig_andset.ddc sig_orset.ddc sig_xorset.ddc sig_isemptyset.ddc sig_hold.ddc sig_ignore.ddc sig_ismember.ddc sig_pause.ddc sig_psignal.ddc sig_raise.ddc sig_relse.ddc sig_set.ddc sig_signal.ddc sig_wait.ddc lib_psfa_addaction.ddc lib_psfa_addclose.ddc lib_psfa_adddup2.ddc lib_psfa_addopen.ddc lib_psfa_destroy.ddc lib_psfa_init.ddc lib_psa_getflags.ddc lib_psa_getschedparam.ddc lib_psa_getschedpolicy.ddc lib_psa_init.ddc lib_psa_setflags.ddc lib_psa_setschedparam.ddc lib_psa_setschedpolicy.ddc lib_psa_getsigmask.ddc lib_psa_setsigmask.ddc lib_psa_getstacksize.ddc lib_psa_setstacksize.ddc lib_psa_getstackaddr.ddc lib_psa_setstackaddr.ddc lib_psfa_dump.ddc lib_psa_dump.ddc lib_fileno.ddc lib_printf.ddc lib_sprintf.ddc lib_asprintf.ddc lib_snprintf.ddc lib_libsprintf.ddc lib_vsprintf.ddc lib_vasprintf.ddc lib_vsnprintf.ddc lib_dprintf.ddc lib_vdprintf.ddc lib_vprintf.ddc lib_perror.ddc lib_putchar.ddc lib_getchar.ddc lib_puts.ddc lib_gets_s.ddc lib_gets.ddc lib_libdgets.ddc lib_sscanf.ddc lib_vsscanf.ddc lib_libvscanf.ddc lib_libvsprintf.ddc lib_remove.ddc lib_tempnam.ddc lib_tmpnam.ddc lib_ultoa_invert.ddc lib_renameat.ddc lib_fopen.ddc lib_freopen.ddc lib_fclose.ddc lib_fread.ddc lib_libfread.ddc lib_fseek.ddc lib_fseeko.ddc lib_ftell.ddc lib_ftello.ddc lib_fsetpos.ddc lib_getdelim.ddc lib_fgetpos.ddc lib_getc.ddc lib_fgetc.ddc lib_fgets.ddc lib_libfgets.ddc lib_fwrite.ddc lib_libfwrite.ddc lib_fflush.ddc lib_libflushall.ddc lib_libfflush.ddc lib_rdflush.ddc lib_wrflush.ddc lib_putc.ddc lib_fputc.ddc lib_fputs.ddc lib_ungetc.ddc lib_fprintf.ddc lib_vfprintf.ddc lib_feof.ddc lib_ferror.ddc lib_rewind.ddc lib_clearerr.ddc lib_scanf.ddc lib_vscanf.ddc lib_fscanf.ddc lib_vfscanf.ddc lib_tmpfile.ddc lib_setbuf.ddc lib_setvbuf.ddc lib_libstream.ddc lib_libfilelock.ddc lib_libgetstreams.ddc lib_setbuffer.ddc lib_abs.ddc lib_abort.ddc lib_atof.ddc lib_atoi.ddc lib_getprogname.ddc lib_atol.ddc lib_atoll.ddc lib_div.ddc lib_ldiv.ddc lib_lldiv.ddc lib_exit.ddc lib_itoa.ddc lib_labs.ddc lib_llabs.ddc lib_realpath.ddc lib_bsearch.ddc lib_rand.ddc lib_rand48.ddc lib_qsort.ddc lib_srand.ddc lib_strtol.ddc lib_strtoll.ddc lib_strtoul.ddc lib_strtoull.ddc lib_strtold.ddc lib_checkbase.ddc lib_mktemp.ddc lib_mkstemp.ddc lib_mkdtemp.ddc lib_aligned_alloc.ddc lib_posix_memalign.ddc lib_valloc.ddc lib_mblen.ddc lib_mbtowc.ddc lib_wctomb.ddc lib_mbstowcs.ddc lib_wcstombs.ddc lib_atexit.ddc lib_meminstream.ddc lib_memoutstream.ddc lib_memsistream.ddc lib_memsostream.ddc lib_lowoutstream.ddc lib_rawinstream.ddc lib_rawoutstream.ddc lib_rawsistream.ddc lib_rawsostream.ddc lib_zeroinstream.ddc lib_nullinstream.ddc lib_nulloutstream.ddc lib_mtdoutstream.ddc lib_libnoflush.ddc lib_libsnoflush.ddc lib_syslogstream.ddc lib_syslograwstream.ddc lib_bufferedoutstream.ddc lib_hexdumpstream.ddc lib_stdinstream.ddc lib_stdoutstream.ddc lib_stdsistream.ddc lib_stdsostream.ddc lib_blkoutstream.ddc lib_ffs.ddc lib_ffsl.ddc lib_ffsll.ddc lib_fls.ddc lib_flsl.ddc lib_flsll.ddc lib_isbasedigit.ddc lib_memccpy.ddc lib_memrchr.ddc lib_memmem.ddc lib_popcount.ddc lib_popcountl.ddc lib_popcountll.ddc lib_skipspace.ddc lib_stpcpy.ddc lib_stpncpy.ddc lib_strcasecmp.ddc lib_strcat.ddc lib_strcspn.ddc lib_strchrnul.ddc lib_strdup.ddc lib_strerror.ddc lib_strncasecmp.ddc lib_strncat.ddc lib_strncmp.ddc lib_strndup.ddc lib_strcasestr.ddc lib_strpbrk.ddc lib_strrchr.ddc lib_strspn.ddc lib_strstr.ddc lib_strtok.ddc lib_strtokr.ddc lib_strsep.ddc lib_strerrorr.ddc lib_explicit_bzero.ddc lib_strsignal.ddc lib_index.ddc lib_rindex.ddc lib_timingsafe_bcmp.ddc lib_strverscmp.ddc lib_mempcpy.ddc lib_rawmemchr.ddc lib_bzero.ddc lib_memchr.ddc lib_memcmp.ddc lib_memmove.ddc lib_memset.ddc lib_strchr.ddc lib_strcmp.ddc lib_strcpy.ddc lib_strlcat.ddc lib_strlcpy.ddc lib_strlen.ddc lib_strncpy.ddc lib_strnlen.ddc lib_memcpy.ddc symtab_findbyname.ddc symtab_findbyvalue.ddc symtab_sortbyname.ddc lib_syslog.ddc lib_setlogmask.ddc lib_cfspeed.ddc lib_cfmakeraw.ddc lib_isatty.ddc lib_tcflush.ddc lib_tcdrain.ddc lib_tcflow.ddc lib_tcgetattr.ddc lib_tcsetattr.ddc lib_tcsendbreak.ddc lib_ttyname.ddc lib_ttynamer.ddc lib_strftime.ddc lib_strptime.ddc lib_calendar2utc.ddc lib_daysbeforemonth.ddc lib_gettimeofday.ddc lib_isleapyear.ddc lib_settimeofday.ddc lib_time.ddc lib_timespec_get.ddc lib_nanosleep.ddc lib_difftime.ddc lib_dayofweek.ddc lib_asctime.ddc lib_asctimer.ddc lib_ctime.ddc lib_ctimer.ddc lib_gethrtime.ddc lib_timegm.ddc lib_gmtime.ddc lib_gmtimer.ddc task_getinfo.ddc tls_getinfo.ddc tls_destruct.ddc lib_readv.ddc lib_writev.ddc lib_preadv.ddc lib_pwritev.ddc lib_access.ddc lib_daemon.ddc lib_swab.ddc lib_pathconf.ddc lib_sysconf.ddc lib_getentropy.ddc lib_getopt_common.ddc lib_getopt.ddc lib_getopt_long.ddc lib_getopt_longonly.ddc lib_getoptvars.ddc lib_getoptargp.ddc lib_getopterrp.ddc lib_getoptindp.ddc lib_getoptoptp.ddc lib_times.ddc lib_alarm.ddc lib_fstatvfs.ddc lib_statvfs.ddc lib_sleep.ddc lib_nice.ddc lib_usleep.ddc lib_seteuid.ddc lib_setegid.ddc lib_geteuid.ddc lib_getegid.ddc lib_setreuid.ddc lib_setregid.ddc lib_getrusage.ddc lib_utime.ddc lib_utimes.ddc lib_setrlimit.ddc lib_getrlimit.ddc lib_setpriority.ddc lib_getpriority.ddc lib_futimes.ddc lib_lutimes.ddc lib_gethostname.ddc lib_sethostname.ddc lib_fchownat.ddc lib_linkat.ddc lib_readlinkat.ddc lib_symlinkat.ddc lib_unlinkat.ddc lib_setuid.ddc lib_setgid.ddc lib_getuid.ddc lib_getgid.ddc lib_chdir.ddc lib_fchdir.ddc lib_getcwd.ddc lib_restoredir.ddc lib_execl.ddc lib_execle.ddc lib_execv.ddc lib_truncate.ddc lib_posix_fallocate.ddc lib_uuid_compare.ddc lib_uuid_create.ddc lib_uuid_create_nil.ddc lib_uuid_equal.ddc lib_uuid_from_string.ddc lib_uuid_hash.ddc lib_uuid_is_nil.ddc lib_uuid_stream.ddc lib_uuid_to_string.ddc lib_wcscmp.ddc lib_wcslen.ddc lib_wmemchr.ddc lib_wmemcmp.ddc lib_wmemcpy.ddc lib_wmemmove.ddc lib_wmemset.ddc lib_btowc.ddc lib_mbrtowc.ddc lib_wctob.ddc lib_wcslcpy.ddc lib_wcsxfrm.ddc lib_wcrtomb.ddc lib_wcsftime.ddc lib_wcscoll.ddc lib_wcstol.ddc lib_wcstoll.ddc lib_wcstoul.ddc lib_wcstoull.ddc lib_wcstold.ddc lib_wcstof.ddc lib_wcstod.ddc lib_swprintf.ddc lib_mbsnrtowcs.ddc lib_wcsnrtombs.ddc lib_mbsinit.ddc lib_mbrlen.ddc lib_mbsrtowcs.ddc lib_wcsrtombs.ddc lib_wctype.ddc lib_iswctype.ddc lib_towlower.ddc lib_towupper.ddc" ]; then echo '' > bin/Make.dep; else cat lib_assert.ddc lib_builtin_getname.ddc lib_builtin_isavail.ddc lib_builtin_forindex.ddc lib_isalnum.ddc lib_isalpha.ddc lib_isascii.ddc lib_isblank.ddc lib_iscntrl.ddc lib_isdigit.ddc lib_isgraph.ddc lib_islower.ddc lib_isprint.ddc lib_ispunct.ddc lib_isspace.ddc lib_isupper.ddc lib_isxdigit.ddc lib_tolower.ddc lib_toupper.ddc lib_readdirr.ddc lib_telldir.ddc lib_alphasort.ddc lib_scandir.ddc lib_ftw.ddc lib_nftw.ddc lib_opendir.ddc lib_fdopendir.ddc lib_closedir.ddc lib_readdir.ddc lib_rewinddir.ddc lib_seekdir.ddc lib_dirfd.ddc lib_versionsort.ddc lib_errno.ddc lib_fixedmath.ddc lib_b16sin.ddc lib_b16cos.ddc lib_b16atan2.ddc lib_ubsqrt.ddc lib_getgrgid.ddc lib_getgrgidr.ddc lib_getgrnam.ddc lib_getgrnamr.ddc lib_initgroups.ddc lib_getgrbuf.ddc lib_getgrbufr.ddc lib_imaxabs.ddc lib_strtoimax.ddc lib_strtoumax.ddc lib_basename.ddc lib_dirname.ddc arch_elf.ddc lib_mknod.ddc lib_umask.ddc lib_utsname.ddc lib_getrandom.ddc lib_xorshift128.ddc lib_tea_encrypt.ddc lib_tea_decrypt.ddc lib_cxx_initialize.ddc lib_impure.ddc lib_memfd.ddc lib_mutex.ddc lib_fchmodat.ddc lib_fstatat.ddc lib_getfullpath.ddc lib_openat.ddc lib_mkdirat.ddc lib_utimensat.ddc lib_umul32.ddc lib_umul64.ddc lib_umul32x64.ddc lib_uadd32x64.ddc lib_uadd64.ddc lib_usub64x32.ddc lib_usub64.ddc lib_dumpbuffer.ddc lib_dumpvbuffer.ddc lib_fnmatch.ddc lib_debug.ddc lib_crc64.ddc lib_crc32.ddc lib_crc16.ddc lib_crc16ccitt.ddc lib_crc8.ddc lib_crc8ccitt.ddc lib_crc8table.ddc lib_glob.ddc lib_execinfo.ddc lib_ftok.ddc lib_err.ddc lib_envpath.ddc lib_addrconfig.ddc lib_base64.ddc lib_htons.ddc lib_htonl.ddc lib_inetaddr.ddc lib_inetaton.ddc lib_inetntoa.ddc lib_inetntop.ddc lib_inetpton.ddc lib_inetnetwork.ddc lib_etherntoa.ddc lib_etheraton.ddc lib_obstack_init.ddc lib_obstack_alloc.ddc lib_obstack_copy.ddc lib_obstack_free.ddc lib_obstack_make_room.ddc lib_obstack_blank.ddc lib_obstack_grow.ddc lib_obstack_finish.ddc lib_obstack_object_size.ddc lib_obstack_room.ddc lib_obstack_printf.ddc lib_obstack_vprintf.ddc lib_obstack_malloc.ddc pthread_keycreate.ddc pthread_setspecific.ddc pthread_getspecific.ddc pthread_keydelete.ddc pthread_attr_init.ddc pthread_attr_destroy.ddc pthread_attr_setschedpolicy.ddc pthread_attr_getschedpolicy.ddc pthread_attr_setinheritsched.ddc pthread_attr_getinheritsched.ddc pthread_attr_setdetachstate.ddc pthread_attr_getdetachstate.ddc pthread_attr_setstackaddr.ddc pthread_attr_getstackaddr.ddc pthread_attr_setstacksize.ddc pthread_attr_getstacksize.ddc pthread_attr_setstack.ddc pthread_attr_getstack.ddc pthread_attr_setschedparam.ddc pthread_attr_getschedparam.ddc pthread_barrierattr_init.ddc pthread_barrierattr_destroy.ddc pthread_barrierattr_getpshared.ddc pthread_barrierattr_setpshared.ddc pthread_barrierinit.ddc pthread_barrierdestroy.ddc pthread_condattr_init.ddc pthread_condattr_destroy.ddc pthread_condattr_getpshared.ddc pthread_condattr_setpshared.ddc pthread_condattr_setclock.ddc pthread_condattr_getclock.ddc pthread_condinit.ddc pthread_conddestroy.ddc pthread_condtimedwait.ddc pthread_create.ddc pthread_exit.ddc pthread_kill.ddc pthread_setname_np.ddc pthread_getname_np.ddc pthread_get_stackaddr_np.ddc pthread_get_stacksize_np.ddc pthread_mutexattr_init.ddc pthread_mutexattr_destroy.ddc pthread_mutexattr_getpshared.ddc pthread_mutexattr_setpshared.ddc pthread_mutexattr_setprotocol.ddc pthread_mutexattr_getprotocol.ddc pthread_mutexattr_settype.ddc pthread_mutexattr_gettype.ddc pthread_mutexattr_setrobust.ddc pthread_mutexattr_getrobust.ddc pthread_mutex_lock.ddc pthread_once.ddc pthread_yield.ddc pthread_atfork.ddc pthread_rwlockattr_init.ddc pthread_rwlockattr_destroy.ddc pthread_rwlockattr_getpshared.ddc pthread_rwlockattr_setpshared.ddc pthread_rwlock.ddc pthread_rwlock_rdlock.ddc pthread_rwlock_wrlock.ddc pthread_setcancelstate.ddc pthread_setcanceltype.ddc pthread_testcancel.ddc lib_getpwnam.ddc lib_getpwnamr.ddc lib_getpwuid.ddc lib_getpwuidr.ddc lib_getpwbuf.ddc lib_getpwbufr.ddc sq_addafter.ddc sq_remlast.ddc sq_remfirst.ddc sq_remafter.ddc sq_count.ddc dq_addafter.ddc dq_remlast.ddc dq_remfirst.ddc dq_remafter.ddc dq_count.ddc sched_getprioritymax.ddc sched_getprioritymin.ddc clock_ticks2time.ddc clock_time2ticks.ddc clock_timespec_add.ddc clock_timespec_subtract.ddc task_setcanceltype.ddc task_testcancel.ddc task_startup.ddc sem_init.ddc sem_getprotocol.ddc sem_getvalue.ddc sem_setprotocol.ddc sig_addset.ddc sig_delset.ddc sig_emptyset.ddc sig_fillset.ddc sig_nandset.ddc sig_andset.ddc sig_orset.ddc sig_xorset.ddc sig_isemptyset.ddc sig_hold.ddc sig_ignore.ddc sig_ismember.ddc sig_pause.ddc sig_psignal.ddc sig_raise.ddc sig_relse.ddc sig_set.ddc sig_signal.ddc sig_wait.ddc lib_psfa_addaction.ddc lib_psfa_addclose.ddc lib_psfa_adddup2.ddc lib_psfa_addopen.ddc lib_psfa_destroy.ddc lib_psfa_init.ddc lib_psa_getflags.ddc lib_psa_getschedparam.ddc lib_psa_getschedpolicy.ddc lib_psa_init.ddc lib_psa_setflags.ddc lib_psa_setschedparam.ddc lib_psa_setschedpolicy.ddc lib_psa_getsigmask.ddc lib_psa_setsigmask.ddc lib_psa_getstacksize.ddc lib_psa_setstacksize.ddc lib_psa_getstackaddr.ddc lib_psa_setstackaddr.ddc lib_psfa_dump.ddc lib_psa_dump.ddc lib_fileno.ddc lib_printf.ddc lib_sprintf.ddc lib_asprintf.ddc lib_snprintf.ddc lib_libsprintf.ddc lib_vsprintf.ddc lib_vasprintf.ddc lib_vsnprintf.ddc lib_dprintf.ddc lib_vdprintf.ddc lib_vprintf.ddc lib_perror.ddc lib_putchar.ddc lib_getchar.ddc lib_puts.ddc lib_gets_s.ddc lib_gets.ddc lib_libdgets.ddc lib_sscanf.ddc lib_vsscanf.ddc lib_libvscanf.ddc lib_libvsprintf.ddc lib_remove.ddc lib_tempnam.ddc lib_tmpnam.ddc lib_ultoa_invert.ddc lib_renameat.ddc lib_fopen.ddc lib_freopen.ddc lib_fclose.ddc lib_fread.ddc lib_libfread.ddc lib_fseek.ddc lib_fseeko.ddc lib_ftell.ddc lib_ftello.ddc lib_fsetpos.ddc lib_getdelim.ddc lib_fgetpos.ddc lib_getc.ddc lib_fgetc.ddc lib_fgets.ddc lib_libfgets.ddc lib_fwrite.ddc lib_libfwrite.ddc lib_fflush.ddc lib_libflushall.ddc lib_libfflush.ddc lib_rdflush.ddc lib_wrflush.ddc lib_putc.ddc lib_fputc.ddc lib_fputs.ddc lib_ungetc.ddc lib_fprintf.ddc lib_vfprintf.ddc lib_feof.ddc lib_ferror.ddc lib_rewind.ddc lib_clearerr.ddc lib_scanf.ddc lib_vscanf.ddc lib_fscanf.ddc lib_vfscanf.ddc lib_tmpfile.ddc lib_setbuf.ddc lib_setvbuf.ddc lib_libstream.ddc lib_libfilelock.ddc lib_libgetstreams.ddc lib_setbuffer.ddc lib_abs.ddc lib_abort.ddc lib_atof.ddc lib_atoi.ddc lib_getprogname.ddc lib_atol.ddc lib_atoll.ddc lib_div.ddc lib_ldiv.ddc lib_lldiv.ddc lib_exit.ddc lib_itoa.ddc lib_labs.ddc lib_llabs.ddc lib_realpath.ddc lib_bsearch.ddc lib_rand.ddc lib_rand48.ddc lib_qsort.ddc lib_srand.ddc lib_strtol.ddc lib_strtoll.ddc lib_strtoul.ddc lib_strtoull.ddc lib_strtold.ddc lib_checkbase.ddc lib_mktemp.ddc lib_mkstemp.ddc lib_mkdtemp.ddc lib_aligned_alloc.ddc lib_posix_memalign.ddc lib_valloc.ddc lib_mblen.ddc lib_mbtowc.ddc lib_wctomb.ddc lib_mbstowcs.ddc lib_wcstombs.ddc lib_atexit.ddc lib_meminstream.ddc lib_memoutstream.ddc lib_memsistream.ddc lib_memsostream.ddc lib_lowoutstream.ddc lib_rawinstream.ddc lib_rawoutstream.ddc lib_rawsistream.ddc lib_rawsostream.ddc lib_zeroinstream.ddc lib_nullinstream.ddc lib_nulloutstream.ddc lib_mtdoutstream.ddc lib_libnoflush.ddc lib_libsnoflush.ddc lib_syslogstream.ddc lib_syslograwstream.ddc lib_bufferedoutstream.ddc lib_hexdumpstream.ddc lib_stdinstream.ddc lib_stdoutstream.ddc lib_stdsistream.ddc lib_stdsostream.ddc lib_blkoutstream.ddc lib_ffs.ddc lib_ffsl.ddc lib_ffsll.ddc lib_fls.ddc lib_flsl.ddc lib_flsll.ddc lib_isbasedigit.ddc lib_memccpy.ddc lib_memrchr.ddc lib_memmem.ddc lib_popcount.ddc lib_popcountl.ddc lib_popcountll.ddc lib_skipspace.ddc lib_stpcpy.ddc lib_stpncpy.ddc lib_strcasecmp.ddc lib_strcat.ddc lib_strcspn.ddc lib_strchrnul.ddc lib_strdup.ddc lib_strerror.ddc lib_strncasecmp.ddc lib_strncat.ddc lib_strncmp.ddc lib_strndup.ddc lib_strcasestr.ddc lib_strpbrk.ddc lib_strrchr.ddc lib_strspn.ddc lib_strstr.ddc lib_strtok.ddc lib_strtokr.ddc lib_strsep.ddc lib_strerrorr.ddc lib_explicit_bzero.ddc lib_strsignal.ddc lib_index.ddc lib_rindex.ddc lib_timingsafe_bcmp.ddc lib_strverscmp.ddc lib_mempcpy.ddc lib_rawmemchr.ddc lib_bzero.ddc lib_memchr.ddc lib_memcmp.ddc lib_memmove.ddc lib_memset.ddc lib_strchr.ddc lib_strcmp.ddc lib_strcpy.ddc lib_strlcat.ddc lib_strlcpy.ddc lib_strlen.ddc lib_strncpy.ddc lib_strnlen.ddc lib_memcpy.ddc symtab_findbyname.ddc symtab_findbyvalue.ddc symtab_sortbyname.ddc lib_syslog.ddc lib_setlogmask.ddc lib_cfspeed.ddc lib_cfmakeraw.ddc lib_isatty.ddc lib_tcflush.ddc lib_tcdrain.ddc lib_tcflow.ddc lib_tcgetattr.ddc lib_tcsetattr.ddc lib_tcsendbreak.ddc lib_ttyname.ddc lib_ttynamer.ddc lib_strftime.ddc lib_strptime.ddc lib_calendar2utc.ddc lib_daysbeforemonth.ddc lib_gettimeofday.ddc lib_isleapyear.ddc lib_settimeofday.ddc lib_time.ddc lib_timespec_get.ddc lib_nanosleep.ddc lib_difftime.ddc lib_dayofweek.ddc lib_asctime.ddc lib_asctimer.ddc lib_ctime.ddc lib_ctimer.ddc lib_gethrtime.ddc lib_timegm.ddc lib_gmtime.ddc lib_gmtimer.ddc task_getinfo.ddc tls_getinfo.ddc tls_destruct.ddc lib_readv.ddc lib_writev.ddc lib_preadv.ddc lib_pwritev.ddc lib_access.ddc lib_daemon.ddc lib_swab.ddc lib_pathconf.ddc lib_sysconf.ddc lib_getentropy.ddc lib_getopt_common.ddc lib_getopt.ddc lib_getopt_long.ddc lib_getopt_longonly.ddc lib_getoptvars.ddc lib_getoptargp.ddc lib_getopterrp.ddc lib_getoptindp.ddc lib_getoptoptp.ddc lib_times.ddc lib_alarm.ddc lib_fstatvfs.ddc lib_statvfs.ddc lib_sleep.ddc lib_nice.ddc lib_usleep.ddc lib_seteuid.ddc lib_setegid.ddc lib_geteuid.ddc lib_getegid.ddc lib_setreuid.ddc lib_setregid.ddc lib_getrusage.ddc lib_utime.ddc lib_utimes.ddc lib_setrlimit.ddc lib_getrlimit.ddc lib_setpriority.ddc lib_getpriority.ddc lib_futimes.ddc lib_lutimes.ddc lib_gethostname.ddc lib_sethostname.ddc lib_fchownat.ddc lib_linkat.ddc lib_readlinkat.ddc lib_symlinkat.ddc lib_unlinkat.ddc lib_setuid.ddc lib_setgid.ddc lib_getuid.ddc lib_getgid.ddc lib_chdir.ddc lib_fchdir.ddc lib_getcwd.ddc lib_restoredir.ddc lib_execl.ddc lib_execle.ddc lib_execv.ddc lib_truncate.ddc lib_posix_fallocate.ddc lib_uuid_compare.ddc lib_uuid_create.ddc lib_uuid_create_nil.ddc lib_uuid_equal.ddc lib_uuid_from_string.ddc lib_uuid_hash.ddc lib_uuid_is_nil.ddc lib_uuid_stream.ddc lib_uuid_to_string.ddc lib_wcscmp.ddc lib_wcslen.ddc lib_wmemchr.ddc lib_wmemcmp.ddc lib_wmemcpy.ddc lib_wmemmove.ddc lib_wmemset.ddc lib_btowc.ddc lib_mbrtowc.ddc lib_wctob.ddc lib_wcslcpy.ddc lib_wcsxfrm.ddc lib_wcrtomb.ddc lib_wcsftime.ddc lib_wcscoll.ddc lib_wcstol.ddc lib_wcstoll.ddc lib_wcstoul.ddc lib_wcstoull.ddc lib_wcstold.ddc lib_wcstof.ddc lib_wcstod.ddc lib_swprintf.ddc lib_mbsnrtowcs.ddc lib_wcsnrtombs.ddc lib_mbsinit.ddc lib_mbrlen.ddc lib_mbsrtowcs.ddc lib_wcsrtombs.ddc lib_wctype.ddc lib_iswctype.ddc lib_towlower.ddc lib_towupper.ddc > bin/Make.dep; fi
rm -f lib_assert.ddc lib_builtin_getname.ddc lib_builtin_isavail.ddc lib_builtin_forindex.ddc lib_isalnum.ddc lib_isalpha.ddc lib_isascii.ddc lib_isblank.ddc lib_iscntrl.ddc lib_isdigit.ddc lib_isgraph.ddc lib_islower.ddc lib_isprint.ddc lib_ispunct.ddc lib_isspace.ddc lib_isupper.ddc lib_isxdigit.ddc lib_tolower.ddc lib_toupper.ddc lib_readdirr.ddc lib_telldir.ddc lib_alphasort.ddc lib_scandir.ddc lib_ftw.ddc lib_nftw.ddc lib_opendir.ddc lib_fdopendir.ddc lib_closedir.ddc lib_readdir.ddc lib_rewinddir.ddc lib_seekdir.ddc lib_dirfd.ddc lib_versionsort.ddc lib_errno.ddc lib_fixedmath.ddc lib_b16sin.ddc lib_b16cos.ddc lib_b16atan2.ddc lib_ubsqrt.ddc lib_getgrgid.ddc lib_getgrgidr.ddc lib_getgrnam.ddc lib_getgrnamr.ddc lib_initgroups.ddc lib_getgrbuf.ddc lib_getgrbufr.ddc lib_imaxabs.ddc lib_strtoimax.ddc lib_strtoumax.ddc lib_basename.ddc lib_dirname.ddc arch_elf.ddc lib_mknod.ddc lib_umask.ddc lib_utsname.ddc lib_getrandom.ddc lib_xorshift128.ddc lib_tea_encrypt.ddc lib_tea_decrypt.ddc lib_cxx_initialize.ddc lib_impure.ddc lib_memfd.ddc lib_mutex.ddc lib_fchmodat.ddc lib_fstatat.ddc lib_getfullpath.ddc lib_openat.ddc lib_mkdirat.ddc lib_utimensat.ddc lib_umul32.ddc lib_umul64.ddc lib_umul32x64.ddc lib_uadd32x64.ddc lib_uadd64.ddc lib_usub64x32.ddc lib_usub64.ddc lib_dumpbuffer.ddc lib_dumpvbuffer.ddc lib_fnmatch.ddc lib_debug.ddc lib_crc64.ddc lib_crc32.ddc lib_crc16.ddc lib_crc16ccitt.ddc lib_crc8.ddc lib_crc8ccitt.ddc lib_crc8table.ddc lib_glob.ddc lib_execinfo.ddc lib_ftok.ddc lib_err.ddc lib_envpath.ddc lib_addrconfig.ddc lib_base64.ddc lib_htons.ddc lib_htonl.ddc lib_inetaddr.ddc lib_inetaton.ddc lib_inetntoa.ddc lib_inetntop.ddc lib_inetpton.ddc lib_inetnetwork.ddc lib_etherntoa.ddc lib_etheraton.ddc lib_obstack_init.ddc lib_obstack_alloc.ddc lib_obstack_copy.ddc lib_obstack_free.ddc lib_obstack_make_room.ddc lib_obstack_blank.ddc lib_obstack_grow.ddc lib_obstack_finish.ddc lib_obstack_object_size.ddc lib_obstack_room.ddc lib_obstack_printf.ddc lib_obstack_vprintf.ddc lib_obstack_malloc.ddc pthread_keycreate.ddc pthread_setspecific.ddc pthread_getspecific.ddc pthread_keydelete.ddc pthread_attr_init.ddc pthread_attr_destroy.ddc pthread_attr_setschedpolicy.ddc pthread_attr_getschedpolicy.ddc pthread_attr_setinheritsched.ddc pthread_attr_getinheritsched.ddc pthread_attr_setdetachstate.ddc pthread_attr_getdetachstate.ddc pthread_attr_setstackaddr.ddc pthread_attr_getstackaddr.ddc pthread_attr_setstacksize.ddc pthread_attr_getstacksize.ddc pthread_attr_setstack.ddc pthread_attr_getstack.ddc pthread_attr_setschedparam.ddc pthread_attr_getschedparam.ddc pthread_barrierattr_init.ddc pthread_barrierattr_destroy.ddc pthread_barrierattr_getpshared.ddc pthread_barrierattr_setpshared.ddc pthread_barrierinit.ddc pthread_barrierdestroy.ddc pthread_condattr_init.ddc pthread_condattr_destroy.ddc pthread_condattr_getpshared.ddc pthread_condattr_setpshared.ddc pthread_condattr_setclock.ddc pthread_condattr_getclock.ddc pthread_condinit.ddc pthread_conddestroy.ddc pthread_condtimedwait.ddc pthread_create.ddc pthread_exit.ddc pthread_kill.ddc pthread_setname_np.ddc pthread_getname_np.ddc pthread_get_stackaddr_np.ddc pthread_get_stacksize_np.ddc pthread_mutexattr_init.ddc pthread_mutexattr_destroy.ddc pthread_mutexattr_getpshared.ddc pthread_mutexattr_setpshared.ddc pthread_mutexattr_setprotocol.ddc pthread_mutexattr_getprotocol.ddc pthread_mutexattr_settype.ddc pthread_mutexattr_gettype.ddc pthread_mutexattr_setrobust.ddc pthread_mutexattr_getrobust.ddc pthread_mutex_lock.ddc pthread_once.ddc pthread_yield.ddc pthread_atfork.ddc pthread_rwlockattr_init.ddc pthread_rwlockattr_destroy.ddc pthread_rwlockattr_getpshared.ddc pthread_rwlockattr_setpshared.ddc pthread_rwlock.ddc pthread_rwlock_rdlock.ddc pthread_rwlock_wrlock.ddc pthread_setcancelstate.ddc pthread_setcanceltype.ddc pthread_testcancel.ddc lib_getpwnam.ddc lib_getpwnamr.ddc lib_getpwuid.ddc lib_getpwuidr.ddc lib_getpwbuf.ddc lib_getpwbufr.ddc sq_addafter.ddc sq_remlast.ddc sq_remfirst.ddc sq_remafter.ddc sq_count.ddc dq_addafter.ddc dq_remlast.ddc dq_remfirst.ddc dq_remafter.ddc dq_count.ddc sched_getprioritymax.ddc sched_getprioritymin.ddc clock_ticks2time.ddc clock_time2ticks.ddc clock_timespec_add.ddc clock_timespec_subtract.ddc task_setcanceltype.ddc task_testcancel.ddc task_startup.ddc sem_init.ddc sem_getprotocol.ddc sem_getvalue.ddc sem_setprotocol.ddc sig_addset.ddc sig_delset.ddc sig_emptyset.ddc sig_fillset.ddc sig_nandset.ddc sig_andset.ddc sig_orset.ddc sig_xorset.ddc sig_isemptyset.ddc sig_hold.ddc sig_ignore.ddc sig_ismember.ddc sig_pause.ddc sig_psignal.ddc sig_raise.ddc sig_relse.ddc sig_set.ddc sig_signal.ddc sig_wait.ddc lib_psfa_addaction.ddc lib_psfa_addclose.ddc lib_psfa_adddup2.ddc lib_psfa_addopen.ddc lib_psfa_destroy.ddc lib_psfa_init.ddc lib_psa_getflags.ddc lib_psa_getschedparam.ddc lib_psa_getschedpolicy.ddc lib_psa_init.ddc lib_psa_setflags.ddc lib_psa_setschedparam.ddc lib_psa_setschedpolicy.ddc lib_psa_getsigmask.ddc lib_psa_setsigmask.ddc lib_psa_getstacksize.ddc lib_psa_setstacksize.ddc lib_psa_getstackaddr.ddc lib_psa_setstackaddr.ddc lib_psfa_dump.ddc lib_psa_dump.ddc lib_fileno.ddc lib_printf.ddc lib_sprintf.ddc lib_asprintf.ddc lib_snprintf.ddc lib_libsprintf.ddc lib_vsprintf.ddc lib_vasprintf.ddc lib_vsnprintf.ddc lib_dprintf.ddc lib_vdprintf.ddc lib_vprintf.ddc lib_perror.ddc lib_putchar.ddc lib_getchar.ddc lib_puts.ddc lib_gets_s.ddc lib_gets.ddc lib_libdgets.ddc lib_sscanf.ddc lib_vsscanf.ddc lib_libvscanf.ddc lib_libvsprintf.ddc lib_remove.ddc lib_tempnam.ddc lib_tmpnam.ddc lib_ultoa_invert.ddc lib_renameat.ddc lib_fopen.ddc lib_freopen.ddc lib_fclose.ddc lib_fread.ddc lib_libfread.ddc lib_fseek.ddc lib_fseeko.ddc lib_ftell.ddc lib_ftello.ddc lib_fsetpos.ddc lib_getdelim.ddc lib_fgetpos.ddc lib_getc.ddc lib_fgetc.ddc lib_fgets.ddc lib_libfgets.ddc lib_fwrite.ddc lib_libfwrite.ddc lib_fflush.ddc lib_libflushall.ddc lib_libfflush.ddc lib_rdflush.ddc lib_wrflush.ddc lib_putc.ddc lib_fputc.ddc lib_fputs.ddc lib_ungetc.ddc lib_fprintf.ddc lib_vfprintf.ddc lib_feof.ddc lib_ferror.ddc lib_rewind.ddc lib_clearerr.ddc lib_scanf.ddc lib_vscanf.ddc lib_fscanf.ddc lib_vfscanf.ddc lib_tmpfile.ddc lib_setbuf.ddc lib_setvbuf.ddc lib_libstream.ddc lib_libfilelock.ddc lib_libgetstreams.ddc lib_setbuffer.ddc lib_abs.ddc lib_abort.ddc lib_atof.ddc lib_atoi.ddc lib_getprogname.ddc lib_atol.ddc lib_atoll.ddc lib_div.ddc lib_ldiv.ddc lib_lldiv.ddc lib_exit.ddc lib_itoa.ddc lib_labs.ddc lib_llabs.ddc lib_realpath.ddc lib_bsearch.ddc lib_rand.ddc lib_rand48.ddc lib_qsort.ddc lib_srand.ddc lib_strtol.ddc lib_strtoll.ddc lib_strtoul.ddc lib_strtoull.ddc lib_strtold.ddc lib_checkbase.ddc lib_mktemp.ddc lib_mkstemp.ddc lib_mkdtemp.ddc lib_aligned_alloc.ddc lib_posix_memalign.ddc lib_valloc.ddc lib_mblen.ddc lib_mbtowc.ddc lib_wctomb.ddc lib_mbstowcs.ddc lib_wcstombs.ddc lib_atexit.ddc lib_meminstream.ddc lib_memoutstream.ddc lib_memsistream.ddc lib_memsostream.ddc lib_lowoutstream.ddc lib_rawinstream.ddc lib_rawoutstream.ddc lib_rawsistream.ddc lib_rawsostream.ddc lib_zeroinstream.ddc lib_nullinstream.ddc lib_nulloutstream.ddc lib_mtdoutstream.ddc lib_libnoflush.ddc lib_libsnoflush.ddc lib_syslogstream.ddc lib_syslograwstream.ddc lib_bufferedoutstream.ddc lib_hexdumpstream.ddc lib_stdinstream.ddc lib_stdoutstream.ddc lib_stdsistream.ddc lib_stdsostream.ddc lib_blkoutstream.ddc lib_ffs.ddc lib_ffsl.ddc lib_ffsll.ddc lib_fls.ddc lib_flsl.ddc lib_flsll.ddc lib_isbasedigit.ddc lib_memccpy.ddc lib_memrchr.ddc lib_memmem.ddc lib_popcount.ddc lib_popcountl.ddc lib_popcountll.ddc lib_skipspace.ddc lib_stpcpy.ddc lib_stpncpy.ddc lib_strcasecmp.ddc lib_strcat.ddc lib_strcspn.ddc lib_strchrnul.ddc lib_strdup.ddc lib_strerror.ddc lib_strncasecmp.ddc lib_strncat.ddc lib_strncmp.ddc lib_strndup.ddc lib_strcasestr.ddc lib_strpbrk.ddc lib_strrchr.ddc lib_strspn.ddc lib_strstr.ddc lib_strtok.ddc lib_strtokr.ddc lib_strsep.ddc lib_strerrorr.ddc lib_explicit_bzero.ddc lib_strsignal.ddc lib_index.ddc lib_rindex.ddc lib_timingsafe_bcmp.ddc lib_strverscmp.ddc lib_mempcpy.ddc lib_rawmemchr.ddc lib_bzero.ddc lib_memchr.ddc lib_memcmp.ddc lib_memmove.ddc lib_memset.ddc lib_strchr.ddc lib_strcmp.ddc lib_strcpy.ddc lib_strlcat.ddc lib_strlcpy.ddc lib_strlen.ddc lib_strncpy.ddc lib_strnlen.ddc lib_memcpy.ddc symtab_findbyname.ddc symtab_findbyvalue.ddc symtab_sortbyname.ddc lib_syslog.ddc lib_setlogmask.ddc lib_cfspeed.ddc lib_cfmakeraw.ddc lib_isatty.ddc lib_tcflush.ddc lib_tcdrain.ddc lib_tcflow.ddc lib_tcgetattr.ddc lib_tcsetattr.ddc lib_tcsendbreak.ddc lib_ttyname.ddc lib_ttynamer.ddc lib_strftime.ddc lib_strptime.ddc lib_calendar2utc.ddc lib_daysbeforemonth.ddc lib_gettimeofday.ddc lib_isleapyear.ddc lib_settimeofday.ddc lib_time.ddc lib_timespec_get.ddc lib_nanosleep.ddc lib_difftime.ddc lib_dayofweek.ddc lib_asctime.ddc lib_asctimer.ddc lib_ctime.ddc lib_ctimer.ddc lib_gethrtime.ddc lib_timegm.ddc lib_gmtime.ddc lib_gmtimer.ddc task_getinfo.ddc tls_getinfo.ddc tls_destruct.ddc lib_readv.ddc lib_writev.ddc lib_preadv.ddc lib_pwritev.ddc lib_access.ddc lib_daemon.ddc lib_swab.ddc lib_pathconf.ddc lib_sysconf.ddc lib_getentropy.ddc lib_getopt_common.ddc lib_getopt.ddc lib_getopt_long.ddc lib_getopt_longonly.ddc lib_getoptvars.ddc lib_getoptargp.ddc lib_getopterrp.ddc lib_getoptindp.ddc lib_getoptoptp.ddc lib_times.ddc lib_alarm.ddc lib_fstatvfs.ddc lib_statvfs.ddc lib_sleep.ddc lib_nice.ddc lib_usleep.ddc lib_seteuid.ddc lib_setegid.ddc lib_geteuid.ddc lib_getegid.ddc lib_setreuid.ddc lib_setregid.ddc lib_getrusage.ddc lib_utime.ddc lib_utimes.ddc lib_setrlimit.ddc lib_getrlimit.ddc lib_setpriority.ddc lib_getpriority.ddc lib_futimes.ddc lib_lutimes.ddc lib_gethostname.ddc lib_sethostname.ddc lib_fchownat.ddc lib_linkat.ddc lib_readlinkat.ddc lib_symlinkat.ddc lib_unlinkat.ddc lib_setuid.ddc lib_setgid.ddc lib_getuid.ddc lib_getgid.ddc lib_chdir.ddc lib_fchdir.ddc lib_getcwd.ddc lib_restoredir.ddc lib_execl.ddc lib_execle.ddc lib_execv.ddc lib_truncate.ddc lib_posix_fallocate.ddc lib_uuid_compare.ddc lib_uuid_create.ddc lib_uuid_create_nil.ddc lib_uuid_equal.ddc lib_uuid_from_string.ddc lib_uuid_hash.ddc lib_uuid_is_nil.ddc lib_uuid_stream.ddc lib_uuid_to_string.ddc lib_wcscmp.ddc lib_wcslen.ddc lib_wmemchr.ddc lib_wmemcmp.ddc lib_wmemcpy.ddc lib_wmemmove.ddc lib_wmemset.ddc lib_btowc.ddc lib_mbrtowc.ddc lib_wctob.ddc lib_wcslcpy.ddc lib_wcsxfrm.ddc lib_wcrtomb.ddc lib_wcsftime.ddc lib_wcscoll.ddc lib_wcstol.ddc lib_wcstoll.ddc lib_wcstoul.ddc lib_wcstoull.ddc lib_wcstold.ddc lib_wcstof.ddc lib_wcstod.ddc lib_swprintf.ddc lib_mbsnrtowcs.ddc lib_wcsnrtombs.ddc lib_mbsinit.ddc lib_mbrlen.ddc lib_mbsrtowcs.ddc lib_wcsrtombs.ddc lib_wctype.ddc lib_iswctype.ddc lib_towlower.ddc lib_towupper.ddc
make[2]: Leaving directory 'nuttx/libs/libc'
touch .depend
make[1]: Leaving directory 'nuttx/libs/libc'
make[1]: Entering directory 'nuttx/mm'
make makedepfile OBJPATH="bin"
make[2]: Entering directory 'nuttx/mm'
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_initialize.c > mm_initialize.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_lock.c > mm_lock.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_addfreechunk.c > mm_addfreechunk.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_size2ndx.c > mm_size2ndx.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_malloc_size.c > mm_malloc_size.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_shrinkchunk.c > mm_shrinkchunk.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_brkaddr.c > mm_brkaddr.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path circbuf --dep-path mempool --dep-path map "riscv64-unknown-elf-gcc" -- -fno-common -Wall -Wstrict-prototypes -Wshadow -Wundef -Os -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections -fdata-sections -g -march=rv64imac -mabi=lp64 -mcmodel=medany -isystem nuttx/include -D__NuttX__ -DNDEBUG -D__KERNEL__ -pipe -I nuttx/mm -- mm_heap/mm_calloc.c > mm_calloc.ddc
nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path mm_heap --dep-path umm_heap --dep-path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment