You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added threads subsetting in emcc compiler model (conan-io#18520)
* Added threads subsetting on emcc compiler model
* Fixed test
* Return list instead
* Update test/integration/toolchains/meson/test_mesontoolchain.py
* Added integration tests to every toolchain
* WIP fix windows tests
* Fix windows autotools tests
---------
Co-authored-by: James <[email protected]>
-- C flags retrieved from CFLAGS environment, conan.conf(tools.build:cflags)and extra_cflags
19
+
-- C flags retrieved from CFLAGS environment, conan.conf(tools.build:cflags), extra_cflags and compiler settings
20
20
filter { files { "**.c" } }
21
21
buildoptions { {{ extra_cflags }} }
22
22
filter {}
23
23
{% endif %}
24
24
{% if extra_cxxflags %}
25
-
-- CXX flags retrieved from CXXFLAGS environment, conan.conf(tools.build:cxxflags)and extra_cxxflags
25
+
-- CXX flags retrieved from CXXFLAGS environment, conan.conf(tools.build:cxxflags), extra_cxxflags and compiler settings
26
26
filter { files { "**.cpp", "**.cxx", "**.cc" } }
27
27
buildoptions { {{ extra_cxxflags }} }
28
28
filter {}
29
29
{% endif %}
30
30
{% if extra_ldflags %}
31
-
-- Link flags retrieved from LDFLAGS environment, conan.conf(tools.build:sharedlinkflags), conan.conf(tools.build:exelinkflags)and extra_cxxflags
31
+
-- Link flags retrieved from LDFLAGS environment, conan.conf(tools.build:sharedlinkflags), conan.conf(tools.build:exelinkflags), extra_cxxflags and compiler settings
0 commit comments