Skip to content

Commit

Permalink
OboeTester experiment with 16 KB pages
Browse files Browse the repository at this point in the history
WIP try to build with 16 KB pages to debug audio issues.

For #2041
See also b/358130477
  • Loading branch information
philburk committed Aug 8, 2024
1 parent e31c038 commit 351ee60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/OboeTester/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ include_directories(

# link to oboe
target_link_libraries(oboetester log oboe atomic)
target_link_options(oboetester PRIVATE "-Wl,-z,max-page-size=16384")

Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void onNothingSelected(AdapterView<?> adapterView) {
int oboePatch = oboeVersion & 0xFF;
mVersionText = getString(R.string.app_name_version,
pinfo.versionCode, pinfo.versionName,
oboeMajor, oboeMinor, oboePatch);
oboeMajor, oboeMinor, oboePatch) + " 16KB pages";
mVersionTextView.setText(mVersionText);
} catch (PackageManager.NameNotFoundException e) {
mVersionTextView.setText(e.getMessage());
Expand Down

0 comments on commit 351ee60

Please sign in to comment.