Borland C++ Compiler 5.5開発環境
Windows PCを持っている学生は開発環境をインストールする
Borland C++ Compiler 5.5のインストール手順
https://www.embarcadero.com/jp/free-tools よりダウンロード
大まかな流れ
- 圧縮ファイル「freecommadlinetoos」の解凍
- インストーラー「freecommandlinetools2」 の起動
- 使用許諾契約の同意
- コンパイラのインストール先の指定
- コンパイラのインストール開始
- インストール終了
freecommandlinetools2.exe を実行してください。[同意する]ボタンを押して先へ進んでください。
コマンドラインツールをインストールしたいドライブとフォルダを選択します。
c:BorlandBcc55Bin
がインストール先です。
C:borlandbcc55Binbcc32.exe
とインストールされます。
次にbcc32.cfg と ilink32.cfg のファイルをC:borlandbcc55Binの中にいれます。
( bcc32.cfgファイルは,Include および Lib パスのコンパイラオプション(コンパイラの -I および -L スイッチ)を設定するものです。
bcc32.cfgファイルには
-I”c:BorlandBcc55include”
-L”c:BorlandBcc55lib” と書かれています。
ilink32.cfg ファイルは,Lib パスのリンカオプションを設定するものです。-L”c:BorlandBcc55lib” と書かれています。)
コマンドラインでコンパイルする場合、環境変数「PATH」に”c:BorlandBcc55bin”を追加する必要
バージョン情報
> >bcc32
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
Syntax is: BCC32 [ options ] file[s] * = default; -x- = turn switch x off
-3 * 80386 Instructions -4 80486 Instructions
-5 Pentium Instructions -6 Pentium Pro Instructions
-Ax Disable extensions -B Compile via assembly
-C Allow nested comments -Dxxx Define macro
-Exxx Alternate Assembler name -Hxxx Use pre-compiled headers
-Ixxx Include files directory -K Default char is unsigned
-Lxxx Libraries directory -M Generate link map
-N Check stack overflow -Ox Optimizations
-P Force C++ compile -R Produce browser info
-RT * Generate RTTI -S Produce assembly output
-Txxx Set assembler option -Uxxx Undefine macro
-Vx Virtual table control -X Suppress autodep. output
-aN Align on N bytes -b * Treat enums as integers
-c Compile only -d Merge duplicate strings
-exxx Executable file name -fxx Floating point options
-gN Stop after N warnings -iN Max. identifier length
-jN Stop after N errors -k * Standard stack frame
-lx Set linker option -nxxx Output file directory
-oxxx Object file name -p Pascal calls
-tWxxx Create Windows app -u * Underscores on externs
-v Source level debugging -wxxx Warning control
-xxxx Exception handling -y Produce line number info
-zxxx Set segment names
Hello World
参考:
- http://8cmp.blog.fc2.com/blog-entry-40.html -【C言語】 Borland C++Compiler 5.5 日本語版のダウンロード/インストール方法
- http://www.chem.scphys.kyoto-u.ac.jp/nonnonWWW/ogawara/lecture/borland.html – Borland C++ Compiler 5.5をインストールする