Skip to content

Commit

Permalink
fix shared libary compile on ppc
Browse files Browse the repository at this point in the history
shared-ppc-objects is missed in $(SHARED4) target
  • Loading branch information
zhsj committed Mar 16, 2018
1 parent da82aab commit fc88383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ ifeq ($(HAVE_POWER8),1)
shared_all_libobjects = $(shared_libobjects) $(shared-ppc-objects)
endif
$(SHARED4): $(shared_all_libobjects)
$(CXX) $(PLATFORM_SHARED_LDFLAGS)$(SHARED3) $(CXXFLAGS) $(PLATFORM_SHARED_CFLAGS) $(shared_libobjects) $(LDFLAGS) -o $@
$(CXX) $(PLATFORM_SHARED_LDFLAGS)$(SHARED3) $(CXXFLAGS) $(PLATFORM_SHARED_CFLAGS) $(shared_all_libobjects) $(LDFLAGS) -o $@

endif # PLATFORM_SHARED_EXT

Expand Down

0 comments on commit fc88383

Please sign in to comment.