include ':android' // Will pull in android/ folder as a subproject. I think you need this file even if you only have one project.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
#define PACKAGE_PRIVATE __attribute__((__visibility__("hidden"))) | |
#define PACKAGE_PUBLIC __attribute__((__visibility__("default"))) | |
/* -------- a.c -------- */ | |
static int the_thing = 42; | |
PACKAGE_PRIVATE int compute_thing(void) { | |
return the_thing; | |
} |
#include <immintrin.h> | |
#include <intrin.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
union Mat44 { | |
float m[4][4]; | |
__m128 row[4]; | |
}; |