Nenhuma descrição

Gordon Smith c7c0c3fc8f HPCC-10667 New ECL Watch Deselection broken 11 anos atrás
build_utils bff3ce01a1 HPCC-9713 Bad installation message when installing on Ubuntu 13.04 12 anos atrás
clienttools 7bbdacc3af HPCC-8528 Modify the code after pull request comments 11 anos atrás
cmake_modules ecf454175c HPCC-10771 Add USE_SIGNED_CHAR and USE_UNSIGNED_CHAR parameters to build 11 anos atrás
common 056f2c263c Merge remote-tracking branch 'origin/closedown-4.2.x' 11 anos atrás
dali 944dd1370e Merge pull request #5361 from RussWhitehead/nullUser 11 anos atrás
deploy d72689ee6a gh-2562 Change license to Apache 12 anos atrás
deployment 089b8326f0 Merge pull request #5230 from ghalliday/issue10552 11 anos atrás
docs a36bfdb9a8 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 anos atrás
ecl 831d0bc685 Merge pull request #5360 from ghalliday/issue10801 11 anos atrás
ecllibrary 4eba80bcaa Merge remote-tracking branch 'origin/closedown-4.2.x' 11 anos atrás
esp c7c0c3fc8f HPCC-10667 New ECL Watch Deselection broken 11 anos atrás
githooks 4ba38f7d01 Merge remote-tracking branch 'origin/candidate-3.10.x' 12 anos atrás
initfiles f76b0f0e91 HPCC-10535 publish esdl 11 anos atrás
lib2 c0cd69e12a HPCC-9671 Add Published Query Pages 11 anos atrás
misc 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 anos atrás
plugins 08d61c800a Merge remote-tracking branch 'origin/closedown-4.2.x' 11 anos atrás
roxie 2e57eaedf9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 anos atrás
rtl 7b59809281 HPCC-3060 Add fileview2 support for JSON format workunit results 11 anos atrás
services c392b68f3e Checking _64BIT_ flags, adding ARMFIX 11 anos atrás
system 944dd1370e Merge pull request #5361 from RussWhitehead/nullUser 11 anos atrás
testing 2e57eaedf9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 anos atrás
thorlcr c6604b99db HPCC-8624 - roll back forward, for master 11 anos atrás
tools 2e57eaedf9 Merge remote-tracking branch 'origin/closedown-4.2.x' 11 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 f32607eb02 HPCC-10169 Integrate ClientTools on Windows 32bit with Jenkins 11 anos atrás
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 14 anos atrás
CONTRIBUTORS 66e814cdf0 HPCC-9508 Add eclipse code layout settings file to project 12 anos atrás
FUTURE b39eb133f9 Initial version of FUTURE document 13 anos atrás
LICENSE.txt dc857845c5 gh-2562 Change license to Apache 12 anos atrás
README 743e4e54b0 gh-2562 Change license to Apache … 12 anos atrás
VERSIONS 7476e66ffa HPCC-3207 Clarify closedown process 12 anos atrás
baseaddr.txt 33cd7c0514 HPCC-9494 Clean up unused roxiemanager code 12 anos atrás
build-config.h.cmake 08fd95330b HPCC-9902 Use the build version as the ecl version reported by eclcc 11 anos atrás
sourcedoc.xml 81882ce52b Easier apt-get line 11 anos atrás
version.cmake 47374a0217 Split off 4.2.x branch 11 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