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

Side by Side Diff: build/common.gypi

Issue 131031: Revert the addition of -fno-threadsafe-statics. It breaks the build: (Closed)
Patch Set: Created 11 years, 6 months 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
« 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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # .gyp files should set chromium_code to 1 if they build Chromium-specific 7 # .gyp files should set chromium_code to 1 if they build Chromium-specific
8 # code, as opposed to external code. This variable is used to control 8 # code, as opposed to external code. This variable is used to control
9 # such things as the set of warnings to enable, and whether warnings are 9 # such things as the set of warnings to enable, and whether warnings are
10 # treated as errors. 10 # treated as errors.
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 'cflags': [ 343 'cflags': [
344 '-march=pentium4', 344 '-march=pentium4',
345 '-msse2', 345 '-msse2',
346 '-mfpmath=sse', 346 '-mfpmath=sse',
347 ], 347 ],
348 }], 348 }],
349 ], 349 ],
350 'cflags': [ 350 'cflags': [
351 '-m32', 351 '-m32',
352 '-fno-exceptions', 352 '-fno-exceptions',
353 '-fno-threadsafe-statics',
354 '-Wall', 353 '-Wall',
355 ], 354 ],
356 'ldflags': [ 355 'ldflags': [
357 '-m32', 356 '-m32',
358 ], 357 ],
359 }], 358 }],
360 ], 359 ],
361 }, 360 },
362 }], 361 }],
363 ['OS=="mac"', { 362 ['OS=="mac"', {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 # settings in target dicts. SYMROOT is a special case, because many other 539 # settings in target dicts. SYMROOT is a special case, because many other
541 # Xcode variables depend on it, including variables such as 540 # Xcode variables depend on it, including variables such as
542 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 541 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
543 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 542 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
544 # files to appear (when present) in the UI as actual files and not red 543 # files to appear (when present) in the UI as actual files and not red
545 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 544 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
546 # and therefore SYMROOT, needs to be set at the project level. 545 # and therefore SYMROOT, needs to be set at the project level.
547 'SYMROOT': '<(DEPTH)/xcodebuild', 546 'SYMROOT': '<(DEPTH)/xcodebuild',
548 }, 547 },
549 } 548 }
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