浏览代码

package/qt5/qt5webkit: disable sampling profiler on musl

Disable sampling profiler on musl to avoid the following build falure
raised since bump to version 5.212.0-alpha4 in commit
df0b0fe6919c0d0f3750f439a3cfa765232bd569:

/home/buildroot/autobuild/instance-0/output-1/build/qt5webkit-5.212.0-alpha4/Source/JavaScriptCore/heap/MachineStackMarker.cpp:686:2: error: #error Need a way to get the frame pointer for another thread on this platform
  686 | #error Need a way to get the frame pointer for another thread on this platform
      |  ^~~~~

Fixes:
 - http://autobuild.buildroot.org/results/87f52db7f8ebefa4c1ae3dd70d4a7a460f9aca35

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Fabrice Fontaine 3 年之前
父节点
当前提交
1636f604bd
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      package/qt5/qt5webkit/qt5webkit.mk

+ 4 - 0
package/qt5/qt5webkit/qt5webkit.mk

@@ -42,6 +42,10 @@ ifeq ($(BR2_PACKAGE_LIBEXECINFO),y)
 QT5WEBKIT_DEPENDENCIES += libexecinfo
 endif
 
+ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
+QT5WEBKIT_CONF_OPTS += -DENABLE_SAMPLING_PROFILER=OFF
+endif
+
 QT5WEBKIT_CONF_OPTS += \
 	-DENABLE_TOOLS=OFF \
 	-DPORT=Qt \