summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++/make_stdcc.sh
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 17:30:19 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 17:30:19 +0100
commit18278d4eb63e298d8f48d111364e1cfaff56a32b (patch)
treeb51f25aef8f435369c8dbb476c27c3c1f6fb9758 /dev/LibC++/make_stdcc.sh
parente2bb97abab728e8af5ee4a55cbf838e77c61dfb1 (diff)
feat: new New.h in LibC++, Linker version prompt improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibC++/make_stdcc.sh')
-rwxr-xr-xdev/LibC++/make_stdcc.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev/LibC++/make_stdcc.sh b/dev/LibC++/make_stdcc.sh
deleted file mode 100755
index 7e23e2c..0000000
--- a/dev/LibC++/make_stdcc.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