mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
Merge pull request #7081 from thess/boost-work
boost: Fix mips32r1 cpu builds (exclude Boost.fiber)
This commit is contained in:
+7
-2
@@ -234,6 +234,11 @@ define Package/boost/config
|
|||||||
select boost-coroutine2
|
select boost-coroutine2
|
||||||
select boost-graph-parallel
|
select boost-graph-parallel
|
||||||
|
|
||||||
|
# Invisible config dependency
|
||||||
|
config boost-fiber-exclude
|
||||||
|
bool
|
||||||
|
default y if (CPU_TYPE=mips32 || CPU_TYPE=mips64)
|
||||||
|
|
||||||
config boost-test-pkg
|
config boost-test-pkg
|
||||||
bool "Boost test package."
|
bool "Boost test package."
|
||||||
default m if ALL
|
default m if ALL
|
||||||
@@ -256,7 +261,7 @@ define Package/boost/config
|
|||||||
default m if ALL
|
default m if ALL
|
||||||
$(if $(findstring locale,$(lib)),depends on BUILD_NLS,)\
|
$(if $(findstring locale,$(lib)),depends on BUILD_NLS,)\
|
||||||
$(if $(findstring python,$(lib)),depends on PACKAGE_$(lib),)\
|
$(if $(findstring python,$(lib)),depends on PACKAGE_$(lib),)\
|
||||||
$(if $(findstring fiber,$(lib)),depends on CPU_TYPE!=mips32 && CPU_TYPE!=mips64,)
|
$(if $(findstring fiber,$(lib)),depends on (CPU_TYPE!=mips32 && CPU_TYPE!=mips64),)
|
||||||
)
|
)
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
@@ -305,7 +310,7 @@ $(eval $(call DefineBoostLibrary,contract,system,))
|
|||||||
$(eval $(call DefineBoostLibrary,coroutine,system chrono context thread,))
|
$(eval $(call DefineBoostLibrary,coroutine,system chrono context thread,))
|
||||||
$(eval $(call DefineBoostLibrary,date_time,,))
|
$(eval $(call DefineBoostLibrary,date_time,,))
|
||||||
#$(eval $(call DefineBoostLibrary,exception,,))
|
#$(eval $(call DefineBoostLibrary,exception,,))
|
||||||
$(eval $(call DefineBoostLibrary,fiber,coroutine filesystem,,))
|
$(eval $(call DefineBoostLibrary,fiber,coroutine filesystem,,!boost-fiber-exclude))
|
||||||
$(eval $(call DefineBoostLibrary,filesystem,system,))
|
$(eval $(call DefineBoostLibrary,filesystem,system,))
|
||||||
$(eval $(call DefineBoostLibrary,graph,regex,))
|
$(eval $(call DefineBoostLibrary,graph,regex,))
|
||||||
$(eval $(call DefineBoostLibrary,iostreams,,+zlib +liblzma +libbz2))
|
$(eval $(call DefineBoostLibrary,iostreams,,+zlib +liblzma +libbz2))
|
||||||
|
|||||||
Reference in New Issue
Block a user