From 907b5c97af00de28e299f0615162630bdddc602e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 17 Apr 2019 22:44:06 +0300 Subject: [PATCH] Readd flags for linking statically Even if building with a mingw clang toolchain, the C++ standard library may exist in dynamically linked form. If the C++ standard library doesn't exist in dynamically linked form, this makes no difference. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c2f91c4..f99e104 100755 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ x86 : - i686-w64-mingw32-clang++ fxc2.cpp -ofxc2.exe + i686-w64-mingw32-clang++ -static fxc2.cpp -ofxc2.exe x64 : - x86_64-w64-mingw32-clang++ fxc2.cpp -ofxc2.exe + x86_64-w64-mingw32-clang++ -static fxc2.cpp -ofxc2.exe