You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
302 B
8 lines
302 B
#!/bin/bash |
|
|
|
# Generates asm_support_gen.h |
|
# - This must be run after a build since it uses cpp-define-generator-data |
|
|
|
[[ -z ${ANDROID_BUILD_TOP+x} ]] && (echo "Run source build/envsetup.sh first" >&2 && exit 1) |
|
|
|
cpp-define-generator-data > ${ANDROID_BUILD_TOP}/art/runtime/generated/asm_support_gen.h
|
|
|