Title: [290274] trunk/Source/WebGPU
Revision
290274
Author
mmaxfi...@apple.com
Date
2022-02-21 16:05:45 -0800 (Mon, 21 Feb 2022)

Log Message

[WebGPU] Fix release build
https://bugs.webkit.org/show_bug.cgi?id=237004

Unreviewed.

If you include WTF, you must have set NDEBUG in release builds.

* Configurations/Base.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebGPU/ChangeLog (290273 => 290274)


--- trunk/Source/WebGPU/ChangeLog	2022-02-21 23:24:21 UTC (rev 290273)
+++ trunk/Source/WebGPU/ChangeLog	2022-02-22 00:05:45 UTC (rev 290274)
@@ -1,5 +1,16 @@
 2022-02-21  Myles C. Maxfield  <mmaxfi...@apple.com>
 
+        [WebGPU] Fix release build
+        https://bugs.webkit.org/show_bug.cgi?id=237004
+
+        Unreviewed.
+
+        If you include WTF, you must have set NDEBUG in release builds.
+
+        * Configurations/Base.xcconfig:
+
+2022-02-21  Myles C. Maxfield  <mmaxfi...@apple.com>
+
         [WebGPU] Fix iOS build
         https://bugs.webkit.org/show_bug.cgi?id=237000
 

Modified: trunk/Source/WebGPU/Configurations/Base.xcconfig (290273 => 290274)


--- trunk/Source/WebGPU/Configurations/Base.xcconfig	2022-02-21 23:24:21 UTC (rev 290273)
+++ trunk/Source/WebGPU/Configurations/Base.xcconfig	2022-02-22 00:05:45 UTC (rev 290274)
@@ -115,6 +115,8 @@
 DEBUG_DEFINES = NDEBUG;
 DEBUG_DEFINES[config=Debug] = ;
 
+GCC_PREPROCESSOR_DEFINITIONS = $(DEBUG_DEFINES);
+
 GCC_OPTIMIZATION_LEVEL = 3;
 GCC_OPTIMIZATION_LEVEL[config=Debug] = 0;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to