Skip to content

Commit

Permalink
docs: fix docs.md also
Browse files Browse the repository at this point in the history
  • Loading branch information
larpon committed Aug 11, 2024
1 parent 220e5a8 commit aca9077
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ compiler := ndk.compiler(.c, ndk_version, 'arm64-v8a', '21') or { panic(err) }
// Get recommended, Android specific, flags (also used by e.g. Gradle) for the compiler
// Make sure they fit the compiler you're targeting.
compiler_flags := ndk.compiler_flags_from_config(ndk_version,
arch: 'arm64-v8a'
lang: .c
debug: true // false = if you want production flags (-prod)
arch: 'arm64-v8a'
lang: .c
debug: true // false = if you want production flags (-prod)
cpp_features: ['no-rtti', 'no-exceptions'] // Special features available for C++ compilers, ignored for C compilers
) or { panic(err) }
Expand Down

0 comments on commit aca9077

Please sign in to comment.