Skip to content

Commit

Permalink
Merge pull request #12667 from YaqiWang/minor_app_mk_change_12666
Browse files Browse the repository at this point in the history
Add additional lib linkage before libmesh lib
  • Loading branch information
permcody committed Jan 10, 2019
2 parents d7d9c8d + 7274252 commit 18c1a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/app.mk
Expand Up @@ -351,7 +351,7 @@ endif
$(app_EXEC): $(app_LIBS) $(mesh_library) $(main_object) $(app_test_LIB) $(depend_test_libs) $(ADDITIONAL_DEPEND_LIBS)
@echo "Linking Executable "$@"..."
@$(libmesh_LIBTOOL) --tag=CXX $(LIBTOOLFLAGS) --mode=link --quiet \
$(libmesh_CXX) $(libmesh_CXXFLAGS) -o $@ $(main_object) $(applibs) $(libmesh_LIBS) $(libmesh_LDFLAGS) $(depend_test_libs_flags) $(EXTERNAL_FLAGS) $(ADDITIONAL_LIBS)
$(libmesh_CXX) $(libmesh_CXXFLAGS) -o $@ $(main_object) $(applibs) $(ADDITIONAL_LIBS) $(libmesh_LIBS) $(libmesh_LDFLAGS) $(depend_test_libs_flags) $(EXTERNAL_FLAGS)
@$(codesign)

# Clang static analyzer
Expand Down

0 comments on commit 18c1a12

Please sign in to comment.