Skip to content

Commit

Permalink
Remove Skia from android runtime
Browse files Browse the repository at this point in the history
Also delete build scripts and standardize on build_rive.sh.

Diffs=
b534512945 Remove Skia from android runtime (#8738)

Co-authored-by: Chris Dalton <[email protected]>
Co-authored-by: Erik <[email protected]>
  • Loading branch information
3 people committed Jan 31, 2025
1 parent 2e8d8ff commit 9db9d09
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c1482a731bafb7b4f24c5fbe1f52795c531723d3
b534512945f686a06063af7a93751333ae024e71
8 changes: 7 additions & 1 deletion premake5_v2.lua
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,12 @@ do
-- }
-- end

-- Ignore fatal warning for miniaudio on x86 android build.
filter({ 'system:android', 'options:arch=x86', 'files:src/audio/audio_engine.cpp' })
do
buildoptions({ '-Wno-atomic-alignment' })
end

filter({ 'system:macosx', 'options:variant=runtime' })
do
buildoptions({
Expand All @@ -146,7 +152,7 @@ do
})
end

filter( 'system:ios' )
filter('system:ios')
do
buildoptions({ '-flto=full', '-Wno-implicit-int-conversion' })
files({ 'src/audio/audio_engine.m' })
Expand Down
2 changes: 1 addition & 1 deletion src/artboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1565,4 +1565,4 @@ void Artboard::audioEngine(rcp<AudioEngine> audioEngine)
}
}
}
#endif
#endif

0 comments on commit 9db9d09

Please sign in to comment.