Skip to content

Commit

Permalink
Remove linking warning from gfortran + clang
Browse files Browse the repository at this point in the history
closes #29009
  • Loading branch information
GiudGiud committed Nov 5, 2024
1 parent af6bed7 commit 8ce00f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/moose.mk
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ $(hit_LIB): $(hit_objects)
$(moose_LIB): $(moose_objects) $(pcre_LIB) $(gtest_LIB) $(hit_LIB) $(pyhit_LIB)
@echo "Linking Library "$@"..."
@$(libmesh_LIBTOOL) --tag=CXX $(LIBTOOLFLAGS) --mode=link --quiet \
$(libmesh_CXX) $(CXXFLAGS) $(libmesh_CXXFLAGS) -o $@ $(moose_objects) $(pcre_LIB) $(png_LIB) $(libmesh_LDFLAGS) $(libmesh_LIBS) $(EXTERNAL_FLAGS) -rpath $(FRAMEWORK_DIR)
$(libmesh_CXX) $(CXXFLAGS) $(libmesh_CXXFLAGS) -o $@ $(moose_objects) $(pcre_LIB) $(png_LIB) $(libmesh_LDFLAGS) $(libmesh_LIBS) $(EXTERNAL_FLAGS) -rpath $(FRAMEWORK_DIR) 2>&1 | grep -v "ld: warning: could not create compact unwind for" | grep -v "could not create compact unwind for"
@$(libmesh_LIBTOOL) --mode=install --quiet install -c $(moose_LIB) $(FRAMEWORK_DIR)

ifeq ($(MOOSE_HEADER_SYMLINKS),true)
Expand Down

0 comments on commit 8ce00f8

Please sign in to comment.