Skip to content

Commit

Permalink
Merge pull request #63 from kiwix/ctpp2_utils
Browse files Browse the repository at this point in the history
Install ctpp2-utils to have ctpp2 compiler installed.
  • Loading branch information
mgautierfr authored Jul 12, 2017
2 parents f620d36 + 0671712 commit ad0ba8e
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 9 deletions.
26 changes: 24 additions & 2 deletions dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,34 @@ class Source(ReleaseDownload):
"ctpp2_mingw32.patch",
"ctpp2_dll_export_VMExecutable.patch",
"ctpp2_win_install_lib_in_lib_dir.patch",
"ctpp2_iconv_support.patch"]
"ctpp2_iconv_support.patch",
"ctpp2_compile_ctpp2c_static.patch",
]

class Builder(CMakeBuilder):
configure_option = "-DMD5_SUPPORT=OFF"


class CTPP2C(CTPP2):
name = "ctpp2c"
force_native_build = True

class Builder(CTPP2.Builder):
make_target = "ctpp2c"

@property
def build_path(self):
return super().build_path+"_native"

def _install(self, context):
context.try_skip(self.build_path)
command = "cp {ctpp2c}* {install_dir}".format(
ctpp2c=pj(self.build_path, 'ctpp2c'),
install_dir=pj(self.buildEnv.install_dir, 'bin')
)
self.buildEnv.run_command(command, self.build_path, context)


class Pugixml(Dependency):
name = "pugixml"
version = "1.2"
Expand Down Expand Up @@ -272,7 +294,7 @@ class Kiwixlib(Dependency):
def dependencies(self):
base_dependencies = ["pugixml", "libzim", "zlib", "lzma"]
if self.buildEnv.platform_info.build != 'android':
base_dependencies += ['ctpp2']
base_dependencies += ['ctpp2', 'ctpp2c']
if self.buildEnv.platform_info.build != 'native':
return base_dependencies + ["icu4c_cross-compile"]
else:
Expand Down
11 changes: 9 additions & 2 deletions dependency_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ def _install(self, context):
class CMakeBuilder(MakeBuilder):
def _configure(self, context):
context.try_skip(self.build_path)
cross_option = ""
if not self.target.force_native_build and self.buildEnv.cmake_crossfile:
cross_option = "-DCMAKE_TOOLCHAIN_FILE={}".format(self.buildEnv.cmake_crossfile)
command = ("cmake {configure_option}"
" -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON"
" -DCMAKE_INSTALL_PREFIX={install_dir}"
Expand All @@ -285,7 +288,7 @@ def _configure(self, context):
install_dir=self.buildEnv.install_dir,
libdir=self.buildEnv.libprefix,
source_path=self.source_path,
cross_option="-DCMAKE_TOOLCHAIN_FILE={}".format(self.buildEnv.cmake_crossfile) if self.buildEnv.cmake_crossfile else ""
cross_option=cross_option
)
env = Defaultdict(str, os.environ)
if self.buildEnv.platform_info.static:
Expand Down Expand Up @@ -313,6 +316,10 @@ def _configure(self, context):
shutil.rmtree(self.build_path)
os.makedirs(self.build_path)
configure_option = self.configure_option.format(buildEnv=self.buildEnv)
cross_option = ""
if not self.target.force_native_build and self.buildEnv.meson_crossfile:
cross_option = "--cross-file {}".format(
self.buildEnv.meson_crossfile)
command = ("{command} . {build_path}"
" --default-library={library_type}"
" {configure_option}"
Expand All @@ -325,7 +332,7 @@ def _configure(self, context):
configure_option=configure_option,
build_path=self.build_path,
buildEnv=self.buildEnv,
cross_option="--cross-file {}".format(self.buildEnv.meson_crossfile) if self.buildEnv.meson_crossfile else ""
cross_option=cross_option
)
self.buildEnv.run_command(command, self.source_path, context, cross_env_only=True)

Expand Down
17 changes: 12 additions & 5 deletions kiwix-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,28 +79,35 @@
'zlib': ['zlib1g-dev'],
'uuid': ['uuid-dev'],
'ctpp2': ['libctpp2-dev'],
'ctpp2c': ['ctpp2-utils'],
'libmicrohttpd': ['libmicrohttpd-dev', 'ccache']
},
'debian_native_static': {
'COMMON': _debian_common + ['libbz2-dev'],
'zlib': ['zlib1g-dev'],
'uuid': ['uuid-dev'],
'ctpp2': ['libctpp2-dev'],
'ctpp2c': ['ctpp2-utils'],
},
'debian_win32_dyn': {
'COMMON': _debian_common + ['g++-mingw-w64-i686', 'gcc-mingw-w64-i686', 'gcc-mingw-w64-base', 'mingw-w64-tools']
'COMMON': _debian_common + ['g++-mingw-w64-i686', 'gcc-mingw-w64-i686', 'gcc-mingw-w64-base', 'mingw-w64-tools'],
'ctpp2c': ['ctpp2-utils'],
},
'debian_win32_static': {
'COMMON': _debian_common + ['g++-mingw-w64-i686', 'gcc-mingw-w64-i686', 'gcc-mingw-w64-base', 'mingw-w64-tools']
'COMMON': _debian_common + ['g++-mingw-w64-i686', 'gcc-mingw-w64-i686', 'gcc-mingw-w64-base', 'mingw-w64-tools'],
'ctpp2c': ['ctpp2-utils'],
},
'debian_armhf_static': {
'COMMON': _debian_common
'COMMON': _debian_common,
'ctpp2c': ['ctpp2-utils'],
},
'debian_armhf_dyn': {
'COMMON': _debian_common
'COMMON': _debian_common,
'ctpp2c': ['ctpp2-utils'],
},
'debian_android': {
'COMMON': _debian_common + ['default-jdk']
'COMMON': _debian_common + ['default-jdk'],
'ctpp2c': ['ctpp2-utils'],
},
}

Expand Down
13 changes: 13 additions & 0 deletions patches/ctpp2_compile_ctpp2c_static.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff -u ctpp2-2.8.3/CMakeLists.txt ctpp2-2.8.3-static/CMakeLists.txt
--- ctpp2-2.8.3/CMakeLists.txt 2017-07-12 11:53:28.656535071 +0200
+++ ctpp2-2.8.3-static/CMakeLists.txt 2017-07-12 11:52:15.358692988 +0200
@@ -464,7 +464,8 @@

# CTPP Compiler
ADD_EXECUTABLE(ctpp2c tests/CTPP2Compiler.cpp)
-TARGET_LINK_LIBRARIES(ctpp2c ctpp2)
+TARGET_LINK_LIBRARIES(ctpp2c ctpp2-static)
+TARGET_LINK_LIBRARIES(ctpp2c "-static")

# CTPP2 Interpreter
ADD_EXECUTABLE(ctpp2i tests/CTPP2Interpreter.cpp)

0 comments on commit ad0ba8e

Please sign in to comment.