Skip to content

Commit

Permalink
Merge pull request #517 from SeleDreams/master
Browse files Browse the repository at this point in the history
Added freebsd specific configuration to SConstruct
  • Loading branch information
vnen authored Mar 1, 2021
2 parents 87f7e06 + 45fef69 commit cee79bb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ def add_sources(sources, dir, extension):
# This is used if no `platform` argument is passed
if sys.platform.startswith('linux'):
host_platform = 'linux'
elif sys.platform.startswith('freebsd'):
host_platform = 'freebsd'
elif sys.platform == 'darwin':
host_platform = 'osx'
elif sys.platform == 'win32' or sys.platform == 'msys':
Expand All @@ -84,7 +86,7 @@ opts.Add(EnumVariable(
'platform',
'Target platform',
host_platform,
allowed_values=('linux', 'osx', 'windows', 'android', 'ios'),
allowed_values=('linux', 'freebsd', 'osx', 'windows', 'android', 'ios'),
ignorecase=2
))
opts.Add(EnumVariable(
Expand All @@ -95,7 +97,7 @@ opts.Add(EnumVariable(
))
opts.Add(BoolVariable(
'use_llvm',
'Use the LLVM compiler - only effective when targeting Linux',
'Use the LLVM compiler - only effective when targeting Linux or FreeBSD',
False
))
opts.Add(BoolVariable(
Expand Down Expand Up @@ -187,7 +189,7 @@ if host_platform == 'windows' and env['platform'] != 'android':

opts.Update(env)

if env['platform'] == 'linux':
if env['platform'] == 'linux' or env['platform'] == 'freebsd':
if env['use_llvm']:
env['CXX'] = 'clang++'

Expand Down Expand Up @@ -280,7 +282,7 @@ elif env['platform'] == 'windows':
elif env['target'] == 'release':
env.Append(CCFLAGS=['/O2', '/EHsc', '/DNDEBUG', '/MD'])

elif host_platform == 'linux' or host_platform == 'osx':
elif host_platform == 'linux' or host_platform == 'freebsd' or host_platform == 'osx':
# Cross-compilation using MinGW
if env['bits'] == '64':
env['CXX'] = 'x86_64-w64-mingw32-g++'
Expand All @@ -302,7 +304,7 @@ elif env['platform'] == 'windows':
env["SPAWN"] = mySpawn

# Native or cross-compilation using MinGW
if host_platform == 'linux' or host_platform == 'osx' or env['use_mingw']:
if host_platform == 'linux' or host_platform == 'freebsd' or host_platform == 'osx' or env['use_mingw']:
# These options are for a release build even using target=debug
env.Append(CCFLAGS=['-O3', '-std=c++14', '-Wwrite-strings'])
env.Append(LINKFLAGS=[
Expand Down

0 comments on commit cee79bb

Please sign in to comment.