tinyinst 0.1.1

Rust bindings for googleprojectzero/TinyInst
Documentation
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 3.10)
project("test")

# Disable implicit function declaration warning on macOS so it can compile vulnerable code 
if(APPLE)
    set(CMAKE_C_FLAGS "-Wno-error=implicit-function-declaration")
endif()

add_executable(test test.c)