aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-02-28 12:05:35 +0100
committerEike Ziller <eike.ziller@qt.io>2019-02-28 11:11:27 +0000
commit04aac85e2623395d4c6ed4d88a5dc1b8a1103649 (patch)
treea964937b3f8583b4959997b5c3fe310a0ac21941
parentc581931b7001a10c185b029f3e947c3812b5c5d6 (diff)
Update 4.8.2 changes filev4.8.2
Change-Id: I38369e2404150da9a9edb198cdecaab50d1f137f Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--dist/changes-4.8.2.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/dist/changes-4.8.2.md b/dist/changes-4.8.2.md
index 22a930d9a40..ef7316c7c73 100644
--- a/dist/changes-4.8.2.md
+++ b/dist/changes-4.8.2.md
@@ -7,6 +7,10 @@ you can check out from the public Git repository. For example:
git clone git://code.qt.io/qt-creator/qt-creator.git
git log --cherry-pick --pretty=oneline origin/v4.8.1..v4.8.2
+General
+
+* Fixed UI for choosing executable for external tools (QTCREATORBUG-21937)
+
Editing
* Fixed highlighting of search results of regular expression search
@@ -20,6 +24,10 @@ Autotools Projects
C++ Support
* Fixed crash when expanding macros (QTCREATORBUG-21642)
+* Fixed crash in preprocessor (QTCREATORBUG-21981)
+* Fixed infinite loop when resolving pointer types (QTCREATORBUG-22010)
+* Fixed cursor position after completion of functions without arguments
+ (QTCREATORBUG-21841)
QML Support
@@ -38,6 +46,7 @@ Debugging
Qt Quick Designer
* Added support for more JavaScript functions in `.ui.qml` files
+* Fixed crash with gradients and Qt Quick 5.12 (QDS-472)
Test Integration
@@ -55,16 +64,20 @@ macOS
Android
* Fixed upload of GDB server on some devices (QTCREATORBUG-21317)
+* Fixed crash on exiting debugger (QTCREATORBUG-21684)
Credits for these changes go to:
+Andre Hartmann
André Pönitz
Christian Kandeler
Christian Stenger
David Schulz
Eike Ziller
Ivan Donchevskii
+Kirill Burtsev
Leena Miettinen
Liang Qi
+Nikolai Kosjar
Oliver Wolff
Raoul Hecky
Robert Löhning
move-the-isallocapromotable-condition'>upstream/users/MaskRay/spr/main.asan-isinterestingalloca-remove-the-isallocapromotable-condition Vendor branches of https://github.com/llvm/llvm-project.git
summaryrefslogtreecommitdiffstats
path: root/llvm/Makefile.rules
Commit message (Collapse)AuthorAgeFilesLines
* Fix the rules for handling the case when BISON is not available. We wantReid Spencer2007-05-171-4/+11
| | | | | | | this to succeed by copying the .h.cvs file to .h and the .cpp.cvs file to .cpp. llvm-svn: 37187
* Disable RTTI handling until we're ready.Reid Spencer2007-05-021-1/+1
| | | | llvm-svn: 36651
* Add a rule to get the footprint of binaries and libraries.Reid Spencer2007-05-021-0/+14
| | | | llvm-svn: 36650
* Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov2007-04-161-1/+3
| | | | | | target for tabs checking. llvm-svn: 36146
* add a target to print out 80-column violations.Chris Lattner2007-04-141-0/+3
| | | | llvm-svn: 36032
* Speed up installation a bit by ignoring .svn directories.Reid Spencer2007-04-091-1/+2
| | | | | | Patch by Scott Michel. llvm-svn: 35826
* For PR789:Reid Spencer2007-03-291-0/+2
| | | | | | | | Make the sys::Path::getFileStatus function more efficient by having it return a pointer to the FileStatus structure rather than copy it. Adjust uses of the function accordingly. Also, fix some memory issues in sys::Path. llvm-svn: 35476
* correct dependencyChris Lattner2007-02-281-0/+1
| | | | llvm-svn: 34723
* target for generating CC infoChris Lattner2007-02-271-0/+5
| | | | llvm-svn: 34683
* Fix some bugs in module building that broke llvm-stacker project.Reid Spencer2007-02-091-3/+3
| | | | llvm-svn: 34099
* Don't use gccld or gccasReid Spencer2007-02-091-13/+11
| | | | llvm-svn: 34093
* Make the cleaning of BUILT_SOURCES be a "clean-all" target item, not aReid Spencer2007-02-071-1/+1
| | | | | | | | | "clean" target item. This gets around having the built sources disappear when only one build mode wants to be cleaned. With the "clean-all" target, all build modes are cleaned so it also makes sense to clean out the built sources at that point. llvm-svn: 34003
* Remove a spurious ;Reid Spencer2007-02-071-1/+1
| | | | llvm-svn: 33976
* Implement the NO_INSTALL feature. Setting this variable to any value inReid Spencer2007-02-061-6/+56
| | | | | | | | a directory's Makefile will prevent the build products from that directory from being installed. This is useful for tools and libraries that are only useful as part of the build process. llvm-svn: 33968
* When using LINK_COMPONENTS, append the components to the end of theReid Spencer2007-02-041-2/+2
| | | | | | | | libraries linked with. This permits a project to still use USEDLIBS to specify its own libraries in conjunction with LINK_COMPONENTS. llvm-stacker needs this after libLLVMTransforms.a went away. llvm-svn: 33886
* Work around broken binutils on alphaAndrew Lenharth2007-01-261-0/+4
| | | | llvm-svn: 33535
* Don't remove the find_rule label from FLEX output. It is needed by someReid Spencer2007-01-111-1/+0
| | | | | | | versions of FLEX even through we don't use REJECT. Thanks to Jeff Cohen for tracking this down. llvm-svn: 33085
* Remove the find_rule label from the output of flex. This will break anyReid Spencer2007-01-031-0/+1
| | | | | | | use of the REJECT macro but we don't use it. This just hushes up a warning in the presence of -Wno-unused. llvm-svn: 32843
* When compiling a C or C++ file to assembly, make the assembly outputReid Spencer2006-12-301-6/+6
| | | | | | | | depend on the compiler. This works around problems in the Stacker runtime when the CFE changes in such a way that the assembly file needs to be updated. llvm-svn: 32773
* Allow an --enable-pic option to turn on -fPIC compiler option when building.Reid Spencer2006-12-161-2/+11
| | | | | | The default is disabled until we know this doesn't break anyone. llvm-svn: 32635