17 lines
540 B
Plaintext
17 lines
540 B
Plaintext
config BR2_PACKAGE_ACE
|
|
bool "ace"
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
|
|
help
|
|
The ADAPTIVE Communication Environment (ACE(TM))
|
|
An OO Network Programming Toolkit in C++.
|
|
|
|
http://www.dre.vanderbilt.edu/~schmidt/ACE.html
|
|
|
|
comment "ACE needs a glibc toolchain, dynamic library, C++, gcc >= 4.9"
|
|
depends on !BR2_TOOLCHAIN_USES_GLIBC || BR2_STATIC_LIBS || \
|
|
!BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|