FLTK logo

[fltk.general] crosscompiling to macos 10 linker issues

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.general  ]
 
Previous Message ]New Message | Reply ]Next Message ]

crosscompiling to macos 10 linker issues Mo_Al_ 14:30 May 01  
  Hello

Currently FLTK uses UniformTypeIdentifiers on macos >= 11.
This is done using both CMake by checking the CMAKE_SYSTEM_VERSION >= 20 for the linking and  MAC_OS_X_VERSION_MAX_ALLOWED (in src/Fl_Native_File_Chooser_MAC.mm ) during the compilation.

According to the discussion here:
https://github.com/fltk-rs/fltk-rs/discussions/1541
this leads to issues when targeting macos 10 via cross-compilation.

The following Dockerfile would reproduce the issue. It uses a container which installs the osxcross toolchain:

FROM juanplopes/crossbuild

RUN git clone https://github.com/fltk/fltk --depth=1

ENV CROSS_TRIPLE=x86_64-apple-darwin

WORKDIR /workdir/fltk

ENV MACOSX_DEPLOYMENT_TARGET="10.9.0"

RUN crossbuild cmake -Bbin -DFLTK_BUILD_GL=OFF -DCMAKE_SYSTEM_NAME="Darwin" -DCMAKE_SYSTEM_VERSION="19.0.0"

RUN crossbuild cmake --build bin --parallel


removing the CMAKE_SYSTEM_VERSION breaks the build because CMake/setup.cmake relies on it being set. Using CMAKE_SYSTEM_VERSION 19 would cause a linker error. 
I haven't tried targeting macos 10 using an actual macos system, so I can't tell if this would also cause a build error there.

Thank you for your insights.

--
You received this message because you are subscribed to the Google Groups "fltk.general" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fltkgeneral+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/fltkgeneral/b1061ae4-c7c0-4fb8-90f1-43ea10d93035n%40googlegroups.com.
Direct Link to Message ]
 
     
Previous Message ]New Message | Reply ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.