설명 없음

Gleb Aronsky cf95f5d351 gh-2938 Fix Configmgr - Component tree collapses 13 년 전
build_utils e02027678d gh-2562 Change license to Apache 13 년 전
cmake_modules e02027678d gh-2562 Change license to Apache 13 년 전
common 6d9d56a975 gh-2636 Refactor Preflight code to avoid multiple SSH calls to same node 13 년 전
dali 6aa6ea097e gh-2562 Change license to Apache 13 년 전
deploy d72689ee6a gh-2562 Change license to Apache 13 년 전
deployment d72689ee6a gh-2562 Change license to Apache 13 년 전
docs cc7fbdb0e3 gh-3199 Added new actions and options to Client Tools manuals. 13 년 전
ecl ee68bda0d8 Merge remote-tracking branch 'origin/candidate-3.8.x' into candidate-3.10.x 13 년 전
ecllibrary d72689ee6a gh-2562 Change license to Apache 13 년 전
esp cf95f5d351 gh-2938 Fix Configmgr - Component tree collapses 13 년 전
githooks f20f7f221a gh-3183 Improve git commit message hook 13 년 전
initfiles 6d9d56a975 gh-2636 Refactor Preflight code to avoid multiple SSH calls to same node 13 년 전
lib2 5aa888b630 Merge remote-tracking branch 'origin/candidate-3.8.x' into candidate-3.10.x 13 년 전
plugins bd323e4685 gh-3274 Add proxies for EE-only plugins to CE builds 13 년 전
roxie 44ea0d9241 gh-3294 Implementation of CHOOSE(expr, ds, ds, ds) 13 년 전
rtl d72689ee6a gh-2562 Change license to Apache 13 년 전
services d72689ee6a gh-2562 Change license to Apache 13 년 전
system b898d2d187 Merge pull request #3244 from richardkchapman/apache-license 13 년 전
testing 44ea0d9241 gh-3294 Implementation of CHOOSE(expr, ds, ds, ds) 13 년 전
thorlcr 44ea0d9241 gh-3294 Implementation of CHOOSE(expr, ds, ds, ds) 13 년 전
tools d72689ee6a gh-2562 Change license to Apache 13 년 전
.gitattributes 7f4953af04 Issue #254 Switches template reading to use jlib 14 년 전
.gitignore a8ff38a9ca Minor code cleaup to avoid false positives from Eclipse 13 년 전
CMakeLists.txt e02027678d gh-2562 Change license to Apache 13 년 전
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 14 년 전
CONTRIBUTORS 0510cb048f gh-3106 CONTRIBUTORS file updated to reflect requirement for issue ref. 13 년 전
FUTURE b39eb133f9 Initial version of FUTURE document 14 년 전
LICENSE.txt dc857845c5 gh-2562 Change license to Apache 13 년 전
README 743e4e54b0 gh-2562 Change license to Apache … 13 년 전
VERSIONS 191a087d78 Update VERSIONS to remove references to split-X.Y branch 13 년 전
baseaddr.txt e02027678d gh-2562 Change license to Apache 13 년 전
build-config.h.cmake 5378efc415 gh-2333 Outdated Optional packages still display in EclWatch 13 년 전
sourcedoc.xml e02027678d gh-2562 Change license to Apache 13 년 전
version.cmake cbffceae07 Split off candidate-3.10 branch 13 년 전

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