sourcecode.texi
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· TEXI 代码 · 共 52 行
TEXI
52 行
@c APPLE LOCAL file GPL compliance@node Source Code@unnumbered Source CodeThe source code for released versions of Apple's GCC is available at@samp{http://www.opensource.apple.com/darwinsource/}, in@samp{.tar.gz} format.For unreleased versions (including 'seeds', beta versions andengineering roots), source can be obtained by asking the Apple contactfrom which you obtained the unreleased version.For many versions of Apple's GCC, source code is available by usinganonymous Subversion. You may obtain Subversion ('SVN') from@samp{http://subversion.tigris.org/project_packages.html}.Development of this version is done at@samp{svn://gcc.gnu.org/svn/gcc/branches/apple-local-200502-branch}.For example, you can fetch the latest version by entering:@smallexample$ svn co svn://gcc.gnu.org/svn/gcc/branches/apple-local-200502-branch@end smallexampleEach version will be tagged based on its build number, whichyou can find by executing @samp{gcc --version}; for instance, if this prints@smallexamplegcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 8402)@end smallexamplethen the build number is 8402. Some older compilers may require youuse @samp{gcc -v} to obtain the build number. Once you have the buildnumber, its tag will be at@samp{svn://gcc.gnu.org/svn/gcc/tags/apple}, like@samp{svn://gcc.gnu.org/svn/gcc/tags/apple/gcc-8402}. You can listall the tags by writing@smallexample$ svn ls svn://gcc.gnu.org/svn/gcc/tags/apple@end smallexampleThen check out a particular version by writing@smallexample$ svn co svn://gcc.gnu.org/svn/gcc/tags/apple/gcc-8402@end smallexampleThe above command won't succeed as written, because 8402 is not yet areal compiler build number.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?