mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Fix for invocations and DO
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4757 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
be2e9d5b5c
commit
cbfab8d67a
2 changed files with 16 additions and 0 deletions
|
@ -186,6 +186,17 @@ $(GNUSTEP_OBJ_DIR)/NSMethodSignature.o \
|
|||
$(GNUSTEP_OBJ_DIR)/NSObjCRuntime.o \
|
||||
: $(GNUSTEP_TARGET_CPU)/$(GNUSTEP_TARGET_OS)/mframe.h
|
||||
|
||||
#
|
||||
# Files where optimisation breaks the code!
|
||||
# These have to filter the optimisation flag out.
|
||||
#
|
||||
$(GNUSTEP_OBJ_DIR)/mframe.o : mframe.m
|
||||
$(CC) -c $(filter-out -O%, $(ALL_CPPFLAGS) $(ALL_OBJCFLAGS)) -o $@ $<
|
||||
$(GNUSTEP_OBJ_DIR)/NSConnection.o : NSConnection.m
|
||||
$(CC) -c $(filter-out -O%, $(ALL_CPPFLAGS) $(ALL_OBJCFLAGS)) -o $@ $<
|
||||
$(GNUSTEP_OBJ_DIR)/NSInvocation.o : NSInvocation.m
|
||||
$(CC) -c $(filter-out -O%, $(ALL_CPPFLAGS) $(ALL_OBJCFLAGS)) -o $@ $<
|
||||
|
||||
#
|
||||
# Files that need a rebuild if GSConfig.h is changed.
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue