Skip to content

Commit

Permalink
Set clang_use_chrome_plugins = false
Browse files Browse the repository at this point in the history
This skips many extra warnings, such as `chromium-rawptr` which broke today's build.
  • Loading branch information
bblanchon committed Feb 19, 2024
1 parent c05ee82 commit c482b01
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions steps/05-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,23 @@ mkdir -p "$BUILD"
fi

case "$OS" in
android)
echo "clang_use_chrome_plugins = false"
;;
ios)
echo "ios_enable_code_signing = false"
echo "use_blink = true"
[ "$ENABLE_V8" == "true" ] && [ "$TARGET_CPU" == "arm64" ] && echo 'arm_control_flow_integrity = "none"'
echo "clang_use_chrome_plugins = false"
;;
linux)
echo 'use_allocator_shim = false'
echo "clang_use_chrome_plugins = false"
;;
mac)
echo 'use_allocator_shim = false'
echo 'mac_deployment_target = "10.13.0"'
echo "clang_use_chrome_plugins = false"
;;
wasm)
echo 'pdf_is_complete_lib = true'
Expand Down

0 comments on commit c482b01

Please sign in to comment.