Skip to content

SAPikachu/flash3kyuu_deband

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
lib
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
waf
 
 
 
 

f3kdb (a.k.a. flash3kyuu_deband)

Build Status

Documentation

How to build (Linux)

Before compiling

  • Ensure Python 3 is installed
  • GCC 4.8.1+ or Clang 3.2+ is required, please install either one
  • Run git submodule update --init --recursive to initialize dependencies (Only needed for building tests)

Configuration

To configure for compiling using default compiler in your system, run:

./waf configure

If you need to use a non-default compiler, use this:

CC={your c compiler} CXX={your c++ compiler} ./waf configure

To build test cases, append --enable-test after the command line.

Compiling

Simply run:

./waf build

Optionally, you can install f3kdb into your system:

sudo ./waf install

Run test cases

To run all test cases (may need 20 ~ 30 minutes):

build/test/f3kdb-test

If you want to run only a subset of tests, check .travis.yml for command line examples.