Нет описания

Gavin Halliday bffeaacb7f HPCC-12103 Remove virtual attributes from crc of output files 10 лет назад
build_utils bff3ce01a1 HPCC-9713 Bad installation message when installing on Ubuntu 13.04 12 лет назад
charm 862ef5ccb2 JIRA HPCC-10637 Add Charm support 11 лет назад
clienttools 286d8b3ee3 HPCC-10526 add testing/regress to platform and clienttools install 11 лет назад
cmake_modules 186c5ac4d0 HPCC-12240 Update Cassandra driver to latest 10 лет назад
common f3c0e386fc Merge pull request #6782 from afishbeck/resolveRoxieForeignFiles 10 лет назад
dali 5d7c963a69 Merge branch 'candidate-5.0.6' into candidate-5.2.0 10 лет назад
deploy d72689ee6a gh-2562 Change license to Apache 13 лет назад
deployment 02694b36bf PCC-12735 Prevent duplicate IPs for computers 10 лет назад
docs bd3a2afb0f Merge branch 'candidate-5.0.6' into candidate-5.2.0 10 лет назад
ecl bffeaacb7f HPCC-12103 Remove virtual attributes from crc of output files 10 лет назад
ecllibrary 6dae53a5c9 HPCC-12701 Std.File.SprayVariable doesn't support format (encoding) 10 лет назад
esp e7d01e24da Merge pull request #6805 from richardkchapman/cassandra-latest-driver 10 лет назад
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' 12 лет назад
initfiles dc777c5d4d Merge pull request #6767 from mckellyln/hpcc12483 10 лет назад
lib2 c0cd69e12a HPCC-9671 Add Published Query Pages 11 лет назад
misc 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 лет назад
plugins 186c5ac4d0 HPCC-12240 Update Cassandra driver to latest 10 лет назад
roxie f5d64d1c15 Merge pull request #6788 from ghalliday/issue12739 10 лет назад
rtl dfa9b323b0 HPCC-12732 Remove unneeded '#include <malloc.h>' 10 лет назад
services 8b931c6d87 HPCC-11874 Remove #define CHAR from the sources 11 лет назад
system bb47052ab6 HPCC-12784 Output WU Stats TimeStamp in UTC format 10 лет назад
testing bffeaacb7f HPCC-12103 Remove virtual attributes from crc of output files 10 лет назад
thorlcr f5d64d1c15 Merge pull request #6788 from ghalliday/issue12739 10 лет назад
tools 0928a2c079 HPCC-12702 Address windows warnings 10 лет назад
.gitattributes 7f4953af04 Issue #254 Switches template reading to use jlib 14 лет назад
.gitignore a8ff38a9ca Minor code cleaup to avoid false positives from Eclipse 13 лет назад
.gitmodules 5761df59ff HPCC-10617 Add support for Cassandra 11 лет назад
CMakeLists.txt 328fdc7658 HPCC-12157 Correct rpm package version and release 10 лет назад
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 14 лет назад
CONTRIBUTORS 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 лет назад
FUTURE b39eb133f9 Initial version of FUTURE document 14 лет назад
LICENSE.txt 183c06b510 HPCC-11269 Add Word Cloud Visualisation 11 лет назад
README 743e4e54b0 gh-2562 Change license to Apache … 13 лет назад
VERSIONS 7476e66ffa HPCC-3207 Clarify closedown process 12 лет назад
baseaddr.txt 33cd7c0514 HPCC-9494 Clean up unused roxiemanager code 12 лет назад
build-config.h.cmake 08fd95330b HPCC-9902 Use the build version as the ecl version reported by eclcc 12 лет назад
sourcedoc.xml 55e12e0bde Merge remote-tracking branch 'origin/closedown-4.2.x' 11 лет назад
version.cmake 53d5c32526 Split off candidate-5.2.0 branch 10 лет назад

README

HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


http://hpccsystems.com


To build for Linux:
-------------------

1. Check out sources (for example, to directory ~/hpcc)
2. Create a build directory - either as a child of hpcc or elsewhere
3. cd to the build directory
4a.To create makefiles to build native release version for local machine, run
cmake ~/hpcc
4b.To create makefiles to build native debug version, run
cmake -DCMAKE_BUILD_TYPE=Debug ~/hpcc
4c.To create makefiles to build 32-bit version from 64-bit host, run
cmake -DCMAKE_C_FLAGS:STRING="-m32 -march=i386" -DCMAKE_CXX_FLAGS:STRING="-m32 -march=i386" ~/hpcc
5. To build the makefiles just created above, run
make
6. Executables will be created in .//bin and .//libs
7. To create a .deb / ,rpm to install, run
make package


To build for Windows:
---------------------

1. Check out sources (for example, to directory c:\hpcc)
2. Create a build directory - either as a child of hpcc or elsewhere
3. cd to the build directory
4. To create a Visual Studio project, run
cmake c:\hpcc -G "Visual Studio 9 2008"
The sln file hpccsystems-platform.sln will be created in the current directory, and will support debug and release targets
5. To build the project, load the solution into the visual studio IDE and build in the usual way.
6. Executables will be created in (for example) c:\hpcc\bin\

To build client tools for Macintosh OSX:
----------------------------------------

1. Check out sources (for example, to directory ~/hpcc)
2. You many need to install some 3rd-party dev packages using macports
3. Create a build directory - either as a child of hpcc or elsewhere
4. cd to the build directory
5. Use clang to build the clienttools (gcc4.2 cores when compiling some of the sources):
CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake ~/hpcc -DCLIENTTOOLS_ONLY
5. To build the makefiles just created above, run
make
6. Executables will be created in .//bin and .//libs
7. To create a .dmg to install, run
make package