Skip to content

Commit

Permalink
Remove verbose flag from strip
Browse files Browse the repository at this point in the history
  • Loading branch information
a-maurice committed Feb 12, 2025
1 parent 66044c1 commit 1100d94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/build_shared.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function(build_firebase_shared LIBRARY_NAME ARTIFACT_NAME OUTPUT_NAME)
"-Wl,-z,max-page-size=16384"
)
add_custom_command(TARGET ${shared_target} POST_BUILD
COMMAND "${ANDROID_STRIP}" -g -S -d --strip-debug --verbose
COMMAND "${ANDROID_STRIP}" -g -S -d --strip-debug
"lib${OUTPUT_NAME}.so"
COMMENT "Strip debug symbols done on final binary. lib${OUTPUT_NAME}.so")
endif()
Expand Down
2 changes: 1 addition & 1 deletion cmake/build_universal.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function(build_uni TARGET_LINK_LIB_NAMES PROJECT_LIST_HEADER_VARIABLE)
"-Wl,-z,max-page-size=16384"
)
add_custom_command(TARGET firebase_app_uni POST_BUILD
COMMAND "${ANDROID_STRIP}" -g -S -d --strip-debug --verbose
COMMAND "${ANDROID_STRIP}" -g -S -d --strip-debug
"lib${FIREBASE_APP_UNI_VERSIONED}.so"
COMMENT "Strip debug symbols done on final binary. lib${FIREBASE_APP_UNI_VERSIONED}.so")
endif()
Expand Down

0 comments on commit 1100d94

Please sign in to comment.