Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: tools/gyp/v8.gyp

Issue 722673002: Link against librt on solaris for semaphore and scheduler symbols (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1419 ]}, 1419 ]},
1420 'sources': [ 1420 'sources': [
1421 '../../src/base/platform/platform-openbsd.cc', 1421 '../../src/base/platform/platform-openbsd.cc',
1422 '../../src/base/platform/platform-posix.cc' 1422 '../../src/base/platform/platform-posix.cc'
1423 ], 1423 ],
1424 } 1424 }
1425 ], 1425 ],
1426 ['OS=="solaris"', { 1426 ['OS=="solaris"', {
1427 'link_settings': { 1427 'link_settings': {
1428 'libraries': [ 1428 'libraries': [
1429 '-lnsl', 1429 '-lnsl -lrt',
1430 ]}, 1430 ]},
1431 'sources': [ 1431 'sources': [
1432 '../../src/base/platform/platform-solaris.cc', 1432 '../../src/base/platform/platform-solaris.cc',
1433 '../../src/base/platform/platform-posix.cc' 1433 '../../src/base/platform/platform-posix.cc'
1434 ], 1434 ],
1435 } 1435 }
1436 ], 1436 ],
1437 ['OS=="mac"', { 1437 ['OS=="mac"', {
1438 'sources': [ 1438 'sources': [
1439 '../../src/base/platform/platform-macos.cc', 1439 '../../src/base/platform/platform-macos.cc',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 }], 1740 }],
1741 ['v8_compress_startup_data=="bz2"', { 1741 ['v8_compress_startup_data=="bz2"', {
1742 'libraries': [ 1742 'libraries': [
1743 '-lbz2', 1743 '-lbz2',
1744 ] 1744 ]
1745 }], 1745 }],
1746 ], 1746 ],
1747 }, 1747 },
1748 ], 1748 ],
1749 } 1749 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698