Project

General

Profile

output.patch

Teodor Gorghe, 02/02/2026 02:02 AM

Download (7.84 KB)

View differences:

build.xml
192 192
         <jvmarg value="-XX:-OmitStackTraceInFastThrow"/>
193 193
         <jvmarg value="-DP2J_HOME=${p2j.home}"/>
194 194
         <arg value ="-d2"/>
195
         <classpath refid="compile.classpath"/>
195
         <classpath refid="convert.classpath"/>
196 196
      </java>
197 197
      <record name="callgraph_${LOG_STAMP}.log" action="stop"/>
198 198
   </target>
......
211 211
         <jvmarg value="-XX:-OmitStackTraceInFastThrow"/>
212 212
         <jvmarg value="-DP2J_HOME=${p2j.home}"/>
213 213
         <arg value ="-d2"/>
214
         <classpath refid="compile.classpath"/>
214
         <classpath refid="convert.classpath"/>
215 215
      </java>
216 216
      <record name="callgraph_${LOG_STAMP}.log" action="stop"/>
217 217
   </target>
......
231 231
         <jvmarg value="-DP2J_HOME=${p2j.home}"/>
232 232
         <arg value ="-d2"/>
233 233
         <arg value ="-u"/>
234
         <classpath refid="compile.classpath"/>
234
         <classpath refid="convert.classpath"/>
235 235
      </java>
236 236
      <record name="callgraph_${LOG_STAMP}.log" action="stop"/>
237 237
   </target>
......
251 251
         <jvmarg value="-XX:-OmitStackTraceInFastThrow"/>
252 252
         <jvmarg value="-DP2J_HOME=${p2j.home}"/>
253 253
         <jvmarg value="-DappAdminPass=${appname}"/>
254
         <classpath refid="compile.classpath"/>
254
         <classpath refid="convert.classpath"/>
255 255
      </java>
256 256
      <record name="rpt_${LOG_STAMP}.log" action="stop"/>
257 257
   </target>
......
306 306
	
307 307
   <!-- convert 4GL code from ${app.4gl.src} into ${src}, using an explicit file list, in file-cvt-list.txt -->
308 308
   <target name="convert.list"
309
           depends="init, check-file-cvt-list"
309
           depends="init, srcnew.precompile, check-file-cvt-list"
310 310
           description="Convert the 4GL source code to Java source code, using a file-cvt-list.txt as input."
311 311
           if="file-cvt-list">
312 312
      <record name="cvt_${LOG_STAMP}.log" action="start"/>
......
323 323
         <arg value="-d2"/>
324 324
         <arg value="f2+m0+cb"/>
325 325
         <arg value="file-cvt-list.txt"/>
326
         <classpath refid="compile.classpath"/>
326
         <classpath refid="convert.classpath"/>
327 327
      </java>
328 328
      <record name="cvt_${LOG_STAMP}.log" action="stop"/>
329 329
   </target>
330 330
   
331 331
   <!-- convert 4GL code from ${app.4gl.src} into ${src}, using specs and an ignorelist, in file-ignore-list.txt -->
332 332
   <target name="convert.ignorelist"
333
           depends="init, check-file-ignore-list"
333
           depends="init, srcnew.precompile, check-file-ignore-list"
334 334
           description="Convert the 4GL source code to Java source code, using specs and a file-ignore-list.txt as input."
335 335
           if="file-ignore-list">
336 336
      <record name="cvt_${LOG_STAMP}.log" action="start"/>
......
349 349
         <arg value="${app.4gl.src}"/>
350 350
         <arg value="${app.4gl.pattern}"/>
351 351
         <arg value="file-ignore-list.txt"/>
352
         <classpath refid="compile.classpath"/>
352
         <classpath refid="convert.classpath"/>
353 353
      </java>
354 354
      <record name="cvt_${LOG_STAMP}.log" action="stop"/>
355 355
   </target>
356 356
   
357 357
   <target name="convert.front"
358
           depends="init, check-file-cvt-list, check-file-ignore-list"
358
           depends="init, srcnew.precompile, check-file-cvt-list, check-file-ignore-list"
359 359
           description="Execute the parse phase of the conversion process, using a pattern as input."
360 360
           unless="no-list-mode">
361 361
      <record name="cvt_f2_${LOG_STAMP}.log" action="start"/>
......
372 372
         <arg value="f2"/>
373 373
         <arg value="${app.4gl.src}"/>
374 374
         <arg value="${app.4gl.pattern}"/>
375
         <classpath refid="compile.classpath"/>
375
         <classpath refid="convert.classpath"/>
376 376
      </java>
377 377
      <record name="cvt_f2_${LOG_STAMP}.log" action="stop"/>
