SConscript.sc (12046:35899b7da75f) SConscript.sc (12563:8d59ed22ae79)
1# Copyright (c) 2017, TU Dresden
2# Copyright (c) 2017, University of Kaiserslautern
3# All rights reserved.
4
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

--- 9 unchanged lines hidden (view full) ---

18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22#
23# Authors: Christian Menard
24# Matthias Jung
25
1# Copyright (c) 2017, TU Dresden
2# Copyright (c) 2017, University of Kaiserslautern
3# All rights reserved.
4
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

--- 9 unchanged lines hidden (view full) ---

18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22#
23# Authors: Christian Menard
24# Matthias Jung
25
26from __future__ import print_function
27
26Import('systemc', 'SystemCSource')
27
28SystemCSource(
29 'sc_attribute.cpp',
30 'sc_cthread_process.cpp',
31 'sc_event.cpp',
32 'sc_except.cpp',
33 'sc_join.cpp',

--- 24 unchanged lines hidden (view full) ---

58 SystemCSource('sc_cor_qt.cpp')
59elif coroutine_lib == 'pthreads':
60 systemc.Append(CXXFLAGS=['-pthread'])
61 systemc.Append(CFLAGS=['-pthread'])
62 SystemCSource('sc_cor_pthread.cpp')
63elif coroutine_lib == 'fiber':
64 SystemCSource('sc_cor_fiber.cpp')
65else:
28Import('systemc', 'SystemCSource')
29
30SystemCSource(
31 'sc_attribute.cpp',
32 'sc_cthread_process.cpp',
33 'sc_event.cpp',
34 'sc_except.cpp',
35 'sc_join.cpp',

--- 24 unchanged lines hidden (view full) ---

60 SystemCSource('sc_cor_qt.cpp')
61elif coroutine_lib == 'pthreads':
62 systemc.Append(CXXFLAGS=['-pthread'])
63 systemc.Append(CFLAGS=['-pthread'])
64 SystemCSource('sc_cor_pthread.cpp')
65elif coroutine_lib == 'fiber':
66 SystemCSource('sc_cor_fiber.cpp')
67else:
66 print 'Unrecognized threading implementation \'%s\'' % coroutine_lib
68 print('Unrecognized threading implementation \'%s\'' % coroutine_lib)
67 Exit(1)
69 Exit(1)