mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-29 08:30:51 +01:00
c455673f87
If you are having trouble with segmentation faults in linux try "shared_soil=true". That seems to fix the problem. How do we fix this for the static build? git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5182 8ced0084-cf51-0410-be5f-012b33b47a6e
19 lines
327 B
Python
19 lines
327 B
Python
# -*- python -*-
|
|
Import('env')
|
|
import sys
|
|
|
|
files = [
|
|
'image_DXT.c',
|
|
'image_helper.c',
|
|
'SOIL.c',
|
|
'stb_image_aug.c'
|
|
]
|
|
|
|
env_soil = env.Clone(
|
|
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
|
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
|
parse_flags = ['-fPIC']
|
|
)
|
|
|
|
env_soil.StaticLibrary(env['local_libs'] + "SOIL", files)
|