Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RPI - Linux aarch64 minor fixes #7527

Merged
merged 47 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
be3b118
update
dimitre Apr 20, 2023
d78ee87
restore readme
dimitre Apr 20, 2023
45bb89d
updates
dimitre Apr 20, 2023
047ee53
script
dimitre Apr 20, 2023
b091244
-no-pie
dimitre Apr 20, 2023
b38481b
opencv on aarch64
dimitre Apr 21, 2023
684edd2
script comment
dimitre Apr 21, 2023
d30e66d
assimp addon_config.mk
dimitre Apr 21, 2023
279ca2d
nostartfiles
dimitre Apr 21, 2023
c627580
remove
dimitre Apr 21, 2023
d819361
echo path
dimitre Apr 21, 2023
ad09fd0
script
dimitre Apr 21, 2023
c9e5ee7
script
dimitre Apr 21, 2023
81bb6ef
script
dimitre Apr 21, 2023
1c27061
script
dimitre Apr 21, 2023
e5226c0
ofAppRunner cleanup
dimitre Apr 21, 2023
c6b5e28
glfw transparent
dimitre Apr 22, 2023
eceb15d
glfw transparent
dimitre Apr 22, 2023
a5db9fc
unordered_map to map
dimitre Apr 22, 2023
52f1c02
remove experimental filesystem
dimitre Apr 22, 2023
b9c24c4
remove experimental filesystem
dimitre Apr 22, 2023
7ac0a43
update
dimitre Apr 22, 2023
71a2a69
test
dimitre Apr 22, 2023
ae005e1
test
dimitre Apr 22, 2023
d8f364a
testfix
dimitre Apr 22, 2023
26b5806
test
dimitre Apr 22, 2023
7983b6d
up
dimitre Apr 22, 2023
d2d61ae
up
dimitre Apr 22, 2023
06c5c92
up
dimitre Apr 22, 2023
d0be371
up
dimitre Apr 22, 2023
6e5b3c9
up
dimitre Apr 22, 2023
bd81044
up
dimitre Apr 22, 2023
9aa8b9c
up
dimitre Apr 22, 2023
bf4504c
up
dimitre Apr 22, 2023
48bb886
up
dimitre Apr 22, 2023
db75f3b
up
dimitre Apr 22, 2023
e61d2ef
up
dimitre Apr 22, 2023
6578cbe
up
dimitre Apr 22, 2023
6859220
up
dimitre Apr 22, 2023
8382db4
up
dimitre Apr 22, 2023
54e539f
up
dimitre Apr 22, 2023
33c285c
up
dimitre Apr 22, 2023
8732dbb
up
dimitre Apr 22, 2023
31d594b
up
dimitre Apr 22, 2023
2d86972
up
dimitre Apr 22, 2023
627557b
Merge branch 'openframeworks:master' into script
dimitre Apr 26, 2023
ca1838a
cleanup
dimitre Apr 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions addons/ofxAssimpModelLoader/addon_config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ linuxarmv7l:
ADDON_LIBS_EXCLUDE = libs/assimp
ADDON_INCLUDES_EXCLUDE = libs/assimp/%

linuxaarch64:
ADDON_PKG_CONFIG_LIBRARIES = assimp
ADDON_LIBS_EXCLUDE = libs/assimp
ADDON_INCLUDES_EXCLUDE = libs/assimp/%

linux:
ADDON_PKG_CONFIG_LIBRARIES = assimp
ADDON_LIBS_EXCLUDE = libs/assimp
Expand Down
6 changes: 6 additions & 0 deletions addons/ofxOpenCv/addon_config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ linuxarmv7l:
ADDON_INCLUDES_EXCLUDE = libs/opencv
ADDON_INCLUDES_EXCLUDE += libs/opencv/%

linuxaarch64:
ADDON_PKG_CONFIG_LIBRARIES = opencv4
ADDON_LIBS_EXCLUDE = libs/opencv/%
ADDON_INCLUDES_EXCLUDE = libs/opencv
ADDON_INCLUDES_EXCLUDE += libs/opencv/%

msys2:
ADDON_PKG_CONFIG_LIBRARIES = opencv4
ADDON_LIBS_EXCLUDE = libs/opencv/%
Expand Down
2 changes: 1 addition & 1 deletion apps/projectGenerator
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ include $(OF_SHARED_MAKEFILES_PATH)/config.linux.common.mk
################################################################################

PLATFORM_LDFLAGS += -lstdc++fs

PLATFORM_LDFLAGS += -no-pie
# PLATFORM_LDFLAGS += -nostartfiles

PLATFORM_CFLAGS += -march=armv8-a
PLATFORM_CFLAGS += -mcpu=cortex-a72
Expand Down