Bonjour tout le monde,

Je tente de compiler les sources depuis Linux pour obtenir des bibliothèques partagés au format .dll pour Windows 7 (32 bits).

J'arrive actuellement a lancer la compilation et a générer mes .so pour ma plateforme Linux mais pas pour Windows.

Je me suis renseigné sur la cross-compilation de Qt, mais il ne semble pas être possible de faire ce que je veux.

Voici ce que j'obtiens quand je lance un ls sur le répertoire : qtbase/mkspecs/devices/ (qui contient selon moi, toutes les cibles possible)

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ls -lart ./qtbase/mkspecs/devices/
total 104
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-tegra2-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-snowball-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-sh4-stmicro-ST7540-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-sh4-stmicro-ST7108-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-rpi3-vc4-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-rpi3-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-rasp-pi-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-rasp-pi2-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-odroid-xu3-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-nuc-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-mipsel-broadcom-97425-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-jetson-tk1-pro-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-jetson-tk1-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-imx7-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-imx6-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-imx53qsb-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-drive-cx-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-beagleboard-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-arm-trident-pnx8473-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-arm-hisilicon-hix5hd2-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-arm-generic-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-arm-amlogic-8726M-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 linux-archos-gen8-g++
drwxrwxr-x   2 astro01 astro01 4096 déc.   1 09:17 common
drwxrwxr-x  26 astro01 astro01 4096 déc.   1 09:17 .
drwxrwxr-x 100 astro01 astro01 4096 mai   26 00:00 ..
Est il possible de compiler les sources de Qt5.7.1 depuis Linux pour Windows 7 32 bits ?

Merci d'avance pour votre aide.