mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-30 05:52:02 +02:00

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
23 lines
493 B
Python
23 lines
493 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
files = [
|
|
"SFML/Network/Ftp.cpp",
|
|
"SFML/Network/Http.cpp",
|
|
"SFML/Network/IPAddress.cpp",
|
|
"SFML/Network/Packet.cpp",
|
|
"SFML/Network/SelectorBase.cpp",
|
|
"SFML/Network/SocketTCP.cpp",
|
|
"SFML/Network/SocketUDP.cpp",
|
|
"SFML/Network/Unix/SocketHelper.cpp",
|
|
]
|
|
|
|
env_sfml = env.Clone(
|
|
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
|
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
|
)
|
|
|
|
env_sfml.StaticLibrary(env['local_libs'] + "sfml-network", files)
|