mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 20:43:09 -04:00
17 lines
434 B
Diff
17 lines
434 B
Diff
--- a/SConstruct
|
|
+++ b/SConstruct
|
|
@@ -304,2 +304,3 @@
|
|
opts.Add("CC", "C compiler binary")
|
|
+opts.Add("AR", "Archiver")
|
|
opts.Add("LINK", "Linker binary")
|
|
@@ -745,3 +746,3 @@
|
|
# `-msse2` is implied when compiling for x86_64.
|
|
- env.Append(CCFLAGS=["-msse4.2", "-mpopcnt"])
|
|
+ pass
|
|
elif env["arch"] == "x86_32":
|
|
@@ -817,3 +818,3 @@
|
|
else:
|
|
- env.AppendUnique(LINKFLAGS=["-s"])
|
|
+ pass
|
|
|