forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2003-05-31 Paolo Bonzini <[email protected]> PR libjava/32098 * libtool.m4: Revert previous change. * ltgcc.m4: Put it here. libjava: 2007-05-31 Paolo Bonzini <[email protected]> PR libjava/32098 * configure: Regenerated. * aclocal.m4: Regenerated. From-SVN: r125215
- Loading branch information
Showing
6 changed files
with
89 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2003-05-31 Paolo Bonzini <[email protected]> | ||
|
||
PR libjava/32098 | ||
* libtool.m4: Revert previous change. | ||
* ltgcc.m4: Put it here. | ||
|
||
2003-05-30 Zdenek Dvorak <[email protected]> | ||
|
||
* MAINTAINERS (Various Maintainers): Add myself as | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2007-05-31 Paolo Bonzini <[email protected]> | ||
|
||
PR libjava/32098 | ||
* configure: Regenerated. | ||
* aclocal.m4: Regenerated. | ||
|
||
2007-05-30 H.J. Lu <[email protected]> | ||
|
||
PR libjava/32098 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# _LT_LANG_GCJ_CONFIG([TAG]) | ||
# -------------------------- | ||
# Ensure that the configuration variables for the GNU Java Compiler compiler | ||
# are suitably defined. These variables are subsequently used by _LT_CONFIG | ||
# to write the compiler configuration to `libtool'. Locally modified to | ||
# run its tests on C programs, because we cannot link Java programs until | ||
# we have finished building libjava. | ||
AC_DEFUN([_LT_LANG_GCJ_CONFIG], | ||
[AC_REQUIRE([LT_PROG_GCJ])dnl | ||
AC_LANG_SAVE | ||
# Source file extension for Java test sources. | ||
ac_ext=c | ||
# Object file extension for compiled Java test sources. | ||
objext=o | ||
_LT_TAGVAR(objext, $1)=$objext | ||
# Code to be used in simple compile tests | ||
lt_simple_compile_test_code="int some_variable = 0;" | ||
# Code to be used in simple link tests | ||
lt_simple_link_test_code='int main(){return(0);}' | ||
# ltmain only uses $CC for tagged configurations so make sure $CC is set. | ||
_LT_TAG_COMPILER | ||
# save warnings/boilerplate of simple test code | ||
_LT_COMPILER_BOILERPLATE | ||
_LT_LINKER_BOILERPLATE | ||
# Allow CC to be a program name with arguments. | ||
compiler=$CC | ||
_LT_TAGVAR(compiler, $1)=$CC | ||
_LT_CC_BASENAME([$compiler]) | ||
# GCJ did not exist at the time GCC didn't implicitly link libc in. | ||
_LT_TAGVAR(archive_cmds_need_lc, $1)=no | ||
_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds | ||
## CAVEAT EMPTOR: | ||
## There is no encapsulation within the following macros, do not change | ||
## the running order or otherwise move them around unless you know exactly | ||
## what you are doing... | ||
if test -n "$compiler"; then | ||
_LT_COMPILER_NO_RTTI($1) | ||
_LT_COMPILER_PIC($1) | ||
_LT_COMPILER_C_O($1) | ||
_LT_COMPILER_FILE_LOCKS($1) | ||
_LT_LINKER_SHLIBS($1) | ||
_LT_SYS_DYNAMIC_LINKER($1) | ||
_LT_LINKER_HARDCODE_LIBPATH($1) | ||
_LT_CONFIG($1) | ||
fi | ||
_LT_TAGVAR(compiler, $1)=${GCJ-gcj} | ||
AC_LANG_RESTORE | ||
])# _LT_LANG_GCJ_CONFIG |