| 1 | #### This script is meant to be sourced by ltconfig.
|
|---|
| 2 |
|
|---|
| 3 | # ltcf-gcj.sh - Create a GCJ compiler specific configuration
|
|---|
| 4 | #
|
|---|
| 5 | # Copyright (C) 1996-1999, 2000, 2001, 2003 Free Software Foundation, Inc.
|
|---|
| 6 | # Originally by Gordon Matzigkeit <[email protected]>, 1996
|
|---|
| 7 | #
|
|---|
| 8 | # Original GCJ support by:
|
|---|
| 9 | # Alexandre Oliva <[email protected]>
|
|---|
| 10 | #
|
|---|
| 11 | # This file is free software; you can redistribute it and/or modify it
|
|---|
| 12 | # under the terms of the GNU General Public License as published by
|
|---|
| 13 | # the Free Software Foundation; either version 2 of the License, or
|
|---|
| 14 | # (at your option) any later version.
|
|---|
| 15 | #
|
|---|
| 16 | # This program is distributed in the hope that it will be useful, but
|
|---|
| 17 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 19 | # General Public License for more details.
|
|---|
| 20 | #
|
|---|
| 21 | # You should have received a copy of the GNU General Public License
|
|---|
| 22 | # along with this program; if not, write to the Free Software
|
|---|
| 23 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|---|
| 24 | #
|
|---|
| 25 | # As a special exception to the GNU General Public License, if you
|
|---|
| 26 | # distribute this file as part of a program that contains a
|
|---|
| 27 | # configuration script generated by Autoconf, you may include it under
|
|---|
| 28 | # the same distribution terms that you use for the rest of that program.
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 | # Source file extension for Java test sources.
|
|---|
| 32 | ac_ext=java
|
|---|
| 33 |
|
|---|
| 34 | # Object file extension for compiled Java test sources.
|
|---|
| 35 | objext=o
|
|---|
| 36 |
|
|---|
| 37 | # Code to be used in simple compile tests
|
|---|
| 38 | lt_simple_compile_test_code="class foo {}"
|
|---|
| 39 |
|
|---|
| 40 | # Code to be used in simple link tests
|
|---|
|
|---|