بدون توضیح

jamienoss edcdcdf706 HPCC-9990 Add an option to convert SORTED/DISTRIBUTED to ASSERT forms 11 سال پیش
build_utils bff3ce01a1 HPCC-9713 Bad installation message when installing on Ubuntu 13.04 12 سال پیش
clienttools 7bbdacc3af HPCC-8528 Modify the code after pull request comments 11 سال پیش
cmake_modules 8d96a15b81 HPCC-10327 Ubuntu 13.10 dependency issue 11 سال پیش
common f8ff1c21a9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 سال پیش
dali f8ff1c21a9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 سال پیش
deploy d72689ee6a gh-2562 Change license to Apache 12 سال پیش
deployment 06e8682165 HPCC-10239 Windows Build break in WsDeploy 11 سال پیش
docs a15a4a3a59 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 سال پیش
ecl edcdcdf706 HPCC-9990 Add an option to convert SORTED/DISTRIBUTED to ASSERT forms 11 سال پیش
ecllibrary 10e816f298 HPCC-10288 - Add RemoveOwnedSubFiles (for 4.2) 11 سال پیش
esp f8ff1c21a9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 سال پیش
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' 12 سال پیش
initfiles 05f1f18271 HPCC-10318 ConfigMgr - default environment.xml fails validation 11 سال پیش
lib2 c0cd69e12a HPCC-9671 Add Published Query Pages 11 سال پیش
misc 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 سال پیش
plugins 5c8d69a280 HPCC-10333 Embedded Python may encounter undefined symbols 11 سال پیش
roxie 552fe9705a HPCC-9253 Significant semaphore overhead in the unordered concat 11 سال پیش
rtl 2a992a3534 HPCC-9965 Add a ,UNSTABLE flag to a JOIN 11 سال پیش
services ae17cadfe2 HPCC-8248 - Allow frunssh to use more threads by default 12 سال پیش
system c354beb396 HPCC-10409 Fix issues picked up in code review 11 سال پیش
testing f8ff1c21a9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 سال پیش
thorlcr f8ff1c21a9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 سال پیش
tools 50d039743b HPCC-10118 Backupnode creating unknown dir in hpcc-mirror, copy of thor 11 سال پیش
.gitattributes 7f4953af04 Issue #254 Switches template reading to use jlib 13 سال پیش
.gitignore a8ff38a9ca Minor code cleaup to avoid false positives from Eclipse 13 سال پیش
CMakeLists.txt f32607eb02 HPCC-10169 Integrate ClientTools on Windows 32bit with Jenkins 11 سال پیش
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 13 سال پیش
CONTRIBUTORS 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 سال پیش
FUTURE b39eb133f9 Initial version of FUTURE document 13 سال پیش
LICENSE.txt dc857845c5 gh-2562 Change license to Apache 12 سال پیش
README 743e4e54b0 gh-2562 Change license to Apache … 12 سال پیش
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 11 سال پیش
sourcedoc.xml daed99be48 HPCC-10196 Suggested improvement of for cpan mod installations 11 سال پیش
version.cmake 47374a0217 Split off 4.2.x branch 11 سال پیش

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