| commit | c4dd2ae2f070333da2917a93e30b3557caa38760 | [log] [tgz] |
|---|---|---|
| author | Frédéric Boisnard <fredericx.boisnard@intel.com> | Wed Mar 05 19:40:34 2014 +0100 |
| committer | Mattijs Korpershoek <mattijsx.korpershoek@intel.com> | Mon Jun 23 18:13:54 2014 +0200 |
| tree | f253b761cfb02edb122c42ffe6b89edb703eda0f | |
| parent | 0d10a8a19f4aadde2d65892a08831a56cd5e53bc [diff] |
Fix "Argument list too long" bug during XML generation BZ: 177060 When the initial XML file for tuning is too big, the XML generation fails with the message: "Argument list too long". This is because the generation relies on the PFW command "setDomainsWithSettingsXML", which takes XML data as string argument. There is a limitation concerning the size of this string, leading to the current issue. This patch replaces the call to "setDomainsWithSettingsXML" by "importDomainsWithSettingsXML", which takes a file as argument instead of a string. There is no limitation on the file size. Change-Id: Ieb12e6ba1391545021cd3f1e867dee0d28425d19 Signed-off-by: Frédéric Boisnard <fredericx.boisnard@intel.com>
tl;dr: compilation instructions are at the end
WIP
Run cmake . then make. You may then install libraries, headers and binaries with make install. By default, they are installed under /usr/local on unix OSes; if you want to install them under a custom directory, you may do so by passing it to the cmake . command; e.g. cmake -DCMAKE_INSTALL_PREFIX=/path/to/custom/install ..