We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-sINLINING_LIMIT
1 parent 43031aa commit 3494e22Copy full SHA for 3494e22
build/config/BUILDCONFIG.gn
@@ -445,6 +445,10 @@ if (is_win) {
445
]
446
}
447
448
+if (is_wasm) {
449
+ _native_compiler_configs += [ "//build/config/wasm:limit_inlining" ]
450
+}
451
+
452
# Executable defaults.
453
_executable_configs =
454
_native_compiler_configs + [ "//build/config:default_libs" ]
build/config/wasm/BUILD.gn
@@ -0,0 +1,8 @@
1
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
2
+# Use of this source code is governed by a BSD-style license that can be
3
+# found in the LICENSE file.
4
5
+config("limit_inlining") {
6
+ cflags = [ "-sINLINING_LIMIT=1" ]
7
+ ldflags = [ "-sINLINING_LIMIT=1" ]
8
0 commit comments