aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/k_tan.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-08-16 17:10:21 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-08-16 17:10:21 +0000
commitcfedbb1f824b2f2d9f48f2ed805808b00fa671b0 (patch)
tree144083dcb669d8a73da7fb80c8ddadc60c0c7bff /libjava/java/lang/k_tan.c
parent31989264041acc428c3435ce5ebc6d7ab43c41f8 (diff)
downloadgcc-cfedbb1f824b2f2d9f48f2ed805808b00fa671b0.zip
gcc-cfedbb1f824b2f2d9f48f2ed805808b00fa671b0.tar.gz
gcc-cfedbb1f824b2f2d9f48f2ed805808b00fa671b0.tar.bz2
configure.in (*-ibm-aix4.[12]*): Delete test for gnu ld.
* configure.in (*-ibm-aix4.[12]*): Delete test for gnu ld. Always use t-aix41 when host == target. From-SVN: r35747
Diffstat (limited to 'libjava/java/lang/k_tan.c')
0 files changed, 0 insertions, 0 deletions
option> Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Java.md
blob: f0dd403802befaed74f0efc1c5c051addc54d285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
title: Java
short-description: Compiling Java programs
...

# Compiling Java applications

Meson has experimental support for compiling Java programs. The basic
syntax consists of only one function and would be used like this:

```meson
project('javaprog', 'java')

myjar = jar('mything', 'com/example/Prog.java',
            main_class : 'com.example.Prog')

test('javatest', myjar)
```

However note that Meson places limitations on how you lay out your code.

* all Java files for a jar must be under the subdirectory the jar definition is in
* all Java files must be in paths specified by their package, e.g. a class called `com.example.Something` must be in a Java file situated at `com/example/Something.java`.
* Meson only deals with jar files, you cannot poke individual class files (unless you do so manually)