XML Profile LocationプロフィールのロケーションThe ib_profile.xml file is located in the IncrediBuild installation folder at the following path: ファイルは IncrediBuild インストール フォルダーに格納されています。パスは次の通りです。/opt/incredibuild/data/ib_profile.xml This is the default configuration file that is used in every build. This instance of the file is a “read-only” file and should not be modified, since during an upgrade of IncrediBuild, this file will be overwritten. If you wish to edit the profile file, you will need to create a copy of the file and save it in one of the following locations:
Project directory これはすべてのビルドで使用されるデフォルトの設定ファイルです。IncrediBuild のアップグレード中、このファイルは上書きされるため、ファイルのインスタンスは「読み込みのみ」で変更できません。プロフィール ファイルを編集したい場合は、ファイルをコピーして次のいずれかの場所に保存します。 Home directory - プロジェクト ディレクトリ ($PWD/ib_profile.xml)
- This file is in the working directory of the project being built. It will only be used when running a build from this directory.Machine directory - - このファイルはビルド中の実行ディレクトリです。このディレクトリからビルドを開始する場合のみ使用できます。
- ホーム ディレクトリ ($HOME/.ib/ib_profile.xml)
- This file is in the home directory of the user. It will be used by every build that is run by the user.If there are multiple instances of the profile configuration that include different configurations, IncrediBuild will use the configuration of the most specific location. For example, it will give preference to the configuration of the project directory over the ones in the home or machine directories. Custom Profile ConfigurationTo edit the profile configuration file: Locate the default profile configuration file - - - このファイルはユーザーのホーム ディレクトリです。ユーザーによって実行されたすべてのビルドで使用します。
- マシン ディレクトリ (/etc/default/ib_profile.xml)
- This file will be used in every build that is running on this machine.- - このファイルはこのマシンで実行中のすべてのビルドで使用します。
異なる構成を含むプロフィール設定のインスタンスが複数ある場合、最も一般的な場所の設定を使用します。たとえば、プロジェクト ディレクトリの設定がホーム / マシン ディレクトリよりも優先されます。 カスタム プロフィール設定プロフィール設定ファイルの編集方法: Add the names of the tasks/processes that should be handled locally only - デフォルト プロフィール設定ファイルの場所 - /opt/incredibuild/data/ib_profile.xml.
Copy the file and paste it on one or more of the locations described above (e.g. project directory, home directory, etc…).- ファイルをコピーして上記のいずれかに1つまたは複数に貼り付けます (例: プロジェクト ディレクトリ、ホーム ディレクトリなど)。
- タスク名を関連する属性に続けて追加します。ローカルでのみ処理する (local_only)
, distributed remotely - 、リモートで分散する (allow_remote)
and intercepted - 、インターセプトする (Intercepted)
followed by the relevant attribute.ExamplesLocal only example- 。
例ローカルのみの例: <processes> <process filename="mylinker" type="local_only" /> </processes> Allow remote example リモートを許可する例: <processes> <process filename="mycompiler" type="allow_remote" /> </processes>
|