We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218f7eb commit bfeee18Copy full SHA for bfeee18
build.sh
@@ -8,11 +8,10 @@ set -e
8
base_name=GoReSym-3.0.1
9
GOOS=linux
10
11
-
12
if [ $(uname -m) == 'aarch64' ]; then
13
GOARCH="arm64"
14
else
15
- GOARCH="amd64"
+ GOARCH="amd64"
16
fi
17
18
cd lib-src/
@@ -22,7 +21,6 @@ tar -xf $base_name.tar.gz
22
21
23
cd $base_name/
24
25
26
echo Build GoReSym
27
go build && mv GoReSym GoReSym_lin
28
strip GoReSym_lin
setup.py
@@ -23,7 +23,7 @@ def run(self):
class DevelopNative(setuptools_develop):
def run(self):
- self.execute(run_rpm_build, (), msg="Building develop native code")
+ self.execute(run_native_build, (), msg="Building develop native code")
setuptools_develop.run(self)
29
0 commit comments