-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchromium-debug.bat
11 lines (11 loc) · 926 Bytes
/
chromium-debug.bat
1
2
3
4
5
6
7
8
9
10
11
rem chrome_cmd.exe --no-sandbox --js-flags="--trace-opt --trace-deopt --allow-natives-syntax --redirect-code-traces"
rem C:\Chromium\bin\chrome_cmd.exe --js-flags="--trace-deopt --allow-natives-syntax --redirect-code-traces"
rem the above crashes often for some reason (redirect code traces)
rem the below does not
rem C:\Chromium\bin\chrome_cmd.exe --js-flags="--trace-opt --trace-deopt --allow-natives-syntax"
rem changing to gui to see if things show in debugview
rem for some reason --no-sandbox helps debugview?
rem C:\Chromium\bin\chrome_gui.exe --no-sandbox --js-flags="--trace-deopt --allow-natives-syntax --redirect-code-traces"
C:\Chromium\bin\chrome_gui.exe --no-sandbox --js-flags="--code-comments --trace-deopt --allow-natives-syntax --redirect-code-traces"
rem C:\Chromium\bin\chrome_cmd.exe --js-flags="--trace-deopt --allow-natives-syntax"
rem C:\Chromium\bin\chrome_cmd.exe --js-flags="--allow-natives-syntax"