Skip to content

Commit a09260f

Browse files
committed
move debug information into its own buffer
1 parent 172fd91 commit a09260f

File tree

6 files changed

+270
-203
lines changed

6 files changed

+270
-203
lines changed

resources/build.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
<property name="jogl.url"
105105
value="https://download.processing.org/jogl/v2.4.0-rc-20210111y" />
106106

107-
<get dest="${project.libs}" skipexisting="true" ignoreerrors="true">
107+
<get dest="${project.libs}" skipexisting="true">
108108
<url
109109
url="https://github.com/micycle1/processing-core-4/releases/download/4.2.1/core-4.2.1.jar" />
110110
<url url="${jogl.url}/gluegen-rt.jar" />
@@ -121,40 +121,40 @@
121121
url="https://repo1.maven.org/maven2/com/github/davidmoten/guava-mini/0.1.6/guava-mini-0.1.6.jar" />
122122
</get>
123123

124-
<get dest="${project.libs}/linux-amd64" skipexisting="true" ignoreerrors="true">
124+
<get dest="${project.libs}/linux-amd64" skipexisting="true">
125125
<url url="${jogl.url}/gluegen-rt-natives-linux-amd64.jar" />
126126
<url url="${jogl.url}/jogl-all-natives-linux-amd64.jar" />
127127
</get>
128128

129-
<get dest="${project.libs}/linux-arm" skipexisting="true" ignoreerrors="true">
129+
<get dest="${project.libs}/linux-arm" skipexisting="true">
130130
<url
131-
url="${jogl.url}/gluegen-rt-natives-linux-armv6hf.jar" />
131+
url="${jogl.url}/gluegen-rt-natives-linux-arm.jar" />
132132
<url
133-
url="${jogl.url}jogl-all-natives-linux-armv6hf.jar" />
133+
url="${jogl.url}/jogl-all-natives-linux-arm.jar" />
134134
</get>
135135

136-
<get dest="${project.libs}/linux-aarch64" skipexisting="true" ignoreerrors="true">
136+
<get dest="${project.libs}/linux-aarch64" skipexisting="true">
137137
<url
138138
url="${jogl.url}/gluegen-rt-natives-linux-aarch64.jar" />
139139
<url
140140
url="${jogl.url}/jogl-all-natives-linux-aarch64.jar" />
141141
</get>
142142

143-
<get dest="${project.libs}/windows-amd64" skipexisting="true" ignoreerrors="true">
143+
<get dest="${project.libs}/windows-amd64" skipexisting="true">
144144
<url
145145
url="${jogl.url}/gluegen-rt-natives-windows-amd64.jar" />
146146
<url
147147
url="${jogl.url}/jogl-all-natives-windows-amd64.jar" />
148148
</get>
149149

150-
<get dest="${project.libs}/macos-x86_64" skipexisting="true" ignoreerrors="true">
150+
<get dest="${project.libs}/macos-x86_64" skipexisting="true">
151151
<url
152-
url="${jogl.url}/gluegen-rt-natives-macosx-x86_64.jar" />
152+
url="${jogl.url}/gluegen-rt-natives-macos-x86_64.jar" />
153153
<url
154-
url="${jogl.url}/jogl-all-natives-macosx-x86_64.jar" />
154+
url="${jogl.url}/jogl-all-natives-macos-x86_64.jar" />
155155
</get>
156156

157-
<get dest="${project.libs}/macos-aarch64" skipexisting="true" ignoreerrors="true">
157+
<get dest="${project.libs}/macos-aarch64" skipexisting="true">
158158
<url
159159
url="${jogl.url}/gluegen-rt-natives-macos-aarch64.jar" />
160160
<url
@@ -403,4 +403,4 @@
403403
</echo>
404404
</target>
405405

406-
</project>
406+
</project>

0 commit comments

Comments
 (0)