summaryrefslogtreecommitdiffstats
path: root/llvm/utils/release
Commit message (Collapse)AuthorAgeFilesLines
...
* The trunk version is now 7.0.0svnHans Wennborg2018-01-031-2/+2
| | | | llvm-svn: 321712
* merge-request.sh: Update to use new "Fixed by Commit(s)" fieldTom Stellard2017-09-151-40/+50
| | | | | | | | | | | | | | | | | | Summary: This will be used instead of the url field to track which commits need to be merged. This patch also drops support for version 1.x of the bugzilla CLI tool. Reviewers: hansw, hans Reviewed By: hans Subscribers: hans, llvm-commits Differential Revision: https://reviews.llvm.org/D37786 llvm-svn: 313334
* test-release.sh: Move test-suite setup to beginning of the scriptTom Stellard2017-08-151-8/+13
| | | | | | | | | | | | | | | | | | | Summary: We want to catch failures early before do the full 3 stage build. The goal here is to avoid running through the whole build process and have it fail at the end (and not create the binary packages), just because some prerequisites failed to install. Reviewers: rovka, hans Reviewed By: hans Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D36422 llvm-svn: 310939
* test-release.sh: Fix phase2 and phase3 binary comparisionTom Stellard2017-07-241-1/+1
| | | | | | | | | | | | | | | | | Summary: scudo_utils.cpp.o from compiler-rt has one of the host compiler's builtin include paths stored in the .debug_line section. So we need to do sed 's,Phase1,Phase2,g` on the Phase2 object file so it matches Phase3. Reviewers: hans Reviewed By: hans Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34989 llvm-svn: 308912
* Update trunk version to 6.0.0svnHans Wennborg2017-07-191-2/+2
| | | | llvm-svn: 308442
* [test-release.sh] Enable Polly by defaultPengxuan Zheng2017-06-201-6/+2
| | | | | | | | | | | | Reviewers: grosser, hans, zinob, bollu Reviewed By: grosser, hans Subscribers: tstellar, llvm-commits Differential Revision: https://reviews.llvm.org/D34306 llvm-svn: 305763
* test-release.sh: Run the test-suite using phase3 clangTom Stellard2017-06-151-1/+4
| | | | | | | | | | | | Summary: We were using the system compiler to run the test suite. Reviewers: hansw Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34246 llvm-svn: 305525
* test-release.sh: Remove workaround for test-suite buildTom Stellard2017-06-081-12/+17
| | | | | | | | | | | | | | Summary: We aren't actually building the test suite, so this isn't needed. Reviewers: rengolin, hansw Reviewed By: rengolin Subscribers: rengolin, llvm-commits Differential Revision: https://reviews.llvm.org/D29840 llvm-svn: 305017
* merge-request.sh: Use https url for bugzillaTom Stellard2017-05-231-1/+1
| | | | | | | | With the http url, the script fails with: Connection lost/failed: 411 Client Error: Length Required llvm-svn: 303685
* build_llvm_package.bat: Minor updatesHans Wennborg2017-05-151-4/+4
| | | | llvm-svn: 303080
* [test-release] Status update *before* long gzipRenato Golin2017-05-041-5/+5
| | | | llvm-svn: 302165
* build_llvm_package.bat: Move to VS2017Hans Wennborg2017-04-131-7/+7
| | | | | | It's required for building the clang-format plugin after r300225. llvm-svn: 300273
* stable-merge-request.sh: Add a script for submitting merge requests via bugzillaTom Stellard2017-03-241-0/+198
| | | | | | | | | | | | | | Summary: This script will automatically create a new stable merge request bug in bugzilla for the given svn revision and release number. Reviewers: hans Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D30905 llvm-svn: 298705
* build_llvm_package.bat: Build teh clang-format plugin separatelyHans Wennborg2017-02-081-1/+11
| | | | | | | | | | | In r293373 we switched the build to linking dynamically against the Universal CRT and include the redistributables in the installer. However, clang-format.exe is copied into the vsix and needs to be statically linked. This commit makes us build the plugin in a separate step that uses static linking. llvm-svn: 294513
* Add lld to the test-release.sh scriptDimitry Andric2017-02-041-1/+9
| | | | | | | | | | | | | | | Building lld is enabled by default, but it can be disabled using the -no-lld option. Reviewers: tstellarAMD, rengolin, hans Reviewed By: hans Subscribers: grosser, wdng, emaste, llvm-commits Differential Revision: https://reviews.llvm.org/D29539 llvm-svn: 294102
* This addresses LLDB bug 31699, which was caused by LLVM using static linking ↵Vadim Chugunov2017-01-281-1/+1
| | | | | | | | | | | | on Windows. In order to make sure that LLVM continues to work on machines that do not have the Universal CRT yet, we'll need to ship a copy of UCRT in the Windows installation package. Fortunately, CMake 3.6+ already supports app-local deployment of UCRT dlls, we just need to turn this on. Differential Revision: https://reviews.llvm.org/D29146 llvm-svn: 293373
* [test-release.sh] Add Polly to the list of projectsPengxuan Zheng2017-01-181-1/+13
| | | | | | | | | | | | Reviewers: zinob, hans, grosser Reviewed By: hans, grosser Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D28712 llvm-svn: 292323
* Bump trunk version to 5.0.0svnHans Wennborg2017-01-121-2/+2
| | | | llvm-svn: 291815
* build_llvm_package.bat: Add note about what SWIG version to useHans Wennborg2017-01-111-0/+4
| | | | llvm-svn: 291682
* Print correct directory in merge script.Richard Trieu2016-11-111-1/+1
| | | | | | | When providing the project directory to the merge script, print it out in the commit instructions instead of the default project directory. llvm-svn: 286675
* Remove LLVM_CONFIGTIME, left-overs from when reproducable builds whereJoerg Sonnenberger2016-09-291-2/+0
| | | | | | not the default. llvm-svn: 282765
* build_llvm_package.bat: Update to VS2015 and include LLDBHans Wennborg2016-09-151-9/+12
| | | | llvm-svn: 281676
* test-release.sh: Drop autoconf supportHans Wennborg2016-08-091-46/+17
| | | | | | The autoconf build was deleted some time ago. llvm-svn: 278133
* build_llvm_package.bat: try tests three timesHans Wennborg2016-07-271-8/+8
| | | | | | | Sometimes they're flaky on Windows, and starting the whole thing over is painful. llvm-svn: 276913
* build_llvm_package.bat: update version to 4.0.0Hans Wennborg2016-07-181-2/+2
| | | | llvm-svn: 275903
* Revert r273099 "If the revision number starts with r, drop it. It will get ↵Hans Wennborg2016-07-181-1/+1
| | | | | | | | | | | | | added back" This doesn't seem to work with Bash: $ /work/llvm/utils/release/merge.sh --proj llvm --rev r275870 /work/llvm/utils/release/merge.sh: line 34: ${$1#r}: bad substitution I get the same error with and without a leading 'r'. llvm-svn: 275898
* If the revision number starts with r, drop it. It will get added backJoerg Sonnenberger2016-06-181-1/+1
| | | | | | later and we don't want to use it twice. llvm-svn: 273099
* Update usage(), make sure srcdir is really empty.Joerg Sonnenberger2016-06-011-0/+2
| | | | llvm-svn: 271396
* Make it easier to process merges in a normal buildable directory tree byJoerg Sonnenberger2016-05-291-1/+9
| | | | | | allowing the user to specify the base directory of the checkout. llvm-svn: 271192
* Remove LLVM_ENABLE_TIMESTAMPSChris Bieneman2016-05-051-2/+2
| | | | | | | | | | | | | | | | | | | Summary: As per the discussion on LLVM-dev this patch proposes removing LLVM_ENABLE_TIMESTAMPS. The only complicated bit of this patch is the Windows support. On windows we used to log an error if /INCREMENTAL was passed to the linker when timestamps were disabled. With this change since timestamps in code are always disabled we will always compile on windows with /Brepro unless /INCREMENTAL is specified, and we will log a warning when /INCREMENTAL is specified to notify the user that the build will be non-deterministic. See: http://lists.llvm.org/pipermail/llvm-dev/2016-May/098990.html Reviewers: bogner, silvas, rnk Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D19892 llvm-svn: 268670
* Win packaging script: include the OpenMP run-timeHans Wennborg2016-05-031-1/+3
| | | | llvm-svn: 268398
* [test-release.sh] Add lldb to list of projects (disabled by default)Daniel Sanders2016-02-291-0/+15
| | | | | | | | | | Reviewers: hans Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D17070 llvm-svn: 262211
* Bring back the test-suite export in test-release without bringing back the ↵Daniel Sanders2016-01-281-7/+19
| | | | | | | | | | | | | | | | | build failures. Summary: r257791 disabled the test-suite export since the addition of CMakeLists.txt was causing build failures. This patch exports the test-suite again but does so outside the source tree so that it isn't included in the Phase[123] builds. Reviewers: hans Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D16679 llvm-svn: 259094
* test-release.sh: Ignore LC_CTYPE in sed invocation on DarwinHans Wennborg2016-01-271-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Here, sed is used to prepare object files for comparison via cmp. On my Darwin 15.4.0 machine, LC_CTYPE is set to UTF-8 (by default, I believe). Under these circumstances, anything sed is made to read will be treated as UTF-8, prompting it to signal an error if it is not, like so: % sed s/a/b/ <(head -n1 /dev/random) >/dev/null; echo $? sed: RE error: illegal byte sequence 1 % To make sed work as expected, I need to set LC_CTYPE to C: % env LC_CTYPE=C sed s/a/b/ <(head -n1 /dev/random) >/dev/null; echo $? 0 % Without this change, sed will exit with an error for every single file that it compares between phase 2 and phase 3, thereby making it look as if the differences were far larger than they are. Patch by Elias Pipping! Differential Revision: http://reviews.llvm.org/D16548 llvm-svn: 258891
* In test-release.sh, only run `uname -s` once. NFC.Dimitry Andric2016-01-211-3/+4
| | | | llvm-svn: 258439
* Let test-release.sh checkout subprojects directly into the target tree,Dimitry Andric2016-01-211-43/+23
| | | | | | | | | | | | | | | | | | | | | instead of using symlinks Summary: In the past I have run into several problems with the way `test-release.sh` creates all the subproject directories as siblings, and then uses symlinks to stitch them all together. In some scenarios this leads to clang not being able to find header files, etc. This patch changes the script so it directly exports into the correct target locations for each subproject. Reviewers: hans Subscribers: emaste, llvm-commits Differential Revision: http://reviews.llvm.org/D16420 llvm-svn: 258436
* test-release.sh: Use CMake also for DarwinHans Wennborg2016-01-191-5/+0
| | | | | | This didn't work for 3.7, but hopefully it should work now. llvm-svn: 258168
* Similar to rL257663, remove `function` keywords from export.sh andDimitry Andric2016-01-162-5/+5
| | | | | | tag.sh, since they are marked to be run with /bin/sh. llvm-svn: 257994
* test-release.sh: Fix clang-tools-extra symlink for CMake buildHans Wennborg2016-01-151-3/+13
| | | | | | The CMake and Autoconf builds want the symlink set up differently. llvm-svn: 257905
* Exclude test-suite from CMake builds in test-release.shHans Wennborg2016-01-141-0/+6
| | | | | | | It's broken. In 3.7 there wasn't a CMake build for test-suite at all, so we're not losing something we had before. llvm-svn: 257791
* Remove bashism from merge.sh: POSIX sh does not have the `function`Dimitry Andric2016-01-131-1/+1
| | | | | | | reserved word, and it is even superfluous in bash, for this particular instance. llvm-svn: 257663
* Update version to 3.9.Hans Wennborg2016-01-131-2/+2
| | | | llvm-svn: 257627
* Check in the script for building Win snapshotsHans Wennborg2015-12-111-0/+93
| | | | llvm-svn: 255318
* [OPENMP] Make -fopenmp to turn on OpenMP support by default.Alexey Bataev2015-12-101-48/+7
| | | | | | | Patch turns on OpenMP support in clang by default after fixing OpenMP buildbots. Differential Revision: http://reviews.llvm.org/D13802 llvm-svn: 255222
* Revert r245355 "Release script: correctly symlink clang-tools-extra into the ↵Hans Wennborg2015-08-241-2/+2
| | | | | | | | build (PR22765)" This worked with the CMake build but broke the Autoconf one. llvm-svn: 245902
* Release script: correctly symlink clang-tools-extra into the build (PR22765)Hans Wennborg2015-08-181-2/+2
| | | | llvm-svn: 245355
* test-release.sh: Fix naming of OpenMP runtime tarballHans Wennborg2015-08-051-1/+6
| | | | llvm-svn: 244058
* Add a -revert option to utils/release/merge.shHans Wennborg2015-08-041-4/+19
| | | | llvm-svn: 243929
* [Release Script] Check for correct symlink nameRenato Golin2015-08-031-1/+1
| | | | | | | | | While checking for the existence of the clang-tools-extra directory, the script was not checking for its destination name, "extra", and the script was failing when re-running without checking out new sources. llvm-svn: 243898
* [test-release.sh] Add -no-libunwind to disable it on targets that don't ↵Daniel Sanders2015-07-301-1/+9
| | | | | | | | | | | | | | | | support it. Summary: Mips doesn't implement unw_getcontext() or libunwind::Registers_*::jumpto() yet so we must disable libunwind for this release. Reviewers: hans Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D11563 llvm-svn: 243633
OpenPOWER on IntegriCloud