Just wanted to post a note that the TPP trunk can't be built on OSX at the
moment without modifying the Makefile, due to the change to including a
binary of COMET.
Makefile:1144: *** Can't determine the binary comet executable to use for
ARCH_FAMILY darwin. Stop.
Is there a plan to include a binary of COMET for OSX at any point, or can
the Makefile be modified to not trip up on this (just warn no COMET) if
under OSX, something like the attached diff?
Cheers,
DT
--
You received this message because you are subscribed to the Google Groups
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/spctools-discuss.
For more options, visit https://groups.google.com/groups/opt_out.
Index: Makefile
===================================================================
--- Makefile (revision 6234)
+++ Makefile (working copy)
@@ -1136,20 +1136,21 @@
ifeq ($(ARCH_FAMILY),mingw)
# ...only support Win32 binaries at this time
COMET_BINARY = comet.$(COMET_VERSION).win32.exe
-endif
-ifeq ($(ARCH_FAMILY),linux)
+else ifeq ($(ARCH_FAMILY),linux)
COMET_BINARY = comet.$(COMET_VERSION).linux.exe
endif
-ifeq ($(COMET_BINARY),)
- $(error Can't determine the binary comet executable to use for ARCH_FAMILY $(ARCH_FAMILY))
-endif
.PHONY: comet comet-clean
comet : $(OBJ_ARCH)/comet
$(OBJ_ARCH)/comet : $(SRC_ROOT)../extern/Comet/binaries/$(COMET_BINARY)
- cp -f $^ $@
+ifeq ($(COMET_BINARY),)
+ $(warning No comet binary for ARCH_FAMILY $(ARCH_FAMILY). Comet will not be available)
+else
+ cp -f $^ $@
+endif
+
comet-clean :
rm -f $(OBJ_ARCH)/comet