aboutsummaryrefslogtreecommitdiff
path: root/gcc/jit
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2020-05-29 00:16:23 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2020-05-29 00:16:23 +0000
commit53ffb43a79780b6e33e1816831724c0fb3d2fa32 (patch)
tree15bfd740c08c6bf2f290fff7a5da494fd1e9059d /gcc/jit
parent3d8d5ddb539a5254c7ef83414377f4c74c7701d4 (diff)
downloadgcc-53ffb43a79780b6e33e1816831724c0fb3d2fa32.zip
gcc-53ffb43a79780b6e33e1816831724c0fb3d2fa32.tar.gz
gcc-53ffb43a79780b6e33e1816831724c0fb3d2fa32.tar.bz2
Daily bump.
Diffstat (limited to 'gcc/jit')
-rw-r--r--gcc/jit/ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog
index cd93e44..85e30f6 100644
--- a/gcc/jit/ChangeLog
+++ b/gcc/jit/ChangeLog
@@ -1,3 +1,25 @@
+2020-05-28 Nicolas BĂ©rtolo <nicolasbertolo@gmail.com>
+
+ * Make-lang.in: Remove extra slash. Build libgccjit.dll and its
+ import library in Windows.
+ * config-lang.in: Update comment about --enable-host-shared.
+ * jit-w32.h: New file.
+ * jit-w32.c: New file.
+ (print_last_error): New function that prints the error
+ string corresponding to GetLastError().
+ (get_TOKEN_USER_current_user): Helper function used for getting
+ the SID belonging to the current user.
+ (create_directory_for_current_user): Helper function to create
+ a directory with permissions such that only the current user can
+ access it.
+ (win_mkdtemp): Create a temporary directory using Windows APIs.
+ * jit-playback.c: Do not chmod files in Windows. Use LoadLibrary,
+ FreeLibrary and GetProcAddress instead of libdl.
+ * jit-result.h, jit-result.c: Introduce result::handle_t to
+ abstract over the types used for dynamic library handles.
+ * jit-tempdir.c: Do not use mkdtemp() in Windows, use
+ win_mkdtemp().
+
2020-05-27 David Malcolm <dmalcolm@redhat.com>
PR jit/95314