Няма описание

Richard Chapman 5ffe45c97d Community Edition 4.0.0-rc2 Release Candidate 2 преди 12 години
build_utils e02027678d gh-2562 Change license to Apache преди 13 години
cmake_modules f98dd3c598 HPCC-9024 Fix FindR.cmake when related to Rembed plugin преди 12 години
common f9bf1718d8 Merge remote-tracking branch 'origin/candidate-3.10.x' преди 12 години
dali e90dc66894 Merge remote-tracking branch 'origin/candidate-3.10.x' преди 12 години
deploy d72689ee6a gh-2562 Change license to Apache преди 13 години
deployment 2f4bca766e HPCC-8662 Configmgr - Add NAS translation to Hardware преди 12 години
docs f17d77d82f Merge pull request #4176 from g-pan/H8597-ReplMaster преди 12 години
ecl 57cc9d43b5 HPCC-9071 Language version increased to 4.0.0 преди 12 години
ecllibrary e7461362d2 HPCC-8862 Add support for csv escape characters to sprayVariable преди 12 години
esp 507acd6249 HPCC-8022 Configmgr - Cannot make one ACL list base of another преди 12 години
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' преди 12 години
initfiles 673317da77 HPCC-9075 Clean up unused Roxie configuration settings преди 12 години
lib2 5aa888b630 Merge remote-tracking branch 'origin/candidate-3.8.x' into candidate-3.10.x преди 13 години
plugins 3e8cb6c5d1 HPCC-9068 Embedded scripting plugins need to syntax check without dll преди 12 години
roxie 673317da77 HPCC-9075 Clean up unused Roxie configuration settings преди 12 години
rtl 829046fe30 Merge pull request #4184 from ghalliday/issue9050 преди 12 години
services d72689ee6a gh-2562 Change license to Apache преди 13 години
system 59b3776972 HPCC-9056 Build break in thor (Windows) преди 12 години
testing 3779c82a4c HPCC-9070 False positive from dict15c test on thor преди 12 години
thorlcr 629d026be1 HPCC-9050 Allow ROLLUP condition to selectively use rolled up row for LEFT преди 12 години
tools a544fcf95c HPCC-2695 More clang warnings преди 12 години
.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 051f70bfdc HPCC-8765 Plugin cmake macros to clean up optional plugins преди 12 години
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection преди 14 години
CONTRIBUTORS b10901955a Update CONTRIBUTORS file to simplify process преди 12 години
FUTURE b39eb133f9 Initial version of FUTURE document преди 13 години
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 5ffe45c97d Community Edition 4.0.0-rc2 Release Candidate 2 преди 12 години

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