File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -594,13 +594,13 @@ jobs:
594
594
595
595
- name : VAR_BUILD_TYPE 7
596
596
if : matrix.centos == 7
597
- run : echo Release > VAR_BUILD_TYPE
597
+ run : echo MinSizeRel > VAR_BUILD_TYPE
598
598
599
- # Using Debug to avoid segfault that appeared around 2021-06-04,
599
+ # Using Release to avoid segfault that appeared around 2021-06-04,
600
600
# apparently when the gcc version changed from 8.3 to 8.4.
601
601
- name : VAR_BUILD_TYPE 8
602
602
if : matrix.centos == 8
603
- run : echo Debug > VAR_BUILD_TYPE
603
+ run : echo Release > VAR_BUILD_TYPE
604
604
605
605
- name : Configure
606
606
shell : bash
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ Add a module and setup all helpers. You can select the type of the library; the
147
147
default is ``MODULE``. There are several options:
148
148
149
149
``OPT_SIZE``
150
- Optimize for size, even if the ``CMAKE_BUILD_TYPE`` is not ``RelSize ``.
150
+ Optimize for size, even if the ``CMAKE_BUILD_TYPE`` is not ``MinSizeRel ``.
151
151
``THIN_LTO``
152
152
Use thin TLO instead of regular if there's a choice (pybind11's selection
153
153
is disabled if ``CMAKE_INTERPROCEDURAL_OPTIMIZATIONS`` is set).
You can’t perform that action at this time.
0 commit comments