mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +00:00
AK: Remove unused ifdef for BUILDING_SERENITY_TOOLCHAIN
The only use of this define was removed in commit
5f724b6ca1
, over a year ago.
The define was there to prevent the LibC build we built before libstdc++
from complaining about missing libgcc symbols. However, as noted in that
commit, we never actually needed to build LibC at all.
This commit is contained in:
parent
b946a1ce48
commit
210b0b883b
1 changed files with 1 additions and 8 deletions
|
@ -8,25 +8,18 @@
|
||||||
|
|
||||||
#include <AK/String.h>
|
#include <AK/String.h>
|
||||||
#include <AK/StringView.h>
|
#include <AK/StringView.h>
|
||||||
|
#include <cxxabi.h>
|
||||||
#ifndef BUILDING_SERENITY_TOOLCHAIN
|
|
||||||
# include <cxxabi.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace AK {
|
namespace AK {
|
||||||
|
|
||||||
inline String demangle(const StringView& name)
|
inline String demangle(const StringView& name)
|
||||||
{
|
{
|
||||||
#ifdef BUILDING_SERENITY_TOOLCHAIN
|
|
||||||
return name;
|
|
||||||
#else
|
|
||||||
int status = 0;
|
int status = 0;
|
||||||
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);
|
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);
|
||||||
auto string = String(status == 0 ? demangled_name : name);
|
auto string = String(status == 0 ? demangled_name : name);
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
kfree(demangled_name);
|
kfree(demangled_name);
|
||||||
return string;
|
return string;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue