diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-20 02:18:11 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-20 02:18:11 +0000 |
commit | 1fa5d7a02c5a84b777d5a429e68dcf9ebdd70b7b (patch) | |
tree | 27aee16f43e9796b2ba00a8e764b53e7cabd51ea /libjava/libgcjdata.c | |
parent | 92b80308775400a42020d01cf60bdc3d32ee221b (diff) | |
download | gcc-1fa5d7a02c5a84b777d5a429e68dcf9ebdd70b7b.tar.gz |
1999-12-19 Anthony Green <green@cygnus.com>
* libgcjdata.c: New file.
* libgcj.spec.in: Use @LIBDATASTARTSPEC@ in startfile.
* configure: Rebuilt.
* configure.in (LIBDATASTARTSPEC): Force data with a known name
into the program.
* Makefile.in: Rebuilt.
* Makefile.am: Build libgcjdata.a.
* libgcj.spec.in: Use @FORCELIBGCCSPEC@ in startfile.
* configure: Rebuilt.
* configure.in (FORCELIBGCCSPEC): Force important parts of libgcc
into every program.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31027 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/libgcjdata.c')
-rw-r--r-- | libjava/libgcjdata.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libjava/libgcjdata.c b/libjava/libgcjdata.c new file mode 100644 index 00000000000..c5dc5b1cc1c --- /dev/null +++ b/libjava/libgcjdata.c @@ -0,0 +1,12 @@ +/* Copyright (C) 1998, 1999 Cygnus Solutions + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +/* Some systems need data_start defined so the GC be built as a shared + library. */ + +int data_start = 0; |