diff options
author | Jiri Malak <malak.jiri@gmail.com> | 2023-01-25 13:42:20 (GMT) |
---|---|---|
committer | Jiri Malak <malak.jiri@gmail.com> | 2023-01-26 14:27:53 (GMT) |
commit | a6bdf54a5e2ca2023136640f423e32fb1f01112e (patch) | |
tree | 3512c2448b41d0d307bd7ccae5e84b8d5dcd83f6 /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | ed09c0aecd7c68b3ad2af805fda1449f799a6eae (diff) | |
download | CMake-a6bdf54a5e2ca2023136640f423e32fb1f01112e.zip CMake-a6bdf54a5e2ca2023136640f423e32fb1f01112e.tar.gz CMake-a6bdf54a5e2ca2023136640f423e32fb1f01112e.tar.bz2 |
Watcom: Fix double-quote to be single-quote in response files for wlink
Response files contained double-quote for any response file, but response files for wlink must contains single-quote. This is fix for libraries list response file. Problem for object file list was fixed by MR
!8115
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 09c9c7e..9669293 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -821,7 +821,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules( if (useArchiveRules) { // Construct the individual object list strings. std::vector<std::string> object_strings; - this->WriteObjectsStrings(object_strings, archiveCommandLimit); + this->WriteObjectsStrings(object_strings, false, archiveCommandLimit); // Add the cuda device object to the list of archive files. This will // only occur on archives which have CUDA_RESOLVE_DEVICE_SYMBOLS enabled |