-
Notifications
You must be signed in to change notification settings - Fork 31
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
Fix some issues when building EOSIO contracts #115
Conversation
tools/cc/cdt-cpp.cpp.in
Outdated
if (!opts.link) { | ||
output = opts.output_fn.empty() ? "a.out" : opts.output_fn; | ||
} else { | ||
SmallString<64> res; | ||
llvm::sys::fs::createTemporaryFile("eosio", ".o", res); |
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.
"antelope"
?
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.
I would like to see that as something other than 'eosio' too. But, it's not the end of the world as it is a consumed temporary.
tools/cc/cdt-cpp.cpp.in
Outdated
if (!opts.link) { | ||
output = opts.output_fn.empty() ? "a.out" : opts.output_fn; | ||
} else { | ||
SmallString<64> res; | ||
llvm::sys::fs::createTemporaryFile("eosio", ".o", res); |
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.
I would like to see that as something other than 'eosio' too. But, it's not the end of the world as it is a consumed temporary.
This is a backport of EOSIO/eosio.cdt#968 / EOSIO/eosio.cdt#1070 that resolves EOSIO/eosio.cdt#742.