From d978aea4025338d2cabd61c050d879b6db3ec199 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 21 Jul 2025 08:27:14 +0100 Subject: fix: LibC++: fix syntax errors in __abi+unreachable.cc Signed-off-by: Amlal El Mahrouss --- dev/LibC++/make_stdcc.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 dev/LibC++/make_stdcc.sh (limited to 'dev/LibC++/make_stdcc.sh') diff --git a/dev/LibC++/make_stdcc.sh b/dev/LibC++/make_stdcc.sh new file mode 100755 index 0000000..7e23e2c --- /dev/null +++ b/dev/LibC++/make_stdcc.sh @@ -0,0 +1,13 @@ +#! /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 -- cgit v1.2.3