1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-13 16:02:06 +00:00
serenity/Userland/Libraries/LibDebug/Dwarf
asynts 1a3a0836c0 Everywhere: Use CMake to generate AK/Debug.h.
This was done with the help of several scripts, I dump them here to
easily find them later:

    awk '/#ifdef/ { print "#cmakedefine01 "$2 }' AK/Debug.h.in

    for debug_macro in $(awk '/#ifdef/ { print $2 }' AK/Debug.h.in)
    do
        find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/#ifdef '$debug_macro'/#if '$debug_macro'/' {} \;
    done

    # Remember to remove WRAPPER_GERNERATOR_DEBUG from the list.
    awk '/#cmake/ { print "set("$2" ON)" }' AK/Debug.h.in
2021-01-25 09:47:36 +01:00
..
AbbreviationsMap.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
AbbreviationsMap.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
CompilationUnit.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
CompilationUnit.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DIE.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DIE.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DwarfInfo.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DwarfInfo.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DwarfTypes.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Expression.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Expression.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
LineProgram.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
LineProgram.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00