|
Lines 368-380
Link Here
|
| 368 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
368 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 369 |
</target> |
369 |
</target> |
| 370 |
|
370 |
|
|
|
371 |
<target name="c.configure.linux.hppa" if="isLinuxHppa"> |
| 372 |
<echo message="Linux.hppa" /> |
| 373 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 374 |
<condition property="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" |
| 375 |
else="linker.cfg.linux"> |
| 376 |
<isset property="isX11" /> |
| 377 |
</condition> |
| 378 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 379 |
</target> |
| 380 |
|
| 381 |
<target name="c.configure.linux.mips" if="isLinuxMips"> |
| 382 |
<echo message="Linux.mips" /> |
| 383 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 384 |
<condition property="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" |
| 385 |
else="linker.cfg.linux"> |
| 386 |
<isset property="isX11" /> |
| 387 |
</condition> |
| 388 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 389 |
</target> |
| 390 |
|
| 391 |
<target name="c.configure.linux.mipsel" if="isLinuxMipsel"> |
| 392 |
<echo message="Linux.mips" /> |
| 393 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 394 |
<condition property="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" |
| 395 |
else="linker.cfg.linux"> |
| 396 |
<isset property="isX11" /> |
| 397 |
</condition> |
| 398 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 399 |
</target> |
| 400 |
|
| 401 |
<target name="c.configure.linux.ppc" if="isLinuxPpc"> |
| 402 |
<echo message="Linux.ppc" /> |
| 403 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 404 |
<condition property="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" |
| 405 |
else="linker.cfg.linux"> |
| 406 |
<isset property="isX11" /> |
| 407 |
</condition> |
| 408 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 409 |
</target> |
| 410 |
|
| 411 |
<target name="c.configure.linux.s390" if="isLinuxs390"> |
| 412 |
<echo message="Linux.S390" /> |
| 413 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 414 |
<condition property="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" |
| 415 |
else="linker.cfg.linux"> |
| 416 |
<isset property="isX11" /> |
| 417 |
</condition> |
| 418 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 419 |
</target> |
| 420 |
|
| 421 |
<target name="c.configure.linux.sparc" if="isLinuxSparc"> |
| 422 |
<echo message="Linux.sparc" /> |
| 423 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 424 |
<condition property="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" |
| 425 |
else="linker.cfg.linux"> |
| 426 |
<isset property="isX11" /> |
| 427 |
</condition> |
| 428 |
<echo message="linker.cfg.id.oswin ${linker.cfg.id.oswin}" /> |
| 429 |
</target> |
| 430 |
|
| 371 |
<target name="c.configure.linux.ia64" if="isLinuxIA64"> |
431 |
<target name="c.configure.linux.ia64" if="isLinuxIA64"> |
| 372 |
<echo message="Linux.IA64" /> |
432 |
<echo message="Linux.IA64" /> |
| 373 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
433 |
<property name="compiler.cfg.id" value="compiler.cfg.linux" /> |
| 374 |
<property name="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" /> |
434 |
<property name="linker.cfg.id.oswin" value="linker.cfg.linux.newt.x11" /> |
| 375 |
</target> |
435 |
</target> |
| 376 |
|
436 |
|
| 377 |
<target name="c.configure.linux" depends="c.configure.linux.x86,c.configure.linux.amd64,c.configure.linux.armv7,c.configure.linux.ia64,c.configure.x11" if="isLinux"/> |
437 |
<target name="c.configure.linux" depends="c.configure.linux.x86,c.configure.linux.amd64,c.configure.linux.armv7,c.configure.linux.hppa,c.configure.linux.mips,c.configure.linux.mipsel,c.configure.linux.ppc,c.configure.linux.s390,c.configure.linux.sparc,c.configure.linux.ia64,c.configure.x11" if="isLinux"/> |
| 378 |
|
438 |
|
| 379 |
<target name="c.configure.android" if="isAndroid"> |
439 |
<target name="c.configure.android" if="isAndroid"> |
| 380 |
<echo message="Android" /> |
440 |
<echo message="Android" /> |
| 381 |
- |
|
|