⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 gcc的组建
💻
字号:
This directory contains example programs that show how the GNU Classpathlibrary can be used.Each example has its own package under gnu.classpath.examples and has aclass Demo which contains a main() method to run that particular example.The examples can be compiled and run with gcj as follows:  gcj -o swingdemo --main=gnu.classpath.examples.swing.Demo \      gnu/classpath/examples/swing/Demo.java \      gnu/classpath/examples/swing/GNULookAndFeel.java  ./swingdemoOr with a traditional byte code interpreter like:  gcj -C gnu/classpath/examples/awt/Demo.java  gij gnu.classpath.examples.awt.DemoThe installation also comes with an examples.zip archive that containsall needed resources and compiled byte code class files that can berun as follows:  kaffe -classpath examples.zip gnu.classpath.examples.awt.Demo  kaffe -classpath examples.zip gnu.classpath.examples.swing.DemoThe jawt Demo needs some extra support library that currently needs to bebuild by hand.  The following assumes GNU Classpath was installed in/usr/local/classpath, if you installed it somewhere else then adjust the-I and -L paths accordingly. The included Makefile.jawt is setup this way.You can invoke it with:	make -f Makefile.jawtOr you can compile by hand as follows:  gcj -C gnu/classpath/examples/jawt/DemoJAWT.java  gcjh -jni gnu.classpath.examples.jawt.DemoJAWT -o DemoJAWT.h  gcc -g -O0 -Wall -I. -I/usr/X11R6/include -L. -L/usr/X11R6/lib \    -I/usr/local/classpath/include -L/usr/local/classpath/lib/classpath \    -lX11 -ljawtgnu -shared -o libDemoJAWT.so \    gnu/classpath/examples/jawt/DemoJAWT.cYou can then run the example as follows:  export LD_LIBRARY_PATH=.:/usr/local/classpath/lib/classpath  jamvm gnu.classpath.examples.jawt.DemoJAWTAll example code is distributed under the GNU General Public License (GPL).The example icons used in some of the examples come from gnome-icon-themeversion 1.2.3 and are also distributed under the GPL.All these images are stored in the directory gnu/classpath/examples/icons/.More free icons can be found in the gnome-icon-theme package:http://ftp.gnome.org/pub/GNOME/sources/gnome-icon-theme/GNU Classpath examples are free software; you can redistribute itand/or modify it under the terms of the GNU General Public License aspublished by the Free Software Foundation; either version 2, or (atyour option) any later version.GNU Classpath examples are distributed in the hope that they will beuseful, but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath examples; see the file COPYING.  If not,write to the Free Software Foundation, 51 Franklin Street, Fifth Floor,Boston, MA 02110-1301, USA.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -