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

Side by Side Diff: Makefile

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: re-upload - catch up to 8/19 level Created 6 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
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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 # arm_test_noprobe=on 194 # arm_test_noprobe=on
195 # With this flag set, by default v8 will only use features implied 195 # With this flag set, by default v8 will only use features implied
196 # by the compiler (no probe). This is done by modifying the default 196 # by the compiler (no probe). This is done by modifying the default
197 # values of enable_armv7, enable_vfp3, enable_32dregs and enable_neon. 197 # values of enable_armv7, enable_vfp3, enable_32dregs and enable_neon.
198 # Modifying these flags when launching v8 will enable the probing for 198 # Modifying these flags when launching v8 will enable the probing for
199 # the specified values. 199 # the specified values.
200 ifeq ($(arm_test_noprobe), on) 200 ifeq ($(arm_test_noprobe), on)
201 GYPFLAGS += -Darm_test_noprobe=on 201 GYPFLAGS += -Darm_test_noprobe=on
202 endif 202 endif
203 203
204 GYPFLAGS += -Dv8_host_byteorder=$(shell python -c "import sys; print sys.byteord er")
Sven Panne 2014/09/01 07:55:16 Why???
205
204 # ----------------- available targets: -------------------- 206 # ----------------- available targets: --------------------
205 # - "builddeps": pulls in external dependencies for building 207 # - "builddeps": pulls in external dependencies for building
206 # - "dependencies": pulls in all external dependencies 208 # - "dependencies": pulls in all external dependencies
207 # - "grokdump": rebuilds heap constants lists used by grokdump 209 # - "grokdump": rebuilds heap constants lists used by grokdump
208 # - any arch listed in ARCHES (see below) 210 # - any arch listed in ARCHES (see below)
209 # - any mode listed in MODES 211 # - any mode listed in MODES
210 # - every combination <arch>.<mode>, e.g. "ia32.release" 212 # - every combination <arch>.<mode>, e.g. "ia32.release"
211 # - "native": current host's architecture, release mode 213 # - "native": current host's architecture, release mode
212 # - any of the above with .check appended, e.g. "ia32.release.check" 214 # - any of the above with .check appended, e.g. "ia32.release.check"
213 # - "android": cross-compile for Android/ARM 215 # - "android": cross-compile for Android/ARM
214 # - "nacl" : cross-compile for Native Client (ia32 and x64) 216 # - "nacl" : cross-compile for Native Client (ia32 and x64)
215 # - default (no target specified): build all DEFAULT_ARCHES and MODES 217 # - default (no target specified): build all DEFAULT_ARCHES and MODES
216 # - "check": build all targets and run all tests 218 # - "check": build all targets and run all tests
217 # - "<arch>.clean" for any <arch> in ARCHES 219 # - "<arch>.clean" for any <arch> in ARCHES
218 # - "clean": clean all ARCHES 220 # - "clean": clean all ARCHES
219 221
220 # ----------------- internal stuff ------------------------ 222 # ----------------- internal stuff ------------------------
221 223
222 # Architectures and modes to be compiled. Consider these to be internal 224 # Architectures and modes to be compiled. Consider these to be internal
223 # variables, don't override them (use the targets instead). 225 # variables, don't override them (use the targets instead).
224 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64el x87 226 ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64el x87 ppc ppc64
225 DEFAULT_ARCHES = ia32 x64 arm 227 DEFAULT_ARCHES = ia32 x64 arm
226 MODES = release debug optdebug 228 MODES = release debug optdebug
227 DEFAULT_MODES = release debug 229 DEFAULT_MODES = release debug
228 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel android_x 87 230 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel android_x 87
229 NACL_ARCHES = nacl_ia32 nacl_x64 231 NACL_ARCHES = nacl_ia32 nacl_x64
230 232
231 # List of files that trigger Makefile regeneration: 233 # List of files that trigger Makefile regeneration:
232 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \ 234 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \
233 build/toolchain.gypi samples/samples.gyp src/d8.gyp \ 235 build/toolchain.gypi samples/samples.gyp src/d8.gyp \
234 test/cctest/cctest.gyp tools/gyp/v8.gyp 236 test/cctest/cctest.gyp tools/gyp/v8.gyp
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 third_party/icu --revision 277999 ; \ 486 third_party/icu --revision 277999 ; \
485 fi 487 fi
486 svn checkout --force http://googletest.googlecode.com/svn/trunk \ 488 svn checkout --force http://googletest.googlecode.com/svn/trunk \
487 testing/gtest --revision 692 489 testing/gtest --revision 692
488 svn checkout --force http://googlemock.googlecode.com/svn/trunk \ 490 svn checkout --force http://googlemock.googlecode.com/svn/trunk \
489 testing/gmock --revision 485 491 testing/gmock --revision 485
490 492
491 dependencies: builddeps 493 dependencies: builddeps
492 # The spec is a copy of the hooks in v8's DEPS file. 494 # The spec is a copy of the hooks in v8's DEPS file.
493 gclient sync -r fb782d4369d5ae04f17a2fceef7de5a63e50f07b --spec="solutio ns = [{u'managed': False, u'name': u'buildtools', u'url': u'https://chromium.goo glesource.com/chromium/buildtools.git', u'custom_deps': {}, u'custom_hooks': [{u 'name': u'clang_format_win',u'pattern': u'.',u'action': [u'download_from_google_ storage',u'--no_resume',u'--platform=win32',u'--no_auth',u'--bucket',u'chromium- clang-format',u'-s',u'buildtools/win/clang-format.exe.sha1']},{u'name': u'clang_ format_mac',u'pattern': u'.',u'action': [u'download_from_google_storage',u'--no_ resume',u'--platform=darwin',u'--no_auth',u'--bucket',u'chromium-clang-format',u '-s',u'buildtools/mac/clang-format.sha1']},{u'name': u'clang_format_linux',u'pat tern': u'.',u'action': [u'download_from_google_storage',u'--no_resume',u'--platf orm=linux*',u'--no_auth',u'--bucket',u'chromium-clang-format',u'-s',u'buildtools /linux64/clang-format.sha1']}],u'deps_file': u'.DEPS.git', u'safesync_url': u''} ]" 495 gclient sync -r fb782d4369d5ae04f17a2fceef7de5a63e50f07b --spec="solutio ns = [{u'managed': False, u'name': u'buildtools', u'url': u'https://chromium.goo glesource.com/chromium/buildtools.git', u'custom_deps': {}, u'custom_hooks': [{u 'name': u'clang_format_win',u'pattern': u'.',u'action': [u'download_from_google_ storage',u'--no_resume',u'--platform=win32',u'--no_auth',u'--bucket',u'chromium- clang-format',u'-s',u'buildtools/win/clang-format.exe.sha1']},{u'name': u'clang_ format_mac',u'pattern': u'.',u'action': [u'download_from_google_storage',u'--no_ resume',u'--platform=darwin',u'--no_auth',u'--bucket',u'chromium-clang-format',u '-s',u'buildtools/mac/clang-format.sha1']},{u'name': u'clang_format_linux',u'pat tern': u'.',u'action': [u'download_from_google_storage',u'--no_resume',u'--platf orm=linux*',u'--no_auth',u'--bucket',u'chromium-clang-format',u'-s',u'buildtools /linux64/clang-format.sha1']}],u'deps_file': u'.DEPS.git', u'safesync_url': u''} ]"
OLDNEW
« no previous file with comments | « AUTHORS ('k') | build/standalone.gypi » ('j') | src/base/platform/platform-posix.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698