Fix third party libraries possibly not being linked to when building Linux server dll
This commit is contained in:
parent
ab5735c1cf
commit
1dd67a896f
2 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
### Bug fixes
|
||||
|
||||
* Disabled GCC optimization that prevents mod dlls from unloading after engine calls dlclose
|
||||
* Fixed third party libraries possibly not being linked to when building Linux server dll (Thanks a1batross)
|
||||
|
||||
### Features
|
||||
|
||||
|
|
|
@ -149,7 +149,7 @@ dirs:
|
|||
-mkdir -p $(COMMON_OBJ_DIR)
|
||||
|
||||
hl.$(SHLIBEXT): $(HLDLL_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS) $(PUBLIC_OBJS) $(COMMON_OBJS)
|
||||
$(CPLUS) $(LDFLAGS) $(CPP_LIB) $(SHLIBLDFLAGS) -o $(BUILD_DIR)/$@ $(HLDLL_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS) $(PUBLIC_OBJS) $(COMMON_OBJS)
|
||||
$(CPLUS) $(LDFLAGS) $(SHLIBLDFLAGS) -o $(BUILD_DIR)/$@ $(HLDLL_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS) $(PUBLIC_OBJS) $(COMMON_OBJS) $(CPP_LIB)
|
||||
./gendbg.sh $(BUILD_DIR)/hl.$(SHLIBEXT)
|
||||
|
||||
$(HLDLL_OBJ_DIR)/%.o : $(HLDLL_SRC_DIR)/%.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue