mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Linking not hosed now. Fixed via import of -lstdc++.
svn path=/trunk/; revision=3868
This commit is contained in:
parent
e4493af78d
commit
1ff8dc116a
1 changed files with 2 additions and 2 deletions
|
@ -53,11 +53,11 @@ $(ZLIB_PATH)/zlib.a:
|
|||
make -C $(ZLIB_PATH) -f makefile.reactos
|
||||
|
||||
$(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
|
||||
|
||||
test.exe: $(TEST_OBJECTS)
|
||||
$(CC) $(TEST_OBJECTS) -o test.exe
|
||||
$(CC) $(TEST_OBJECTS) -lstdc++ -o test.exe
|
||||
$(NM) --numeric-sort test.exe > test.sym
|
||||
|
||||
include ../../../rules.mak
|
||||
|
|
Loading…
Reference in a new issue