diff options
| author | Roxie Linden <roxie@lindenlab.com> | 2024-08-05 21:34:52 -0700 | 
|---|---|---|
| committer | Roxie Linden <roxie@lindenlab.com> | 2024-08-05 21:34:52 -0700 | 
| commit | 946b165b99fe1cffbb756a6ee8ff3fa7af756cc6 (patch) | |
| tree | b0ac9ad32643c12b1595f4da69649acf74d827bf | |
| parent | e96416bdd2ed20b8b5a1fc08a35c7a4ee4eee832 (diff) | |
Missed file
| -rwxr-xr-x | build.sh | 1 | ||||
| -rw-r--r-- | indra/newview/CMakeLists.txt | 40 | 
2 files changed, 16 insertions, 25 deletions
| @@ -526,7 +526,6 @@ then      # nat 2016-12-22: without RELEASE_CRASH_REPORTING, we have no symbol file.      if [ "${RELEASE_CRASH_REPORTING:-}" != "OFF" ]      then -        # BugSplat wants to see xcarchive.zip          # e.g. build-darwin-x86_64/newview/Release/Second Life Test.sym.tar.gz          symbol_file="${build_dir}/newview/${variant}/${viewer_channel}.sym.tar.gz"          if [[ ! -f "$symbol_file" ]] diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index da4060ccec..8ff96f0f3b 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -2086,7 +2086,7 @@ if (DARWIN)    set(VIEWER_APP_BUNDLE "${CMAKE_CURRENT_BINARY_DIR}/$<IF:$<BOOL:${LL_GENERATOR_IS_MULTI_CONFIG}>,$<CONFIG>,>/${product}.app")    set(VIEWER_APP_EXE "${VIEWER_APP_BUNDLE}/Contents/MacOS/${product}")    set(VIEWER_APP_DSYM "${VIEWER_APP_EXE}.dSYM") -  set(VIEWER_APP_XCARCHIVE "${VIEWER_APP_BUNDLE}/../${product}.xcarchive.zip") +  set(VIEWER_APP_SYMBOLS_ARCHIVE "${VIEWER_APP_BUNDLE}/../${product}.sym.tar.gz")    configure_file(       "${CMAKE_CURRENT_SOURCE_DIR}/Info-SecondLife.plist" @@ -2191,41 +2191,33 @@ if (PACKAGE AND (RELEASE_CRASH_REPORTING OR NON_RELEASE_CRASH_REPORTING) AND VIE        add_dependencies(generate_symbols ${VIEWER_BINARY_NAME})      endif (WINDOWS)      if (DARWIN) -      # Have to run dsymutil first, then pack up the resulting .dSYM directory -      add_custom_command(OUTPUT "${VIEWER_APP_DSYM}" -        COMMAND "dsymutil" -        ARGS -          ${VIEWER_APP_EXE} -        COMMENT "Generating ${VIEWER_APP_DSYM}" -        ) -      add_custom_target(dsym_generate DEPENDS "${VIEWER_APP_DSYM}") -      add_dependencies(dsym_generate ${VIEWER_BINARY_NAME}) -      add_custom_command(OUTPUT "${VIEWER_APP_XCARCHIVE}" -        COMMAND "zip" +        set_target_properties(${VIEWER_BINARY_NAME} +            PROPERTIES +            XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT "dwarf-with-dsym" +            XCODE_ATTRIBUTE_DWARF_DSYM_FOLDER_PATH "${SYMBOLS_STAGING_DIR}") +        add_custom_command(OUTPUT "${VIEWER_APP_SYMBOLS_ARCHIVE}" +        COMMAND "tar"          ARGS -          "-r" -          "${VIEWER_APP_XCARCHIVE}" +          "-cJf" +          "${VIEWER_APP_SYMBOLS_ARCHIVE}" +          "-C" +          "${SYMBOLS_STAGING_DIR}"            "." -        WORKING_DIRECTORY "${VIEWER_APP_DSYM}/.." -        DEPENDS "${VIEWER_APP_DSYM}" -        COMMENT "Generating xcarchive.zip for upload to BugSplat" +        DEPENDS "${VIEWER_BINARY_NAME}" +        COMMENT "Generating symbols archive for upload to BugSplat"          ) -      add_custom_target(dsym_xcarchive DEPENDS "${VIEWER_APP_XCARCHIVE}") -      add_dependencies(dsym_xcarchive dsym_generate)        # Have to create a stamp file, and depend on it, to force CMake to run        # the cleanup step.        add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/dsym.stamp"          COMMAND rm -rf "${VIEWER_APP_DSYM}"          COMMAND touch "${CMAKE_CURRENT_BINARY_DIR}/dsym.stamp" -        DEPENDS "${VIEWER_APP_XCARCHIVE}" -        COMMENT "Cleaning up dSYM" +        DEPENDS "${VIEWER_APP_SYMBOLS_ARCHIVE}" +        COMMENT "Cleaning up symbols archive"          )        add_custom_target(generate_symbols DEPENDS -        "${VIEWER_APP_DSYM}" -        "${VIEWER_APP_XCARCHIVE}" +        "${VIEWER_APP_SYMBOLS_ARCHIVE}"          "${CMAKE_CURRENT_BINARY_DIR}/dsym.stamp"          ) -      add_dependencies(generate_symbols dsym_xcarchive)      endif (DARWIN)      if (LINUX)        # TBD | 
