-
Notifications
You must be signed in to change notification settings - Fork 62
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
docs: add sudt script tutorial #467
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
resolver = "2" | ||
|
||
members = [ | ||
# Please don't remove the following line, we use it to automatically |
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.
Please don't remove the following line. We use it to automatically
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.
@linnnsss I am going to ignore all the comment text suggestion in the examples/sudt-script
project since it is generated automatically by ckb-script-templates, maybe it is better to submit these suggestion directly to ckb-script-templates project.
|
||
members = [ | ||
# Please don't remove the following line, we use it to automatically | ||
# detect insertion point for newly generated crates. |
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.
detect the insertion point for newly generated crates.
@@ -0,0 +1,130 @@ | |||
# We cannot use $(shell pwd), which will return unix path format on Windows, |
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.
Avoid using $(shell pwd) as it returns Unix paths on Windows,
cur_dir = $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) | ||
|
||
TOP := $(cur_dir) | ||
# RUSTFLAGS that are likely to be tweaked by developers. For example, |
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.
RUSTFLAGS likely to be modified by developers. For example,
|
||
TOP := $(cur_dir) | ||
# RUSTFLAGS that are likely to be tweaked by developers. For example, | ||
# while we enable debug logs by default here, some might want to strip them |
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.
debug logs are enabled by default here, but developers may strip them
No description provided.