Linking not hosed now. Fixed via import of -lstdc++.

svn path=/trunk/; revision=3868
This commit is contained in:
Steven Edwards 2002-12-10 17:03:03 +00:00
parent e4493af78d
commit 1ff8dc116a

View file

@ -53,11 +53,11 @@ $(ZLIB_PATH)/zlib.a:
make -C $(ZLIB_PATH) -f makefile.reactos make -C $(ZLIB_PATH) -f makefile.reactos
$(TARGET).exe: $(OBJECTS) $(ZLIB_PATH)/zlib.a $(TARGET).exe: $(OBJECTS) $(ZLIB_PATH)/zlib.a
$(CC) $(OBJECTS) -o $(TARGET).exe $(CC) $(OBJECTS) -lstdc++ -o $(TARGET).exe
$(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
test.exe: $(TEST_OBJECTS) test.exe: $(TEST_OBJECTS)
$(CC) $(TEST_OBJECTS) -o test.exe $(CC) $(TEST_OBJECTS) -lstdc++ -o test.exe
$(NM) --numeric-sort test.exe > test.sym $(NM) --numeric-sort test.exe > test.sym
include ../../../rules.mak include ../../../rules.mak