mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 19:40:24 +00:00
make: ObjC compile cmd fix
CXX was used for ObjC compilation but with some recent autoconf update to 2.72, CXX is set to "g++ -std=gnu++11" because clang there without -std uses C++98, which was perhaps mishandled by the former autoconf versions. Using CC (== gcc) corrects that.
This commit is contained in:
@@ -279,7 +279,7 @@ POSTPROCESS_DEPS = \
|
||||
|
||||
%.o: %.m
|
||||
$(MKDIR_P) $(dir $@)
|
||||
$(CXX) $(CFLAGS) $(INC) -MD -c $< -o $@
|
||||
$(CC) $(CFLAGS) $(INC) -MD -c $< -o $@
|
||||
$(POSTPROCESS_DEPS)
|
||||
|
||||
%.o: %.mm
|
||||
|
||||
Reference in New Issue
Block a user