* setup.py: remove extra linkargs for win32

* tdm_termite.cpp: explicit cast to unsigned int
This commit is contained in:
2021-06-11 09:24:44 +02:00
parent d2453427c7
commit 35c5ac9e75
3 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ if sys.platform == "linux" or sys.platform == "darwin" :
lnkargs = ['-std=c++17','-Wno-unused-variable']
elif sys.platform == "win32" :
cmpargs = ['/EHsc','/std:c++17']
lnkargs = ['/EHsc','/std:c++17']
lnkargs = []
else :
raise RuntimeError("unknown platform")