Better way to disable method inline (#1804)

This commit is contained in:
Nullptr 2022-04-02 14:22:18 +08:00 committed by GitHub
parent 2f9e0e07b0
commit 668ed3301d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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}")