fix -pthread issue on linux - closes #2132
This commit is contained in:
parent
afb287633b
commit
f8ea04f85f
1 changed files with 5 additions and 2 deletions
|
@ -102,7 +102,10 @@ lib_env['LIBS'].append(env['ICU_LIB_NAME'])
|
|||
|
||||
lib_env['LIBS'].append('freetype')
|
||||
|
||||
if env['RUNTIME_LINK'] == 'static' and 'icuuc' in env['ICU_LIB_NAME']:
|
||||
if env['RUNTIME_LINK'] == 'static':
|
||||
if env['PLATFORM'] == 'Linux':
|
||||
lib_env['LINKFLAGS'].append('-pthread')
|
||||
if 'icuuc' in env['ICU_LIB_NAME']:
|
||||
lib_env['LIBS'].append('icudata')
|
||||
|
||||
if env['RUNTIME_LINK'] != 'static':
|
||||
|
|
Loading…
Reference in a new issue