Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
01f16028
Commit
01f16028
authored
Dec 02, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LDFLAGS also needs to be absolute.
parent
0f62a698
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
.github/workflows/ci.yml
.github/workflows/ci.yml
+3
-2
No files found.
.github/workflows/ci.yml
View file @
01f16028
...
...
@@ -54,7 +54,7 @@ env:
GEVENTSETUP_EV_VERIFY
:
1
# Disable some warnings produced by libev especially and also some Cython generated code.
# These are shared between GCC and clang so it must be a minimal set.
# TODO: Figure out how to set env vars per platform without reso
l
ting to inline scripting.
# TODO: Figure out how to set env vars per platform without reso
r
ting to inline scripting.
# Note that changing the value of these variables invalidates configure caches
CFLAGS
:
-Ofast -pipe -Wno-strict-aliasing -Wno-comment
CPPFLAGS
:
-DEV_VERIFY=1
...
...
@@ -364,9 +364,10 @@ jobs:
env
:
GEVENTSETUP_EMBED
:
0
GEVENTSETUP_EV_VERIFY
:
1
LDFLAGS
:
"
-L~/.libs/lib"
run
:
|
# These need to be absolute paths
export BUILD_LIBS=`realpath $BUILD_LIBS`
export LDFLAGS=-L$BUILD_LIBS/lib
mkdir -p ~/.libs/lib
ls -l deps/libev/
autoconf --version
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment