-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Closed
Labels
Description
One of my colleagues pointed out to me that the new Matlab R2014 changes its compiling behavior, and instead we should use a slightly different compiling command now:
===Old===
CXXFLAGS="$$CXXFLAGS
CXXLIBS="$$CXXLIBS $(LDFLAGS)"
-o
===New===
CXXFLAGS="$$CXXFLAGS
$(LDFLAGS)
-output
Not sure if the new command will be compatible with older versions though, but I think it'll be worth noting here for the record, in case someone bumps into the same problem.