Author: hbelusca
Date: Fri Jan 23 22:19:33 2015
New Revision: 66081
URL: http://svn.reactos.org/svn/reactos?rev=66081&view=rev
Log:
[HYBRIDCD]: It appears we need to manually create the default_user/desktop folder to not fail (as we do for the real livecd).
Modified:
trunk/reactos/boot/CMakeLists.txt
Modified: trunk/reactos/boot/CMakeLists.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/CMakeLists.txt?rev=66…
==============================================================================
--- trunk/reactos/boot/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/boot/CMakeLists.txt [iso-8859-1] Fri Jan 23 22:19:33 2015
@@ -26,8 +26,8 @@
VERBATIM)
##hybridcd
-#clear it out
-file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst "")
+#clear it out and create the empty Desktop folder
+file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst "livecd/Profiles/Default User/Desktop\n")
add_custom_target(hybridcd
COMMAND native-cdmake -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/freeldr/bootsect/isoboot.bin @${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst REACTOS ${REACTOS_BINARY_DIR}/hybridcd.iso
Author: akhaldi
Date: Thu Jan 22 21:13:57 2015
New Revision: 66076
URL: http://svn.reactos.org/svn/reactos?rev=66076&view=rev
Log:
[DBGHELP] Restrict the Clang workaround in r64203. Fixes CORE-9084. Many thanks to David Quintana and The Arty for their help. Dedicated to Jim ;)
Modified:
trunk/reactos/dll/win32/dbghelp/dwarf.c
Modified: trunk/reactos/dll/win32/dbghelp/dwarf.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/dbghelp/dwarf.c?…
==============================================================================
--- trunk/reactos/dll/win32/dbghelp/dwarf.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/dbghelp/dwarf.c [iso-8859-1] Thu Jan 22 21:13:57 2015
@@ -2381,7 +2381,7 @@
}
if (dwarf2_find_attribute(&ctx, di, DW_AT_stmt_list, &stmt_list))
{
-#ifdef __REACTOS__
+#if defined(__REACTOS__) && defined(__clang__)
unsigned long stmt_list_val = stmt_list.u.uvalue;
if (stmt_list_val > module->module.BaseOfImage)
{