Better way to disable method inline (#1804)
This commit is contained in:
parent
2f9e0e07b0
commit
668ed3301d
|
|
@ -57,6 +57,7 @@ jobs:
|
|||
~/.ccache
|
||||
magisk-loader/build/.lto-cache
|
||||
daemon/build/.lto-cache
|
||||
dex2oat/build/.lto-cache
|
||||
key: native-cache-${{ github.sha }}
|
||||
restore-keys: native-cache-
|
||||
- name: Install dep
|
||||
|
|
@ -125,6 +126,7 @@ jobs:
|
|||
path: |
|
||||
magisk-loader/build/symbols
|
||||
daemon/build/symbols
|
||||
dex2oat/build/symbols
|
||||
- name: Post to channel
|
||||
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -1,11 +1,9 @@
|
|||
project(dex2oat)
|
||||
cmake_minimum_required(VERSION 3.4.1)
|
||||
|
||||
add_subdirectory(${EXTERNAL_ROOT} external)
|
||||
|
||||
add_executable(dex2oat dex2oat.c)
|
||||
|
||||
target_link_libraries(dex2oat cxx log)
|
||||
target_link_libraries(dex2oat log)
|
||||
|
||||
if (DEFINED DEBUG_SYMBOLS_PATH)
|
||||
message(STATUS "Debug symbols will be placed at ${DEBUG_SYMBOLS_PATH}")
|
||||
|
|
|
|||
Loading…
Reference in New Issue