Skip to content

Commit b8051f9

Browse files
committedOct 15, 2024
fixed wrapper for cmake types detection (gdal)
1 parent 7ff9dba commit b8051f9

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed
 

‎emsdk-cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,11 @@ else:
281281
os.chmod(EXE, 0o766)
282282

283283
final.append("-sENVIRONMENT=node")
284-
final.append("-sEXIT_RUNTIME")
284+
285+
# error: explicitly setting EXIT_RUNTIME not compatible with STANDALONE_WASM.
286+
# EXIT_RUNTIME will always be True for programs (with a main function) and False for reactors (not main function).
287+
#final.append("-sEXIT_RUNTIME")
288+
285289
if USE_RAWFS:
286290
#final.append("-sASYNCIFY")
287291
final.append("-sNODERAWFS")

‎python-wasi-sdk.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ END
202202
--exclude=${SDKROOT}/devices/*/usr/lib/python3.1? \
203203
--exclude=${SDKROOT}/devices/*/usr/include/python3.1? \
204204
--exclude=${SDKROOT}/config \
205-
--exclude=${SDKROOT}/*sh \
205+
--exclude=${SDKROOT}/python-was?-sdk.sh \
206+
--exclude=${SDKROOT}/python3-was? \
206207
--exclude=${SDKROOT}/scripts/* \
207208
--exclude=${SDKROOT}/sources.* \
208209
--exclude=${SDKROOT}/build \

‎python-wasm-sdk.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ END
202202
--exclude=${SDKROOT}/devices/*/usr/lib/python3.1? \
203203
--exclude=${SDKROOT}/devices/*/usr/include/python3.1? \
204204
--exclude=${SDKROOT}/config \
205-
--exclude=${SDKROOT}/*sh \
205+
--exclude=${SDKROOT}/python-was?-sdk.sh \
206+
--exclude=${SDKROOT}/python3-was? \
206207
--exclude=${SDKROOT}/scripts/* \
207208
--exclude=${SDKROOT}/sources.* \
208209
--exclude=${SDKROOT}/build \
File renamed without changes.
File renamed without changes.

‎sources.extra/7000-gdal.sh renamed to ‎sources.extra/8000-gdal.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ then
99
echo ok
1010
else
1111
pushd ${ROOT}/src
12-
wget -c https://github.com/OSGeo/gdal/releases/download/v3.9.1/gdal-3.9.1.tar.gz
13-
tar xfz gdal-3.9.1.tar.gz
14-
mv gdal-3.9.1 libgdal
12+
wget -c https://github.com/OSGeo/gdal/releases/download/v3.9.3/gdal-3.9.3.tar.gz
13+
tar xfz gdal-3.9.3.tar.gz
14+
mv gdal-3.9.3 libgdal
1515
pushd libgdal
1616
if $DO_PATCH
1717
then

0 commit comments

Comments
 (0)