Skip to content

Commit ac3d1fe

Browse files
committed
Put require .dll together with work/java/bin/java
This allows the library loader to find them even if arduino_debug.exe or arduino.exe is started from a different directory for example from the command prompt.
1 parent a6ef343 commit ac3d1fe

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

build/build.xml

+9-6
Original file line numberDiff line numberDiff line change
@@ -1039,10 +1039,6 @@
10391039
<fixcrlf file="windows/work/revisions.txt" eol="dos"/>
10401040
<fixcrlf file="windows/work/lib/formatter.conf" eol="dos"/>
10411041

1042-
<copy todir="windows/work">
1043-
<fileset dir="windows/dist" includes="*.dll" />
1044-
</copy>
1045-
10461042
<copy todir="windows/work">
10471043
<fileset dir="windows/dist" includes="drivers/**" />
10481044
</copy>
@@ -1056,8 +1052,6 @@
10561052
<param name="dest_folder" value="${staging_folder}" />
10571053
</antcall>
10581054
<copy file="windows/libastylej-2.05.1/AStylej.dll" todir="windows/work/lib" />
1059-
<copy file="windows/msvcp100.dll" todir="windows/work" />
1060-
<copy file="windows/msvcr100.dll" todir="windows/work" />
10611055

10621056
<antcall target="unzip">
10631057
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
@@ -1161,6 +1155,15 @@
11611155
</condition>
11621156
</fail>
11631157

1158+
<copy todir="windows/work">
1159+
<fileset dir="windows/dist" includes="*.dll" />
1160+
</copy>
1161+
<!-- Copy also inside java/bin so they can be found even if arduino.exe or
1162+
arduino_debug.exe is launched from another working directory -->
1163+
<copy todir="windows/work/java/bin">
1164+
<fileset dir="windows/dist" includes="*.dll" />
1165+
</copy>
1166+
11641167
<copy todir="${staging_folder}/work/java" includeemptydirs="true" preservelastmodified="true" overwrite="true" failonerror="true">
11651168
<fileset dir="${WINDOWS_BUNDLED_JVM}" includes="*/**"/>
11661169
</copy>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)