File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1- SYSROOT_VERSION = 0.4 .0
2- SYSROOT_CLI_IMAGE = faasm.azurecr.io/cpp-sysroot:0.4 .0
1+ SYSROOT_VERSION = 0.5 .0
2+ SYSROOT_CLI_IMAGE = faasm.azurecr.io/cpp-sysroot:0.5 .0
33COMPOSE_PROJECT_NAME = cpp-dev
Original file line number Diff line number Diff line change 1717 if : github.event.pull_request.draft == false
1818 runs-on : ubuntu-latest
1919 container :
20- image : faasm.azurecr.io/cpp-sysroot:0.4.0
21- credentials :
22- username : ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }}
23- password : ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }}
20+ image : faasm.azurecr.io/cpp-sysroot:0.5.0
2421 steps :
2522 # --- Update code ---
2623 - name : " Checkout code"
Original file line number Diff line number Diff line change 1515
1616# Distribution / packaging
1717.Python
18- build /
18+ build * /
1919develop-eggs /
2020dist /
2121downloads /
Original file line number Diff line number Diff line change 1- 0.4 .0
1+ 0.5 .0
Original file line number Diff line number Diff line change 7171# https://reviews.llvm.org/D59281
7272WASM_CFLAGS = [
7373 "-O3" ,
74- # TODO: may want to use -mrelaxed-simd instead
74+ " -mrelaxed-simd" ,
7575 "-msimd128" ,
7676 "--sysroot={}" .format (WASM_SYSROOT ),
7777 "-m32" ,
@@ -242,6 +242,7 @@ def get_faasm_build_env_dict(is_threads=False):
242242 "atomics" ,
243243 "bulk-memory" ,
244244 "mutable-globals" ,
245+ "relaxed-simd" ,
245246 "sign-ext" ,
246247 "simd128" ,
247248 ]
@@ -251,6 +252,7 @@ def get_faasm_build_env_dict(is_threads=False):
251252 linker_features = [
252253 "bulk-memory" ,
253254 "mutable-globals" ,
255+ "relaxed-simd" ,
254256 "sign-ext" ,
255257 "simd128" ,
256258 ]
You can’t perform that action at this time.
0 commit comments