File tree Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,11 @@ else:
281
281
os .chmod (EXE , 0o766 )
282
282
283
283
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
+
285
289
if USE_RAWFS :
286
290
#final.append("-sASYNCIFY")
287
291
final .append ("-sNODERAWFS" )
Original file line number Diff line number Diff line change 202
202
--exclude=${SDKROOT} /devices/* /usr/lib/python3.1? \
203
203
--exclude=${SDKROOT} /devices/* /usr/include/python3.1? \
204
204
--exclude=${SDKROOT} /config \
205
- --exclude=${SDKROOT} /* sh \
205
+ --exclude=${SDKROOT} /python-was? -sdk.sh \
206
+ --exclude=${SDKROOT} /python3-was? \
206
207
--exclude=${SDKROOT} /scripts/* \
207
208
--exclude=${SDKROOT} /sources.* \
208
209
--exclude=${SDKROOT} /build \
Original file line number Diff line number Diff line change 202
202
--exclude=${SDKROOT} /devices/* /usr/lib/python3.1? \
203
203
--exclude=${SDKROOT} /devices/* /usr/include/python3.1? \
204
204
--exclude=${SDKROOT} /config \
205
- --exclude=${SDKROOT} /* sh \
205
+ --exclude=${SDKROOT} /python-was? -sdk.sh \
206
+ --exclude=${SDKROOT} /python3-was? \
206
207
--exclude=${SDKROOT} /scripts/* \
207
208
--exclude=${SDKROOT} /sources.* \
208
209
--exclude=${SDKROOT} /build \
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
echo ok
10
10
else
11
11
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
15
15
pushd libgdal
16
16
if $DO_PATCH
17
17
then
You can’t perform that action at this time.
0 commit comments