8000 Remove LDFLAGS_MOD override · phires/lv_binding_micropython@3470666 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3470666

Browse files
committed
Remove LDFLAGS_MOD override
Overriding LDFLAGS_MOD removes required libraries. The linker ldflags ' -rdynamic -ldl -Wl,--copy-dt-needed-entries' were needed for debugging crash (see bce6a67) but it seems that they are no longer needed
1 parent 2c803d0 commit 3470666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/unix_port.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Build mpy-cross
3434
run: make -j $(nproc) -C mpy-cross
3535
- name: Build the unix port
36-
run: make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1 LDFLAGS_MOD="-rdynamic -ldl -Wl,--copy-dt-needed-entries"
36+
run: make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1
3737
- name: Run tests
3838
run: |
3939
export XDG_RUNTIME_DIR=/tmp

0 commit comments

Comments
 (0)
0