nealef commented on PR #2026:
URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-1728906803
How can I tell what's in the `nuttx-apps` it's building against? In NuttX
there is:
```
SHMODULEFLAGS = -Bsymbolic -G -Bdynamic
:
:
ifeq ($(CONFIG_SIM_M32),y)
LDLINKFLAGS += -melf_i386
LDFLAGS += -m32
LDMODULEFLAGS += -melf_i386
SHMODULEFLAGS += -melf_i386
LDELFFLAGS += -melf_i386
endif
```
and in my branch of `nuttx-apps` is:
```
$(BIN): $(OBJS)
@echo "MODULELD: $<"
$(Q) $(MODULELD) $(SHMODULEFLAGS) $(LDLIBPATH) -o $@ $^ $(LDLIBS)
```
Which had solved the earlier problem of (1) the no _start symbol and (2) the
mismatch between architectures. Is there a way of seeing the code this latest
failure was built from to see if I've missed a commit or regressed something?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]