Skip to content

Commit

Permalink
Fix x86 build after NDK update
Browse files Browse the repository at this point in the history
A -lgcc was left around after the recent move to NDK r26c.

Bug: 328101283
Change-Id: Ie45cdf9055768081adb979b33c32748752fa2e7a
  • Loading branch information
primiano authored and ddiproietto committed Mar 5, 2024
1 parent 355f5d8 commit cb45432
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions gn/standalone/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,7 @@ config("default") {
"-msse2",
"-mfpmath=sse",
]
ldflags += [
"-m32",
"-lgcc",
]
ldflags += [ "-m32" ]
} else if (current_cpu == "arm64") {
cflags += [ "-fno-omit-frame-pointer" ]
} else if (current_cpu == "x64") {
Expand Down

0 comments on commit cb45432

Please sign in to comment.