Nothing Special   »   [go: up one dir, main page]

Skip to content
forked from frida/releng

Frida release engineering tools

Notifications You must be signed in to change notification settings

anandnqyrus/releng

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

releng

Build system infrastructure to ensure fast and consistent builds across projects.

Intended to be used as a git submodule at /releng in projects.

Setting up a new project

  1. Set up the repo:
$ git init my-project
$ cd my-project
$ git submodule add https://github.com/frida/releng.git
$ cp releng/meson-scripts/* .
$ echo -e '/build/\n/deps/' > .gitignore
  1. Create meson.build containing:
project('my-project', 'vala', version: '1.0.0')
executable('hello', 'hello.vala', dependencies: dependency('glib-2.0'))
  1. Create hello.vala containing:
int main (string[] args) {
  print ("Hello World from Vala!\n");
  return 0;
}
  1. Build and run:
$ make
$ ./build/hello
Hello World from Vala!
$

Cross-compiling

iOS

$ ./configure --host=ios-arm64
$ make

Android

$ ./configure --host=android-arm64
$ make

Raspberry Pi

$ sudo apt-get install g++-arm-linux-gnueabihf
$ ./configure --host=arm-linux-gnueabihf
$ make

About

Frida release engineering tools

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 84.2%
  • C 11.0%
  • JavaScript 2.0%
  • Shell 1.9%
  • Other 0.9%