Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/react-native-reanimated/android/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ set(CMAKE_CXX_STANDARD 20)
include("${REACT_NATIVE_DIR}/ReactAndroid/cmake-utils/folly-flags.cmake")
add_compile_options(${folly_FLAGS})

// Turn off build IDs for reproducibility (ensuring the same code will produce the same bundle when built)
// See https://gitlab.com/IzzyOnDroid/repo/-/wikis/Reproducible-Builds/RB-Hints-for-Developers#no-funny-build-time-generated-ids
// for more information
add_link_options(
-Wl,--build-id=none
)
Comment on lines +14 to +19
Copy link
Member

@tomekzaw tomekzaw Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// Turn off build IDs for reproducibility (ensuring the same code will produce the same bundle when built)
// See https://gitlab.com/IzzyOnDroid/repo/-/wikis/Reproducible-Builds/RB-Hints-for-Developers#no-funny-build-time-generated-ids
// for more information
add_link_options(
-Wl,--build-id=none
)
add_link_options(-Wl,--build-id)


string(
APPEND
CMAKE_CXX_FLAGS
Expand Down
7 changes: 7 additions & 0 deletions packages/react-native-worklets/android/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ set(CMAKE_CXX_STANDARD 20)
include("${REACT_NATIVE_DIR}/ReactAndroid/cmake-utils/folly-flags.cmake")
add_compile_options(${folly_FLAGS})

// Turn off build IDs for reproducibility (ensuring the same code will produce the same bundle when built)
// See https://gitlab.com/IzzyOnDroid/repo/-/wikis/Reproducible-Builds/RB-Hints-for-Developers#no-funny-build-time-generated-ids
// for more information
add_link_options(
-Wl,--build-id=none
)
Comment on lines +14 to +19
Copy link
Member

@tomekzaw tomekzaw Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// Turn off build IDs for reproducibility (ensuring the same code will produce the same bundle when built)
// See https://gitlab.com/IzzyOnDroid/repo/-/wikis/Reproducible-Builds/RB-Hints-for-Developers#no-funny-build-time-generated-ids
// for more information
add_link_options(
-Wl,--build-id=none
)
add_link_options(-Wl,--build-id)


string(
APPEND
CMAKE_CXX_FLAGS
Expand Down
Loading