We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f15c42e commit 4009f2dCopy full SHA for 4009f2d
packages/root/package.py
@@ -609,6 +609,10 @@ def cmake_args(self):
609
options.append(define('TIFF_LIBRARY', spec['libtiff'].libs.joined(';')))
610
options.append(define('GIF_DIR', spec['giflib'].prefix))
611
612
+ if self.spec.target == 'x86':
613
+ options.append(define('CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS', '-m32'))
614
+ options.append(define('CMAKE_EXE_FLAGS', '-m32'))
615
+
616
return options
617
618
def setup_build_environment(self, env):
0 commit comments