Không có mô tả

Gavin Halliday eebb5a8e5c HPCC-12515 Minor changes following review 10 năm trước cách đây
build_utils bff3ce01a1 HPCC-9713 Bad installation message when installing on Ubuntu 13.04 12 năm trước cách đây
charm 862ef5ccb2 JIRA HPCC-10637 Add Charm support 11 năm trước cách đây
clienttools 286d8b3ee3 HPCC-10526 add testing/regress to platform and clienttools install 11 năm trước cách đây
cmake_modules f529690689 Merge branch 'candidate-4.2.12' into candidate-5.0.4 10 năm trước cách đây
common da11d946de Merge branch 'candidate-4.2.12' into candidate-5.0.4 10 năm trước cách đây
dali b2efb8d9bd Merge branch 'candidate-4.2.12' into candidate-5.0.4 10 năm trước cách đây
deploy d72689ee6a gh-2562 Change license to Apache 13 năm trước cách đây
deployment 840fe6a338 HPCC-12327 Configgen should extract and write LDAPServer config 10 năm trước cách đây
docs 85769be283 Merge pull request #6601 from JamesDeFabia/8576DocsThorMemory 10 năm trước cách đây
ecl eebb5a8e5c HPCC-12515 Minor changes following review 10 năm trước cách đây
ecllibrary 9ab8f8ffe0 HPCC-12401 Rename paramters so they don't clash with reserved words 10 năm trước cách đây
esp da11d946de Merge branch 'candidate-4.2.12' into candidate-5.0.4 10 năm trước cách đây
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' 12 năm trước cách đây
initfiles a4d25b32aa HPCC-11632 Add serverType attribute to LDAP config 10 năm trước cách đây
lib2 c0cd69e12a HPCC-9671 Add Published Query Pages 11 năm trước cách đây
misc 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 năm trước cách đây
plugins 91e7a6ca65 HPCC-12428 Java package support is broken 10 năm trước cách đây
roxie 8d630b8e79 Merge pull request #6494 from richardkchapman/roxie-core-index-activity 10 năm trước cách đây
rtl cd2bedec9c HPCC-12512 Fix incorrect parameter type on rtlWriteInt8 10 năm trước cách đây
services 8b931c6d87 HPCC-11874 Remove #define CHAR from the sources 11 năm trước cách đây
system 1ab7dc538e HPCC-12488 LDAP Security core if reference uninitialized member 10 năm trước cách đây
testing 8468f89fbc Merge pull request #6561 from richardkchapman/if-when 10 năm trước cách đây
thorlcr 5806448f75 Merge pull request #6555 from jakesmith/hpcc-12443 10 năm trước cách đây
tools 28a199b0d4 HPCC-12059 Need tool to create initial LDAP OUs and admin HPCC user 10 năm trước cách đây
.gitattributes 7f4953af04 Issue #254 Switches template reading to use jlib 14 năm trước cách đây
.gitignore a8ff38a9ca Minor code cleaup to avoid false positives from Eclipse 13 năm trước cách đây
.gitmodules f3455d6cde HPCC-11054 Switch submodule references to HTTPS (from SSH) 11 năm trước cách đây
CMakeLists.txt 6b8f75cd8e HPCC-10827 Add default sign directory 11 năm trước cách đây
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 14 năm trước cách đây
CONTRIBUTORS 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 năm trước cách đây
FUTURE b39eb133f9 Initial version of FUTURE document 13 năm trước cách đây
LICENSE.txt 183c06b510 HPCC-11269 Add Word Cloud Visualisation 11 năm trước cách đây
README 743e4e54b0 gh-2562 Change license to Apache … 13 năm trước cách đây
VERSIONS 7476e66ffa HPCC-3207 Clarify closedown process 12 năm trước cách đây
baseaddr.txt 33cd7c0514 HPCC-9494 Clean up unused roxiemanager code 12 năm trước cách đây
build-config.h.cmake 08fd95330b HPCC-9902 Use the build version as the ecl version reported by eclcc 11 năm trước cách đây
sourcedoc.xml 55e12e0bde Merge remote-tracking branch 'origin/closedown-4.2.x' 11 năm trước cách đây
version.cmake d09f95daf7 Community Edition 5.0.4-rc2 Release Candidate 2 10 năm trước cách đây

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