Diff Detail
Event Timeline
CMakeLists.txt | ||
---|---|---|
447–448 | Add comment explaining the space in the end. |
CMakeLists.txt | ||
---|---|---|
447–448 | Removed. I don't think it is necessary. |
lib/Driver/Tools.cpp | ||
---|---|---|
6294–6309 | It seems bad to silently not link against any OpenMP library if the value for OPENMP_DEFAULT_LIB is unknown. Maybe either OPENMP_DEFAULT_LIB should be a lib name that we blindly add to the link line ("-l" #OPENMP_DEFAULT_LIB), or we should check the value is valid in CMakeLists.txt. | |
6295 | Hm, are you expecting the -D value to already include the double-quotes? If not, this looks wrong. And if so, you should not be adding a trailing space in CMakeLists.txt. |
I switched to specifying a library name in OPENMP_DEFAULT_LIB (to support cases where people ship libiomp5 under a different name) and commited as r237850.
Add comment explaining the space in the end.