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

Side by Side Diff: src/flag-definitions.h

Issue 23687003: Fix compilation with recent MinGW64 versions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/ast.h ('k') | src/gdb-jit.cc » ('j') | 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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 613
614 // Regexp 614 // Regexp
615 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 615 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
616 616
617 // Testing flags test/cctest/test-{flags,api,serialization}.cc 617 // Testing flags test/cctest/test-{flags,api,serialization}.cc
618 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 618 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
619 DEFINE_int(testing_int_flag, 13, "testing_int_flag") 619 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
620 DEFINE_float(testing_float_flag, 2.5, "float-flag") 620 DEFINE_float(testing_float_flag, 2.5, "float-flag")
621 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") 621 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
622 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") 622 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
623 #ifdef WIN32 623 #ifdef _WIN32
624 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 624 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
625 "file in which to testing_serialize heap") 625 "file in which to testing_serialize heap")
626 #else 626 #else
627 DEFINE_string(testing_serialization_file, "/tmp/serdes", 627 DEFINE_string(testing_serialization_file, "/tmp/serdes",
628 "file in which to serialize heap") 628 "file in which to serialize heap")
629 #endif 629 #endif
630 630
631 // mksnapshot.cc 631 // mksnapshot.cc
632 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in" 632 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in"
633 " the snapshot (mksnapshot only)") 633 " the snapshot (mksnapshot only)")
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 #undef DEFINE_ALIAS_int 852 #undef DEFINE_ALIAS_int
853 #undef DEFINE_ALIAS_string 853 #undef DEFINE_ALIAS_string
854 #undef DEFINE_ALIAS_float 854 #undef DEFINE_ALIAS_float
855 #undef DEFINE_ALIAS_args 855 #undef DEFINE_ALIAS_args
856 856
857 #undef FLAG_MODE_DECLARE 857 #undef FLAG_MODE_DECLARE
858 #undef FLAG_MODE_DEFINE 858 #undef FLAG_MODE_DEFINE
859 #undef FLAG_MODE_DEFINE_DEFAULTS 859 #undef FLAG_MODE_DEFINE_DEFAULTS
860 #undef FLAG_MODE_META 860 #undef FLAG_MODE_META
861 #undef FLAG_MODE_DEFINE_IMPLICATIONS 861 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/gdb-jit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698