Skip to content

Commit

Permalink
IPHONE: Pass $CPPFLAGS to build command line for ObjC files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schickel committed Feb 19, 2012
1 parent 13358c5 commit a9b7477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.common
Expand Up @@ -106,7 +106,7 @@ ifdef CXX_UPDATE_DEP_FLAG

%.o: %.m
$(QUIET)$(MKDIR) $(*D)/$(DEPDIR)
$(QUIET_CXX)$(CXX) $(CXX_UPDATE_DEP_FLAG) $(OBJCFLAGS) -c $(<) -o $*.o
$(QUIET_CXX)$(CXX) $(CXX_UPDATE_DEP_FLAG) $(CPPFLAGS) $(OBJCFLAGS) -c $(<) -o $*.o

# Build rule for assembler files with preprocessing
%.o: %.S
Expand Down

0 comments on commit a9b7477

Please sign in to comment.