Nenhuma descrição

Gleb Aronsky 5fb7e5cfa3 HPCC-8461 Configmgr - Fix filesBasedn of Dali and ESP to match LDAP 12 anos atrás
build_utils e02027678d gh-2562 Change license to Apache 13 anos atrás
cmake_modules 2be15680af HPCC-3310 add rsync to cmake dependencies 12 anos atrás
common b7439bf6eb HPCC-7950 Use common HpccPackage classes in roxie 12 anos atrás
dali c43b9e099a HPCC-8547 - Interleaved mixed width subfiles exposing mapSubPart bug 12 anos atrás
deploy d72689ee6a gh-2562 Change license to Apache 13 anos atrás
deployment 9362daa3fb Merge pull request #3517 from garonsky/issue-2964_Change_thor_master_without_delete 12 anos atrás
docs 532fb3bb66 Merge pull request #3858 from g-pan/H8137-PrG 12 anos atrás
ecl 16d6c4eafe HPCC-8254 Ensure child datasets are freed up by compound read activities 12 anos atrás
ecllibrary 73875f8569 HPCC-7975 Add std.system.thorlib.platform 12 anos atrás
esp 5fb7e5cfa3 HPCC-8461 Configmgr - Fix filesBasedn of Dali and ESP to match LDAP 12 anos atrás
githooks 253a67d092 HPCC-8491 Git hook giving spurious errors about line length 12 anos atrás
initfiles 5fb7e5cfa3 HPCC-8461 Configmgr - Fix filesBasedn of Dali and ESP to match LDAP 12 anos atrás
lib2 5aa888b630 Merge remote-tracking branch 'origin/candidate-3.8.x' into candidate-3.10.x 13 anos atrás
plugins fc5ce4d1bf HPCC-8300 Allow stringlib.hpp to be included by other plugins 12 anos atrás
roxie f97acfa6a1 HPCC-7950 Fix minor compile error introduced by previous change 12 anos atrás
rtl b7439bf6eb HPCC-7950 Use common HpccPackage classes in roxie 12 anos atrás
services d72689ee6a gh-2562 Change license to Apache 13 anos atrás
system b7439bf6eb HPCC-7950 Use common HpccPackage classes in roxie 12 anos atrás
testing 7472bf70a8 HPCC-8478 SOAPCALL test in roxie regression test takes too long 12 anos atrás
thorlcr c98b6ad435 HPCC-8596 Problems dealing with CSV headers in mixed width supers 12 anos atrás
tools 7017a9b2f2 HPCC-8406 Create hpccinternal::user file scope for existing users 12 anos atrás
.gitattributes 7f4953af04 Issue #254 Switches template reading to use jlib 14 anos atrás
.gitignore a8ff38a9ca Minor code cleaup to avoid false positives from Eclipse 13 anos atrás
CMakeLists.txt b6d0bcf77c HPCC-8393 Client Tools Installs to wrong folder on Linux 12 anos atrás
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 14 anos atrás
CONTRIBUTORS 24be7835ee HPCC-7816 Update CONTRIBUTORS file to reference Jira issues 13 anos atrás
FUTURE b39eb133f9 Initial version of FUTURE document 14 anos atrás
LICENSE.txt dc857845c5 gh-2562 Change license to Apache 13 anos atrás
README 743e4e54b0 gh-2562 Change license to Apache … 13 anos atrás
VERSIONS 191a087d78 Update VERSIONS to remove references to split-X.Y branch 13 anos atrás
baseaddr.txt e02027678d gh-2562 Change license to Apache 13 anos atrás
build-config.h.cmake 5378efc415 gh-2333 Outdated Optional packages still display in EclWatch 13 anos atrás
sourcedoc.xml e02027678d gh-2562 Change license to Apache 13 anos atrás
version.cmake 9da1c1fe73 Split off candidate-3.10.2 12 anos atrás

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