实例介绍
flex-2.5.35.tar.gz 下载了wine-1.5.2.tar.bz2 欲安装到redhat5.4x86 32bit系统上 安装以下方式安装,在第6步出错。 tar.bz2源代码包安装方式: 1、找到相应的软件包,比如soft.tar.bz2,下载到本机某个目录; 2、打开一个终端,su -成root用户; 3、cd soft.tar.bz2所在的目录; 4、tar -xjvf soft.tar.bz2 //一般会生成一个soft目录 5、cd soft 6、./configure 7、make 8、make install 第6步
【实例截图】
【核心代码】
flex-2.5.35.tar
└── flex-2.5.35
├── ABOUT-NLS
├── aclocal.m4
├── AUTHORS
├── autogen.sh
├── buf.c
├── ccl.c
├── ChangeLog
├── compile
├── config.guess
├── config.rpath
├── config.sub
├── configure
├── configure.in
├── conf.in
├── COPYING
├── depcomp
├── dfa.c
├── doc
│ ├── flex.1
│ ├── flex.info
│ ├── flex.info-1
│ ├── flex.info-2
│ ├── flex.pdf
│ ├── flex.texi
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── mdate-sh
│ ├── stamp-vti
│ ├── texinfo.tex
│ └── version.texi
├── ecs.c
├── examples
│ ├── debflex.awk
│ ├── fastwc
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mywc.c
│ │ ├── README
│ │ ├── wc1.l
│ │ ├── wc2.l
│ │ ├── wc3.l
│ │ ├── wc4.l
│ │ └── wc5.l
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── manual
│ │ ├── cat.lex
│ │ ├── ChangeLog
│ │ ├── dates.lex
│ │ ├── datetest.dat
│ │ ├── eof_rules.lex
│ │ ├── eof_test01.txt
│ │ ├── eof_test02.txt
│ │ ├── eof_test03.txt
│ │ ├── expr.lex
│ │ ├── expr.y
│ │ ├── front.lex
│ │ ├── front.y
│ │ ├── j2t.lex
│ │ ├── Makefile.am
│ │ ├── Makefile.examples
│ │ ├── Makefile.in
│ │ ├── myname2.lex
│ │ ├── myname.lex
│ │ ├── myname.txt
│ │ ├── numbers.lex
│ │ ├── pascal.lex
│ │ ├── pas_include.lex
│ │ ├── README
│ │ ├── reject.lex
│ │ ├── replace.lex
│ │ ├── string1.lex
│ │ ├── string2.lex
│ │ ├── strtest.dat
│ │ ├── unput.lex
│ │ ├── user_act.lex
│ │ ├── userinit.lex
│ │ ├── wc.lex
│ │ ├── yymore2.lex
│ │ ├── yymore.lex
│ │ └── yymoretest.dat
│ ├── README
│ └── testxxLexer.l
├── filter.c
├── flexdef.h
├── flexint.h
├── FlexLexer.h
├── flex.skl
├── gen.c
├── gettext.h
├── INSTALL
├── install-sh
├── libmain.c
├── libyywrap.c
├── m4
│ ├── codeset.m4
│ ├── gettext.m4
│ ├── glibc21.m4
│ ├── iconv.m4
│ ├── intdiv0.m4
│ ├── inttypes_h.m4
│ ├── inttypes.m4
│ ├── inttypes-pri.m4
│ ├── isc-posix.m4
│ ├── lcmessage.m4
│ ├── lib-ld.m4
│ ├── lib-link.m4
│ ├── lib-prefix.m4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nls.m4
│ ├── po.m4
│ ├── progtest.m4
│ ├── stdint_h.m4
│ ├── uintmax_t.m4
│ └── ulonglong.m4
├── main.c
├── Makefile.am
├── Makefile.in
├── misc.c
├── missing
├── mkinstalldirs
├── mkskel.sh
├── NEWS
├── nfa.c
├── ONEWS
├── options.c
├── options.h
├── parse.c
├── parse.h
├── parse.y
├── po
│ ├── boldquot.sed
│ ├── ca.gmo
│ ├── ca.po
│ ├── da.gmo
│ ├── da.po
│ ├── de.gmo
│ ├── de.po
│ ├── en@boldquot.header
│ ├── en@quot.header
│ ├── es.gmo
│ ├── es.po
│ ├── flex.pot
│ ├── fr.gmo
│ ├── fr.po
│ ├── ga.gmo
│ ├── ga.po
│ ├── insert-header.sin
│ ├── ko.gmo
│ ├── ko.po
│ ├── LINGUAS
│ ├── Makefile.in.in
│ ├── Makevars
│ ├── nl.gmo
│ ├── nl.po
│ ├── pl.gmo
│ ├── pl.po
│ ├── POTFILES.in
│ ├── pt_BR.gmo
│ ├── pt_BR.po
│ ├── quot.sed
│ ├── remove-potcdate.sin
│ ├── ro.gmo
│ ├── ro.po
│ ├── ru.gmo
│ ├── Rules-quot
│ ├── ru.po
│ ├── stamp-po
│ ├── sv.gmo
│ ├── sv.po
│ ├── tr.gmo
│ ├── tr.po
│ ├── vi.gmo
│ ├── vi.po
│ ├── zh_CN.gmo
│ └── zh_CN.po
├── README
├── README-alpha
├── README.cvs
├── regex.c
├── scan.c
├── scanflags.c
├── scan.l
├── scanopt.c
├── scanopt.h
├── skel.c
├── sym.c
├── tables.c
├── tables.h
├── tables_shared.c
├── tables_shared.h
├── tblcmp.c
├── tests
│ ├── create-test
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── README
│ ├── TEMPLATE
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── parser.y
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-alloc-extra
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-array-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-array-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-basic-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-basic-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-bison-nr
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── parser.y
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-bison-yylloc
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── parser.y
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-bison-yylval
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── parser.y
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-c++-basic
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-ccl
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-c-cpp-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-c-cpp-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-c++-multiple-scanners
│ │ ├── main.cpp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner-1.l
│ │ ├── scanner-2.l
│ │ └── test.input
│ ├── test-concatenated-options
│ │ ├── Makefile.am
│ │ └── Makefile.in
│ ├── test-c++-yywrap
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-debug-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-debug-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-extended
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-header-nr
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-header-r
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-include-by-buffer
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ ├── test-1.input
│ │ ├── test-2.input
│ │ └── test-3.input
│ ├── test-include-by-push
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ ├── test-1.input
│ │ ├── test-2.input
│ │ └── test-3.input
│ ├── test-include-by-reentrant
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ ├── test-1.input
│ │ ├── test-2.input
│ │ └── test-3.input
│ ├── test-linedir-r
│ │ ├── check-lines.awk
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-lineno-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-lineno-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-mem-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-mem-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-multiple-scanners-nr
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner-1.l
│ │ └── scanner-2.l
│ ├── test-multiple-scanners-r
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner-1.l
│ │ └── scanner-2.l
│ ├── test-noansi-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-noansi-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-posix
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── scanner.l
│ ├── test-posixly-correct
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── scanner.l
│ ├── test-prefix-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-prefix-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-pthread
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ ├── test-1.input
│ │ ├── test-2.input
│ │ ├── test-3.input
│ │ ├── test-4.input
│ │ └── test-5.input
│ ├── test-quotes
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-reject
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-rescan-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-rescan-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-string-nr
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── scanner.l
│ ├── test-string-r
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── scanner.l
│ ├── test-table-opts
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ ├── test-top
│ │ ├── main.c
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── scanner.l
│ │ └── test.input
│ └── test-yyextra
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── scanner.l
│ └── test.input
├── THANKS
├── TODO
├── tools
│ ├── cvs2cl.pl
│ ├── cvsauthors
│ ├── Makefile.am
│ └── Makefile.in
├── version.h
└── yylex.c
56 directories, 409 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论