mirror of
https://gitlab.archlinux.org/archlinux/devtools.git
synced 2025-09-13 18:06:19 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e64c1d33eb | ||
![]() |
19f3a868f4 | ||
![]() |
f1ee5208ed |
@@ -36,11 +36,11 @@ if [ -d "repos/${1}" ]; then
|
||||
fi
|
||||
if [ ! -d repos ]; then
|
||||
mkdir repos
|
||||
svn add repos
|
||||
svn add -q repos
|
||||
fi
|
||||
if [ ! -d "repos/${1}" ]; then
|
||||
mkdir "repos/${1}"
|
||||
svn add "repos/${1}"
|
||||
svn add -q "repos/${1}"
|
||||
fi
|
||||
known_files=$(svn ls "trunk")
|
||||
for file in $known_files; do
|
||||
|
@@ -29,9 +29,9 @@ CHOST="i686-pc-linux-gnu"
|
||||
#-- Exclusive: will only run on i686
|
||||
# -march (or -mcpu) builds exclusively for an architecture
|
||||
# -mtune optimizes for an architecture, but builds for whole processor family
|
||||
CFLAGS="-march=i686 -mtune=generic -O2 -pipe"
|
||||
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe"
|
||||
LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
||||
CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
|
||||
#-- Make Flags: change this for DistCC/SMP systems
|
||||
#MAKEFLAGS="-j2"
|
||||
|
||||
|
@@ -29,9 +29,9 @@ CHOST="x86_64-unknown-linux-gnu"
|
||||
#-- Exclusive: will only run on x86_64
|
||||
# -march (or -mcpu) builds exclusively for an architecture
|
||||
# -mtune optimizes for an architecture, but builds for whole processor family
|
||||
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
|
||||
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
|
||||
LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
|
||||
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
|
||||
#-- Make Flags: change this for DistCC/SMP systems
|
||||
#MAKEFLAGS="-j2"
|
||||
|
||||
|
Reference in New Issue
Block a user