-
Notifications
You must be signed in to change notification settings - Fork 307
bump nim-libp2p to v1.15.1 #7864
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: unstable
Are you sure you want to change the base?
Conversation
b6641a8 to
674980e
Compare
config.nims
Outdated
| it.len > 0) | ||
| # https://github.com/vacp2p/nim-lsquic/blob/main/lsquic.nimble | ||
| for asmPath in asmFiles: | ||
| exec "nasm -f win64 " & quoteShell(basepath / asmPath) & " -o " & |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in lsquic, I think it should be possible to do the following:
- call nasm with
staticExec, preferably gated to be called only when the object file is missing - use
{.passl: "asmoutput.o".}for linking it
the aim would be to avoid the need for these customizations of the config.nims file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we do something similar with rcc and resource compilations in qt: https://github.com/arnetheduck/ngui/blob/master/src/ngui.nim#L13
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Testing this approach in #7898
No description provided.