comparison test/callback_plain_c++/Makefile.embedded @ 557:b36a738c8975

- dyncallback: fix for calling back win/x64 C++ methods returning non-trivial aggregates (thanks Raphael!) - test/callback_plain_c++: * added test code for C++ method callbacks returning non-trivial aggregates * makefile linker command fix (was linking assuming c and not c++) - test/plain_c++: comments for completeness
author Tassilo Philipp
date Sat, 20 Aug 2022 21:04:15 +0200
parents ca28e9e3c644
children
comparison
equal deleted inserted replaced
556:49b60ca068c2 557:b36a738c8975
9 9
10 all: ${APP} 10 all: ${APP}
11 11
12 .PHONY: all clean install 12 .PHONY: all clean install
13 13
14 ${APP}: ${OBJS} 14 ${APP}: ${OBJS}
15 ${CC} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP} 15 ${CXX} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP}
16 16
17 clean: 17 clean:
18 rm -f ${APP} ${OBJS} 18 rm -f ${APP} ${OBJS}
19 19