diff options
| author | Coelacanthus <[email protected]> | 2021-10-24 21:08:00 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-24 21:08:00 +0800 |
| commit | 7fb839e3cc09db2d56d5744b1bd1fb2a09d83fd0 (patch) | |
| tree | 4d54cce135947a32010f5f8745c818835188b716 /makepkg.d/makepkg.arm.conf | |
| parent | b8e8fea7a54bc7713cd230b5179d50fb505918da (diff) | |
feat: support multiarch (#3)
Diffstat (limited to 'makepkg.d/makepkg.arm.conf')
| -rw-r--r-- | makepkg.d/makepkg.arm.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/makepkg.d/makepkg.arm.conf b/makepkg.d/makepkg.arm.conf new file mode 100644 index 0000000..fc93003 --- /dev/null +++ b/makepkg.d/makepkg.arm.conf @@ -0,0 +1,21 @@ +######################################################################### +# ARCHITECTURE, COMPILE FLAGS +######################################################################### +# +CARCH="arm" +CHOST="armv5tel-unknown-linux-gnueabi" + +#-- Compiler and Linker Flags +#CPPFLAGS="" +CFLAGS="-march=armv5te -O2 -pipe -fstack-protector-strong -fno-plt -fexceptions \ + -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \ + -fstack-clash-protection" +CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" +LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" +#RUSTFLAGS="-C opt-level=2" +#-- Make Flags: change this for DistCC/SMP systems +MAKEFLAGS="-j$(nproc)" +#-- Debugging flags +DEBUG_CFLAGS="-g -fvar-tracking-assignments" +DEBUG_CXXFLAGS="-g -fvar-tracking-assignments" +#DEBUG_RUSTFLAGS="-C debuginfo=2" |
