a-lunev commented on issue #3737:
URL:
https://github.com/apache/incubator-nuttx/issues/3737#issuecomment-844574935
Finally, I found the exact commit that broke the symbol table creation for
nxflat example: f16a765ccaa9395250423c4498a9e31aac5a558d
I've tried the following correction on top of the current master branch and
it fixed the issue:
```
diff --git a/examples/nxflat/tests/Makefile b/examples/nxflat/tests/Makefile
index 7640a5d0..28c977fa 100644
--- a/examples/nxflat/tests/Makefile
+++ b/examples/nxflat/tests/Makefile
@@ -90,7 +90,7 @@ $(DIRLIST_SRC): install
# Create the exported symbol table list from the derived *-thunk.S files
$(SYMTAB_SRC): install
- $(Q) $(APPDIR)/tools/mksymtab.sh $(ROMFS_DIR) g_nxflat >[email protected]
+ $(Q) $(APPDIR)/tools/mksymtab.sh $(TESTS_DIR) g_nxflat >[email protected]
$(Q) $(call TESTANDREPLACEFILE, [email protected], $@)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]