Git Product home page Git Product logo

docker-ollvm's Introduction

Dockerized build and helper scripts for Obfuscator-LLVM

This repository provides a Dockerfile and some helper shell scripts useful to easily build Obfuscator-LLVM project from source as well as configuring it as a Android NDK toolchain. The scripts can be used both as standalone tools and inside the Docker image.

Prerequisites

Basic usage

  • Build O-LLVM within a docker container, using ollvm/source/dir as source directory The output build directory will be in ollvm/source/dir/build_docker.
./ollvm-build.sh ollvm/source/dir
  • Add O-LLVM toolchain into Official Android NDK, using ollvm/artifacts/dir as binary directory (result from a previous OLLVM build). The output NDK package will be generated into the current working directory.
./ollvm-add-to-ndk.sh ollvm/artifacts/dir

Using in Gitlab-CI

Another use case where these scripts are very useful is to integrate O-LLVM build process into a Continuous Integration system, which is very handy when researching/hacking O-LLVM (E.g: Adding some experimental features or improving the existing ones). Below is an example on how to build O-LLVM and generate a NDK with O-LLVM toolchain using the docker image built from this repository:

...
build:
  stage: build
  script:
  ┆ - OLLVM_DIR=$PWD /scripts/ollvm-build.sh --docker
  ┆ - tar -cfz ollvm-4.0.tgz build_docker/_installed_/*
  artifacts:
  ┆ paths:
  ┆ ┆ - ollvm-4.0.tgz
  stage: build

package:
  stage: repackage_ndk
  script:
  ┆ - /scripts/ollvm-add-to-ndk.sh build_docker/_installed_
  artifacts:
  ┆ paths:
  ┆ ┆ - android-ndk-r14b-ollvm4.0-linux-x86_64.tar.gz
...

About Obfuscator-LLVM

O-LLVM is an open-source fork of the LLVM compilation suite able to provide increased software security through code obfuscation and tamper-proofing. As we currently mostly work at the Intermediate Representation (IR) level, our tool is compatible with all programming languages (C, C++, Objective-C, Ada and Fortran) and target platforms (x86, x86-64, PowerPC, PowerPC-64, ARM, Thumb, SPARC, Alpha, CellSPU, MIPS, MSP430, SystemZ, and XCore) currently supported by LLVM.

More information: https://github.com/obfuscator-llvm/obfuscator/wiki

Docker Hub

https://hub.docker.com/r/nickdiego/ollvm-build/

docker-ollvm's People

Contributors

oacia avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.