-
-
Notifications
You must be signed in to change notification settings - Fork 747
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
Build LINUX board on Mac Os X Intel #2483
Comments
The last time I tried to build a Linux board was release 2v18.6. |
Pretty sure this is Mac specific - works fine on Linux |
@MaBecker Seeing the same error here on an M1 Mac. % gcc -v
Apple clang version 15.0.0 (clang-1500.3.9.4)
Target: arm64-apple-darwin23.4.0 targets/linux/jshardware.c:361:48: error: incompatible function pointer types passing 'void (*)()' to parameter of type 'void * _Nullable (* _Nonnull)(void * _Nullable)' [-Wincompatible-function-pointer-types]
int err = pthread_create(&inputThread, NULL, &jshInputThread, NULL);
^~~~~~~~~~~~~~~ |
Found this, adding it is building but causing a lot linker warnings like this: 53 warnings generated.
LD bin/espruino
ld: warning: disabling chained fixups because of unaligned pointers
ld: warning: pointer not aligned at _jswSymbols_Pin_proto+0x4 from /github/Espruino/Espruino/obj/gen/jswrapper.o
.....
looks like for all _jswSysmbols_*
..... I will keep this localy until someone comes up with a propper solution for this on Mac's. |
Well, I guess it's more a gcc version thing ;-) |
Is this still an issue? I seem not to be getting any ld warnings with the following setup: % git diff
diff --git a/targets/linux/jshardware.c b/targets/linux/jshardware.c
index 8475a183a..2494d769c 100644
--- a/targets/linux/jshardware.c
+++ b/targets/linux/jshardware.c
@@ -252,7 +252,7 @@ int getch()
-void jshInputThread() {
+void* jshInputThread() {
while (isInitialised) {
|
Unsure about the Intel target though. Perhaps something like this could help?
|
Hi, wanted to know if this is Mac gcc specific or if there is someting broken when building a Espruino on Mac as Linux board.
The text was updated successfully, but these errors were encountered: