浏览代码

Merge branch 'new/windows-cross-compile'

DricomDragon 4 年之前
父节点
当前提交
2d9c00ddcf
共有 2 个文件被更改,包括 31 次插入4 次删除
  1. 15 1
      README.md
  2. 16 3
      makefile

+ 15 - 1
README.md

@@ -1,3 +1,17 @@
 # HelloWorld
 
-Experimental project to test end to end development process : continuous integration, monitoring, cross-compilation, distributing, etc.
+Experimental project to test end to end development process : continuous integration, monitoring, cross-compilation, distributing, etc.
+
+## Cross compilation
+
+### GNU/Linux
+
+It is assumed that your are currently using a GNU/Linux distribution, so the default `linux-compiler` is `g++` found in the environment.
+
+### Windows
+
+You need the cross-compiler `i686-w64-mingw32-g++-win32`, you can install it in Debian :
+
+```sh
+sudo apt install g++-mingw-w64-i686
+```

+ 16 - 3
makefile

@@ -1,5 +1,18 @@
-hello.out: main.cpp
-	g++ main.cpp -o hello.out
+linux-artifact = hello-linux.out
+win-artifact = hello-windows.exe
+
+linux-compiler = g++
+
+# Embed c and c++ libraries (see https://stackoverflow.com/a/6405064)
+win-compiler = i686-w64-mingw32-g++-win32 -static-libstdc++ -static-libgcc
+
+all: $(linux-artifact) $(win-artifact)
+
+$(linux-artifact): main.cpp
+	$(linux-compiler) main.cpp -o $(linux-artifact)
+
+$(win-artifact): main.cpp
+	$(win-compiler) main.cpp -o $(win-artifact)
 
 clean:
-	rm hello.out
+	rm -f $(linux-artifact) $(win-artifact)