Fix platform flags to also check for linux

Reviewed By: danzimm

Differential Revision: D6036995

fbshipit-source-id: 98d7f19eb80b72090b26252864a6bd41a3295462
This commit is contained in:
Michael Lee 2017-10-12 09:07:05 -07:00 committed by Facebook Github Bot
parent f9047cdfaf
commit 7997a2b749
1 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ include_defs("//ReactAndroid/DEFS")
# libpthread is implicitly included in the android runtime so, when building # libpthread is implicitly included in the android runtime so, when building
# on an android platform, we don't do anything. # on an android platform, we don't do anything.
deprecated_prebuilt_cxx_library( prebuilt_cxx_library(
name = "pthread", name = "pthread",
exported_platform_linker_flags = [ exported_platform_linker_flags = [
( (
@ -14,7 +14,7 @@ deprecated_prebuilt_cxx_library(
[], [],
), ),
( (
"default", "^(default|linux)",
["-lpthread"], ["-lpthread"],
), ),
( (
@ -28,7 +28,7 @@ deprecated_prebuilt_cxx_library(
], ],
) )
deprecated_prebuilt_cxx_library( prebuilt_cxx_library(
name = "dl", name = "dl",
exported_linker_flags = [ exported_linker_flags = [
"-ldl", "-ldl",
@ -39,7 +39,7 @@ deprecated_prebuilt_cxx_library(
], ],
) )
deprecated_prebuilt_cxx_library( prebuilt_cxx_library(
name = "m", name = "m",
exported_linker_flags = [ exported_linker_flags = [
"-lm", "-lm",
@ -50,7 +50,7 @@ deprecated_prebuilt_cxx_library(
], ],
) )
deprecated_prebuilt_cxx_library( prebuilt_cxx_library(
name = "rt", name = "rt",
exported_platform_linker_flags = [ exported_platform_linker_flags = [
( (
@ -58,7 +58,7 @@ deprecated_prebuilt_cxx_library(
[], [],
), ),
( (
"default", "^(default|linux)",
["-lrt"], ["-lrt"],
), ),
], ],