mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-02-05 02:00:44 +03:00
make/rules-meson.mk: Don't force the C++ standard.
We got some build failures with DXVK-NVAPI due to this. They even have CI that uses Proton SDK images but since we create our own cross files they were not anticipating that we may be forcing a C++ standard version. Since everything builds and none of the meson-using subprojects seems to be setting the version via their provided corss files we should be good to just drop it.
This commit is contained in:
parent
955c4ea6b7
commit
66871e9de1
@ -24,7 +24,7 @@ pkgconfig = '$$$$PKG_CONFIG'
|
||||
[properties]
|
||||
needs_exe_wrapper = true
|
||||
c_args = [$$(call list-quote,$$($(2)_INCFLAGS$(3)) $$($(2)_CPPFLAGS) $$(COMMON_FLAGS) $$(COMMON_FLAGS$(3)))]
|
||||
cpp_args = [$$(call list-quote,$$($(2)_INCFLAGS$(3)) $$($(2)_CPPFLAGS) $$(COMMON_FLAGS) $$(COMMON_FLAGS$(3)) -std=c++17)]
|
||||
cpp_args = [$$(call list-quote,$$($(2)_INCFLAGS$(3)) $$($(2)_CPPFLAGS) $$(COMMON_FLAGS) $$(COMMON_FLAGS$(3)))]
|
||||
link_args = [$$(call list-quote,$$($(2)_LIBFLAGS$(3)) $$($(2)_LDFLAGS$(3)) $$($(2)_LDFLAGS) $$(CROSSLDFLAGS))]
|
||||
pkg_config_libdir = '$$$$CROSSPKG_CONFIG_LIBDIR'
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user