2023-04-11 23:54:09 +03:00
|
|
|
|
distributable:
|
|
|
|
|
url: https://github.com/facebook/folly/releases/download/{{version.tag}}/folly-{{version.tag}}.tar.gz
|
|
|
|
|
strip-components: 0
|
|
|
|
|
|
|
|
|
|
versions:
|
|
|
|
|
github: facebook/folly
|
|
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
|
boost.org: '*'
|
|
|
|
|
gflags.github.io: '*'
|
|
|
|
|
google.com/glog: '*'
|
|
|
|
|
libevent.org: '*'
|
|
|
|
|
lz4.org: 1
|
|
|
|
|
openssl.org: ^1.1
|
|
|
|
|
tukaani.org/xz: 5
|
|
|
|
|
facebook.com/zstd: 1
|
|
|
|
|
gnu.org/coreutils: 9
|
|
|
|
|
google.github.io/snappy: '*'
|
|
|
|
|
google.com/double-conversion: ^3
|
|
|
|
|
fmt.dev: ^9
|
2023-09-08 04:24:33 +03:00
|
|
|
|
darwin:
|
|
|
|
|
sourceware.org/bzip2: '*'
|
|
|
|
|
zlib.net: '*'
|
2023-04-11 23:54:09 +03:00
|
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
dependencies:
|
|
|
|
|
tea.xyz/gx/cc: c99
|
|
|
|
|
tea.xyz/gx/make: '*'
|
|
|
|
|
cmake.org: ^3.0.2
|
|
|
|
|
freedesktop.org/pkg-config: ^0.29
|
|
|
|
|
working-directory:
|
|
|
|
|
/tmp/xyz.tea.folly
|
|
|
|
|
# ^^ facebook use a shitty custom regex function to remove sources that
|
|
|
|
|
# shouldn’t be compiled from the library target. They start with *all sources*
|
|
|
|
|
# our default build directory has a `+` in it which breaks facebook’s
|
|
|
|
|
# piss awful code.
|
|
|
|
|
#TODO don’t use exotic characters in our build directories
|
2023-08-14 22:06:41 +03:00
|
|
|
|
script:
|
|
|
|
|
- test -d xyz.tea.srcs && rm -rf xyz.tea.srcs
|
|
|
|
|
- mv $SRCROOT xyz.tea.srcs
|
2023-09-08 04:24:33 +03:00
|
|
|
|
- cmake $ARGS -DBUILD_SHARED_LIBS=ON -S xyz.tea.srcs -B shared
|
|
|
|
|
- cmake --build shared
|
|
|
|
|
- cmake --install shared
|
|
|
|
|
|
|
|
|
|
- cmake $ARGS -DBUILD_SHARED_LIBS=OFF -S xyz.tea.srcs -B static
|
|
|
|
|
- cmake --build static
|
|
|
|
|
- run: cp /tmp/xyz.tea.folly/static/libfolly.a libfollybenchmark.a
|
|
|
|
|
working-directory: ${{prefix}}/static/folly
|
2023-05-02 05:50:30 +03:00
|
|
|
|
|
2023-08-14 22:06:41 +03:00
|
|
|
|
- run: |
|
|
|
|
|
sed -E -i.bak \
|
2023-08-23 17:28:14 +03:00
|
|
|
|
-e "s:{{tea.prefix}}:\$\{_IMPORT_PREFIX\}/../../..:g" \
|
2023-08-14 22:06:41 +03:00
|
|
|
|
-e '/^ INTERFACE_INCLUDE_DIRECTORIES/ s|/v([0-9]+)(\.[0-9]+)*[a-z]?/include|/v\1/include|g' \
|
2023-08-21 02:20:03 +03:00
|
|
|
|
-e '/^ INTERFACE_LINK_LIBRARIES/ s|/v([0-9]+)(\.[0-9]+)*[a-z]?/lib|/v\1/lib|g' \
|
2023-08-14 22:06:41 +03:00
|
|
|
|
folly-targets.cmake
|
|
|
|
|
rm folly-targets.cmake.bak
|
|
|
|
|
working-directory: ${{prefix}}/lib/cmake/folly
|
2023-05-02 05:50:30 +03:00
|
|
|
|
|
2023-08-14 22:06:41 +03:00
|
|
|
|
- run: |
|
|
|
|
|
sed -i.bak -e 's/-I[^ ]* *//g' libfolly.pc
|
|
|
|
|
rm libfolly.pc.bak
|
|
|
|
|
working-directory: ${{prefix}}/lib/pkgconfig
|
2023-09-11 17:40:54 +03:00
|
|
|
|
|
|
|
|
|
# folly has libs that end up with name @rpath/libfolly.{{version}}.dylib (offset 24)
|
|
|
|
|
# so we need to add @loader_path to the rpath
|
|
|
|
|
- run: |
|
|
|
|
|
for LIB in libfolly*.*.*.*-dev.dylib; do
|
|
|
|
|
install_name_tool -add_rpath @loader_path $LIB
|
|
|
|
|
done
|
|
|
|
|
working-directory: ${{prefix}}/lib
|
|
|
|
|
if: darwin
|
2023-04-11 23:54:09 +03:00
|
|
|
|
env:
|
|
|
|
|
ARGS:
|
|
|
|
|
- -DCMAKE_INSTALL_PREFIX={{prefix}}
|
|
|
|
|
- -DCMAKE_BUILD_TYPE=Release
|
|
|
|
|
- -DBUILD_TESTING=OFF
|
|
|
|
|
- -DCMAKE_VERBOSE_MAKEFILE=ON
|
2023-05-02 05:50:30 +03:00
|
|
|
|
linux/aarch64:
|
|
|
|
|
ARGS:
|
|
|
|
|
- -DCMAKE_C_FLAGS=-fPIC
|
|
|
|
|
- -DCMAKE_CXX_FLAGS=-fPIC
|
|
|
|
|
- -DCMAKE_EXE_LINKER_FLAGS=-pie
|
2023-04-11 23:54:09 +03:00
|
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
dependencies:
|
|
|
|
|
tea.xyz/gx/cc: c99
|
|
|
|
|
fixture: |
|
|
|
|
|
#include <folly/FBVector.h>
|
|
|
|
|
int main() {
|
|
|
|
|
folly::fbvector<int> numbers({0, 1, 2, 3});
|
|
|
|
|
numbers.reserve(10);
|
|
|
|
|
for (int i = 4; i < 10; i++) {
|
|
|
|
|
numbers.push_back(i * 2);
|
|
|
|
|
}
|
|
|
|
|
assert(numbers[6] == 12);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
script: |
|
|
|
|
|
mv $FIXTURE b.cc
|
2023-08-14 22:26:55 +03:00
|
|
|
|
c++ -std=c++17 b.cc -lfolly -ldl -lfmt -lglog
|
2023-04-11 23:54:09 +03:00
|
|
|
|
./a.out
|