diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-11-09 19:15:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-09 19:15:41 +0100 |
| commit | 5a276432b8bd560d5d2ff4593f125d2463812d81 (patch) | |
| tree | c576b3a244a15167d2b244f264b0d3db69d63dfd | |
| parent | b90daaeaf433c3b499b38042db20376422bfc171 (diff) | |
Look in lib64 for Windows libraries.
| -rwxr-xr-x | cdist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -573,7 +573,7 @@ class WindowsDockerTarget(DockerTarget): self.set('RANLIB', '%s-ranlib' % self.name) self.set('WINRC', '%s-windres' % self.name) cxx = '-I%s/include -I%s/include' % (self.environment_prefix, self.directory) - link = '-L%s/lib -L%s/lib' % (self.environment_prefix, self.directory) + link = '-L%s/lib -L%s/lib -L%s/lib64' % (self.environment_prefix, self.directory, self.directory) self.set('CXXFLAGS', '"%s"' % cxx) self.set('CPPFLAGS', '') self.set('LINKFLAGS', '"%s"' % link) |
