-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat/ffi-rust #16
base: master
Are you sure you want to change the base?
feat/ffi-rust #16
Conversation
@@ -32,11 +32,15 @@ MAKE = make -r | |||
DEL = rm -f | |||
|
|||
CC = i386-elf-gcc | |||
# FIXME: いい感じにリンクできない |
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.
$(OUT_DIR)/kernel/rust/rustlib.aをいい感じに混ぜたい
$(MAKE) $(OUT_DIR)/kernel/rust/rustlib.a | ||
|
||
$(OUT_DIR)/kernel/rust/rustlib.a: target/dos/release/librust.rlib | ||
i386-elf-ar rcs $@ target/dos/release/librust.rlib |
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.
1年越しですが、koba789さんの配信アーカイブ見て来ました
エラーメッセージにある通り、ranlibを実行しないといけないのでは?
この行の後に ranlib $@
( i386-elf-ranlib $@
かも?)をすると良いかと思います
No description provided.