378 378
   </target>
379 379

  
380 380
   <target name="convert.front.list"
381
           depends="init, check-file-cvt-list"
381
           depends="init, srcnew.precompile, check-file-cvt-list"
382 382
           description="Execute the parse phase of the conversion process, using the file named 'file-cvt-list.txt' as input."
383 383
           if="file-cvt-list">
384 384
      <record name="cvt_f2_${LOG_STAMP}.log" action="start"/>
......
394 394
         <arg value="-d2"/>
395 395
         <arg value="f2"/>
396 396
         <arg value="file-cvt-list.txt"/>
397
         <classpath refid="compile.classpath"/>
397
         <classpath refid="convert.classpath"/>
398 398
      </java>
399 399
      <record name="cvt_f2_${LOG_STAMP}.log" action="stop"/>
400 400
   </target>
401 401
   
402 402
   <target name="convert.front.ignorelist"
403
           depends="init, check-file-ignore-list"
403
           depends="init, srcnew.precompile, check-file-ignore-list"
404 404
           description="Execute the parse phase of the conversion process, using a pattern as input."
405 405
           if="file-ignore-list">
406 406
      <record name="cvt_f2_${LOG_STAMP}.log" action="start"/>
......
418 418
         <arg value="${app.4gl.src}"/>
419 419
         <arg value="${app.4gl.pattern}"/>
420 420
         <arg value="file-ignore-list.txt"/>
421
         <classpath refid="compile.classpath"/>
421
         <classpath refid="convert.classpath"/>
422 422
      </java>
423 423
      <record name="cvt_f2_${LOG_STAMP}.log" action="stop"/>
424 424
   </target>
425 425

  
426 426
   <target name="convert.middle"
427
           depends="init, check-file-cvt-list, check-file-ignore-list"
427
           depends="init, srcnew.precompile, check-file-cvt-list, check-file-ignore-list"
428 428
           description="Execute the parse and schema conversion phases of the conversion process, using a pattern as input."
429 429
           unless="no-list-mode">
430 430
      <record name="cvt_f2m0_${LOG_STAMP}.log" action="start"/>
......
441 441
         <arg value="f2+m0"/>
442 442
         <arg value="${app.4gl.src}"/>
443 443
         <arg value="${app.4gl.pattern}"/>
444
         <classpath refid="compile.classpath"/>
444
         <classpath refid="convert.classpath"/>
445 445
      </java>
446 446
      <record name="cvt_f2m0_${LOG_STAMP}.log" action="stop"/>
447 447
   </target>
448 448
   
449 449
   <target name="convert.middle.list"
450
           depends="init, check-file-cvt-list"
450
           depends="init, srcnew.precompile, check-file-cvt-list"
451 451
           description="Execute the parse and schema conversion phases of the conversion process, using the file named 'file-cvt-list.txt' as input."
452 452
           if="file-cvt-list">
453 453
      <record name="cvt_f2m0_${LOG_STAMP}.log" action="start"/>
......
463 463
         <arg value="-d2"/>
464 464
         <arg value="f2+m0"/>
465 465
         <arg value="file-cvt-list.txt"/>
466
         <classpath refid="compile.classpath"/>
466
         <classpath refid="convert.classpath"/>
467 467
      </java>
468 468
      <record name="cvt_f2m0_${LOG_STAMP}.log" action="stop"/>
469 469
   </target>
470 470

  
471 471
   <target name="convert.middle.ignorelist"
472
           depends="init, check-file-ignore-list"
472
           depends="init, srcnew.precompile, check-file-ignore-list"
473 473
           description="Execute the parse and schema conversion phases of the conversion process, using a pattern as input."
474 474
           if="file-ignore-list">
475 475
      <record name="cvt_f2m0_${LOG_STAMP}.log" action="start"/>
......
487 487
         <arg value="${app.4gl.src}"/>
488 488
         <arg value="${app.4gl.pattern}"/>
489 489
         <arg value="file-ignore-list.txt"/>
490
         <classpath refid="compile.classpath"/>
490
         <classpath refid="convert.classpath"/>
491 491
      </java>
492 492
      <record name="cvt_f2m0_${LOG_STAMP}.log" action="stop"/>
493 493
   </target>
deploy/server/server.sh
184 184
      suspend="y"
185 185
   fi
186 186
   oome="-XX:+HeapDumpOnOutOfMemoryError"
187
   debugopt="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=$dport,server=y,suspend=$suspend" 
187
   debugopt="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=*:$dport,server=y,suspend=$suspend" 
188 188
fi
189 189

  
190 190
if [ "$statcode" != "y" ]; then