Skip to content

Commit

Permalink
restart builds
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Dec 12, 2023
1 parent 77c3820 commit 81dfd85
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-compile-portable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: |
cp assembly/native/build-ubuntu-20.04-portable.sh .
chmod +x build-ubuntu-20.04-portable.sh
sudo ./build-ubuntu-20.04-portable.sh -t -a
sudo ./build-ubuntu-20.04-portable.sh -a
- name: Upload artifacts
uses: actions/upload-artifact@master
Expand Down
3 changes: 1 addition & 2 deletions assembly/native/build-ubuntu-20.04-portable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ cmake -GNinja .. \
-DSODIUM_LIBRARY_RELEASE=$sodiumPath/src/libsodium/.libs/libsodium.a \
-DMHD_FOUND=1 \
-DMHD_INCLUDE_DIR=$libmicrohttpdPath/src/include \
-DMHD_LIBRARY=$libmicrohttpdPath/src/microhttpd/.libs/libmicrohttpd.a \
-DCMAKE_CXX_FLAGS="-fPIC -static"
-DMHD_LIBRARY=$libmicrohttpdPath/src/microhttpd/.libs/libmicrohttpd.a


test $? -eq 0 || { echo "Can't configure ton"; exit 1; }
Expand Down
1 change: 0 additions & 1 deletion emulator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ add_library(emulator_static STATIC ${EMULATOR_STATIC_SOURCE})
target_link_libraries(emulator_static PUBLIC ton_crypto ton_block smc-envelope)

if (NOT USE_EMSCRIPTEN AND BUILD_SHARED_LIBS)
set(CMAKE_CXX_FLAGS "")
add_library(emulator SHARED ${EMULATOR_SOURCE} ${EMULATOR_HEADERS})
else()
add_library(emulator STATIC ${EMULATOR_SOURCE} ${EMULATOR_HEADERS})
Expand Down
1 change: 0 additions & 1 deletion tonlib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ set(TONLIB_JSON_SOURCE tonlib/tonlib_client_json.cpp)

include(GenerateExportHeader)
if (NOT USE_EMSCRIPTEN AND BUILD_SHARED_LIBS)
set(CMAKE_CXX_FLAGS "")
add_library(tonlibjson SHARED ${TONLIB_JSON_SOURCE} ${TONLIB_JSON_HEADERS})
else()
add_library(tonlibjson STATIC ${TONLIB_JSON_SOURCE} ${TONLIB_JSON_HEADERS})
Expand Down

0 comments on commit 81dfd85

Please sign in to comment.