2023-08-18 18:38:43 +00:00
|
|
|
Index: build/toolchain/toolchain.gni
|
|
|
|
--- build/toolchain/toolchain.gni.orig
|
|
|
|
+++ build/toolchain/toolchain.gni
|
|
|
|
@@ -62,7 +62,7 @@ if (host_os == "mac") {
|
|
|
|
host_shlib_extension = ".dylib"
|
|
|
|
} else if (host_os == "win") {
|
|
|
|
host_shlib_extension = ".dll"
|
2023-09-17 04:05:06 +00:00
|
|
|
-} else if (host_os == "linux" || host_os == "aix") {
|
2023-08-18 18:38:43 +00:00
|
|
|
+} else if (is_posix) {
|
|
|
|
host_shlib_extension = ".so"
|
|
|
|
} else {
|
|
|
|
assert(false, "Host platform not supported")
|