暂无描述

Tony 2a5de3f814 HPCC-10864: Command option to fail publish if query has foreign files 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 2a5de3f814 HPCC-10864: Command option to fail publish if query has foreign files 11 年之前
dali d9b3238b03 HPCC-10800 Deleting files from one cluster may leave incorrect dali info 11 年之前
deploy d72689ee6a gh-2562 Change license to Apache 13 年之前
deployment 6c022338dc HPCC-10533 Fix EnvGen segmentation fault 11 年之前
docs 17f3ca55b3 Merge pull request #5385 from g-pan/H10806-pkgName 11 年之前
ecl 2a5de3f814 HPCC-10864: Command option to fail publish if query has foreign files 11 年之前
ecllibrary db817f99e2 HPCC-10570 Fix confusion over DeleteOwnedSubFiles/RemoveOwnedSubFiles 11 年之前
esp 2a5de3f814 HPCC-10864: Command option to fail publish if query has foreign files 11 年之前
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' 12 年之前
initfiles 2a5de3f814 HPCC-10864: Command option to fail publish if query has foreign files 11 年之前
lib2 c0cd69e12a HPCC-9671 Add Published Query Pages 11 年之前
misc 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 年之前
plugins 73f9b1dcfa HPCC-10594 : Block access to foreign dali from logicalfilelist 11 年之前
roxie 89e0898edc HPCC-10784 Keyed limits on stepped indexreads can be miscalculated 11 年之前
rtl 7528b3c4b3 HPCC-10302 - Fix eclagent deadlock if fileservices calls in apply 11 年之前
services ae17cadfe2 HPCC-8248 - Allow frunssh to use more threads by default 12 年之前
system 89acc2785b HPCC-10784 Keyed limits on stepped indexreads can be miscalculated 11 年之前
testing 987272c193 HPCC-10784 Keyed limits on stepped indexreads can be miscalculated 11 年之前
thorlcr 65ef140a89 HPCC-10819 - inline set sometimes incorrectly output in loop graph 11 年之前
tools 987272c193 HPCC-10784 Keyed limits on stepped indexreads can be miscalculated 11 年之前
.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 f32607eb02 HPCC-10169 Integrate ClientTools on Windows 32bit with Jenkins 11 年之前
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 dc857845c5 gh-2562 Change license to Apache 13 年之前
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 daed99be48 HPCC-10196 Suggested improvement of for cpan mod installations 11 年之前
version.cmake 73d06f37f0 Community Edition 4.2.2-rc11 Release Candidate 11 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