Нема описа

Michael Gardner 317c88a7fc HPCC-13058 Check frunssh failure in run_thor пре 10 година
build_utils bff3ce01a1 HPCC-9713 Bad installation message when installing on Ubuntu 13.04 пре 12 година
charm 37d0fb7f7d HPCC-11289 Add README file for HPCC Juju Charm Development пре 10 година
clienttools 286d8b3ee3 HPCC-10526 add testing/regress to platform and clienttools install пре 11 година
cmake_modules fa2f212f3c HPCC-13047 Redis plugin sync module пре 10 година
common 317c88a7fc HPCC-13058 Check frunssh failure in run_thor пре 10 година
dali 3c8562c346 HPCC-13105 Fix despray/spray of ECL generated and rootless JSON files пре 10 година
deploy d72689ee6a gh-2562 Change license to Apache пре 13 година
deployment 52c790fc3a HPCC-12965 Fix xsl:message handling пре 10 година
docs 179d1fafef HPCC-13067 DOCS:Add marca registrada symbol пре 10 година
ecl 18696cfac7 HPCC-12990 Fix wrong function name caused by rebase пре 10 година
ecllibrary 49203b7a71 HPCC-12653 Std.Date should not use %F, %T, %R пре 10 година
esp cad6241798 Merge pull request #7027 from GordonSmith/HPCC-11835 пре 10 година
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' пре 12 година
initfiles 317c88a7fc HPCC-13058 Check frunssh failure in run_thor пре 10 година
lib2 c0cd69e12a HPCC-9671 Add Published Query Pages пре 11 година
misc 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project пре 12 година
plugins 91c90c4a52 Merge branch 'candidate-5.0.6' into candidate-5.2.0 пре 10 година
roxie b7380f4eee Merge pull request #6971 from ghalliday/issue12993 пре 10 година
rtl f5eb2c4242 HPCC-13055 OSX support пре 10 година
services 8b931c6d87 HPCC-11874 Remove #define CHAR from the sources пре 11 година
system 52c790fc3a HPCC-12965 Fix xsl:message handling пре 10 година
testing 8adab1f661 HPCC-13125 Regression test should not fail a test case if it generates пре 10 година
thorlcr 0bb592b370 HPCC-11991 Weird count displayed on graph пре 10 година
tools b7380f4eee Merge pull request #6971 from ghalliday/issue12993 пре 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 cb0d2f7a57 HPCC-12805 JavaScript Graph Control пре 10 година
CMakeLists.txt 06f55d29e8 HPCC-12837 Correct clienttools package file name пре 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 fe2b3a01ab Split off candidate-5.4.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