Home » Projects » FLAME Framework » Tracker » libmboard » Edit Tracker Item
This will allow the xparser to check version compatibility at runtime
Submitted By: Shawn Chin Adddate: 2009-05-07 08:51:42 Since libmboard is only linked when the models are compiled, perhaps it might make more sense to provide a binary that can be called from the Makefile rather than at run-time?
Submitted By: Shawn Chin Adddate: 2009-05-27 16:11:57 This was implemented as a separate script which will be installed as mboard-check-minversion Example usage in Makefile target # Executable depends on object files MINVER = "0.2.2" CHKVER = $(LIBMBOARD_DIR)/bin/mboard-check-minversion $(EXECUTABLE): $(OBJECTS) @$(CHKVER) $(MINVER) $(CC) $(LDFLAGS) $(OBJECTS) -o $@