mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/36177 react_native_assert calls C `assert()`, where XCode does not have a built-in breakpoint navigator to hook to assertion failures (though you can add a symbolic breakpoint to "abort()" to get the effect). This changes the Apple implemented of `react_native_assert()` to use `NSCAssert` under the hood. This is safe to use in C functions, but will be trapped by the default XCode exceptions breakpoint navigator. Changelog: [iOS][Fixed] - Use NSCAssert() in react_native_assert instead of C assert() Reviewed By: cipolleschi Differential Revision: D43275024 fbshipit-source-id: 43c4e4f1ae6b99f32634d4b1880bce712c3ae8f6
29 lines
778 B
CMake
29 lines
778 B
CMake
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
|
|
add_compile_options(
|
|
-fexceptions
|
|
-frtti
|
|
-std=c++17
|
|
-Wall
|
|
-Wpedantic
|
|
-Wno-gnu-zero-variadic-macro-arguments
|
|
-DLOG_TAG=\"Fabric\")
|
|
|
|
|
|
file(GLOB react_debug_SRC CONFIGURE_DEPENDS android/*.cpp)
|
|
add_library(react_debug SHARED ${react_debug_SRC})
|
|
|
|
target_include_directories(react_debug PUBLIC ${REACT_COMMON_DIR})
|
|
|
|
target_link_libraries(react_debug log folly_runtime)
|
|
|
|
if(${CMAKE_BUILD_TYPE} MATCHES Release)
|
|
target_compile_options(react_debug PUBLIC -DNDEBUG)
|
|
endif()
|