Skip to content

Commit 52b9c00

Browse files
authored
Disable libfmt double precision patch
1 parent eed507a commit 52b9c00

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/dreamcast.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on: # yamllint disable-line rule:truthy
66
branches:
77
- master
88
- dreamcast
9+
- fix/ISSUE-8-libfmt-patch
910
paths-ignore:
1011
- '*.md'
1112
- 'docs/**'
@@ -69,7 +70,7 @@ jobs:
6970
- name: Build DevilutionX
7071
run: |
7172
# patches libfmt to support long double
72-
patch build/_deps/libfmt-src/include/fmt/format.h -l -p0 < libfmt-long-double.patch
73+
# patch build/_deps/libfmt-src/include/fmt/format.h -l -p0 < libfmt-long-double.patch
7374
source /opt/toolchains/dc/kos/environ.sh && cd build && kos-make
7475
7576
- name: Generate .cdi

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ RUN source /opt/toolchains/dc/kos/environ.sh && \
3131
export CMAKE_PREFIX_PATH=/opt/toolchains/dc/kos-ports/libbz2/inst/:/opt/toolchains/dc/kos-ports/zlib/inst/ && \
3232
kos-cmake -S. -Bbuild
3333

34-
RUN echo "Patching fmt to support long double..."
35-
RUN patch build/_deps/libfmt-src/include/fmt/format.h -l -p0 < libfmt-long-double.patch
34+
# RUN echo "Patching fmt to support long double..."
35+
# RUN patch build/_deps/libfmt-src/include/fmt/format.h -l -p0 < libfmt-long-double.patch
3636

3737
RUN echo "Compiling..."
3838
RUN source /opt/toolchains/dc/kos/environ.sh && cd build && kos-make

0 commit comments

Comments
 (0)