-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed more errors/warnings uncovered by clang-16 for ussue #124.
- Loading branch information
1 parent
e8b928f
commit 5dcd2cc
Showing
9 changed files
with
85 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
#------------------------------------------------------------------------------ | ||
## | ||
# \file configure-clang | ||
# \library bin | ||
# \author Chris Ahlstrom | ||
# \date 2023-12-06 to 2023-12-06 | ||
# \version $Revision$ | ||
# \license GNU GPLv2 or above | ||
# | ||
# This script tries to set up got building Seq66 with clang. | ||
# | ||
#------------------------------------------------------------------------------ | ||
|
||
export CC=clang | ||
export CXX=clang++ | ||
export RANLIB=llvm-ranlib | ||
export CFLAGS=" -flto -std=gnu99 " | ||
export LDFLAGS=" -flto -fuse-ld=gold " | ||
# export QMAKESPEC="linux-clang" | ||
export QMAKESPEC="linux-llvm" | ||
./configure | ||
|
||
#****************************************************************************** | ||
# qbuild (Seq66) | ||
#------------------------------------------------------------------------------ | ||
# vim: ts=3 sw=3 wm=4 et ft=sh | ||
#------------------------------------------------------------------------------ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters