summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++/make_cxx_headers.sh
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-21 08:27:14 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-21 08:27:14 +0100
commitd978aea4025338d2cabd61c050d879b6db3ec199 (patch)
treeef323bd371923ff3e9a4ea14e35ae67f75bd7135 /dev/LibC++/make_cxx_headers.sh
parent31bd674f19702dd50ac3384fc880c4ae5ca235c4 (diff)
fix: LibC++: fix syntax errors in __abi+unreachable.cc
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibC++/make_cxx_headers.sh')
-rwxr-xr-xdev/LibC++/make_cxx_headers.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev/LibC++/make_cxx_headers.sh b/dev/LibC++/make_cxx_headers.sh
deleted file mode 100755
index 7e23e2c..0000000
--- a/dev/LibC++/make_cxx_headers.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /bin/sh
-
-outputDir=stdcxx/
-
-mkdir -p $outputDir
-
-for f in *.h; do
-
-#This line splits the file name on the delimiter "."
-baseName=`echo $f | cut -d "." -f 1`
-cp $f $outputDir$baseName
-
-done