Skip to content

Commit

Permalink
Neu: clang++: Wrapper for C++11 Support in clang
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelduss committed Nov 7, 2013
1 parent d16f48b commit 68826bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ My personal scripts.

* `bildschirm`: A xrandr wrapper for screen settings
* `baseconv`: Convert numbers from one base to another
* `clang++`: Wrapper for C++11 Support in `clang++`
* `ddns-updater`: Update Dynamic DNS Entries
* `dyndnslogin`: Automate DynDNS login to prevent account expiration
* `fehshow`: Öffnet alle Bilder im Verzeichnis statt nur ein Bild in feh
Expand Down
8 changes: 8 additions & 0 deletions clang++
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

LOGFILE="/tmp/clang"
PARAMS="-std=c++11"
#PARAMS="-std=c++11 -stdlib=libc++ -lc++abi"

echo "`date \"+%Y-%m-%d %H:%M:%S\"` $0 $PARAMS $@" >> $LOGFILE
/usr/sbin/clang $PARAMS $@

0 comments on commit 68826bb

Please sign in to comment.