mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
f238471639
* new file: projects/facebook.com/fb303/package.yml new file: projects/facebook.com/fb303/test.cpp * -fPIC * cxx flags in cmake args * lets try more flags * wip * wip * oops * maybe gcc for linux aarch64 * modified: projects/facebook.com/fb303/package.yml * add boost * looks like it wants a specific version * 1.84 is loaded * zlib * add -fPIC for linux * boost.org: ^1.84 * fbthrift ver * fbthrift => runtime dep --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
7 lines
214 B
C++
7 lines
214 B
C++
#include "fb303/thrift/gen-cpp2/BaseService.h"
|
|
#include <iostream>
|
|
int main() {
|
|
auto service = facebook::fb303::cpp2::BaseServiceSvIf();
|
|
std::cout << service.getGeneratedName() << std::endl;
|
|
return 0;
|
|
} |