-
-
Notifications
You must be signed in to change notification settings - Fork 419
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
ponyc --library failed #1881
Comments
You have a compilation error. @foo should be Foo However you should also get an error message not the assertion failure. |
@SeanTAllen Hi, I was following the tutorial in this article: https://bluishcoder.co.nz/2015/12/16/c-linkable-libraries-with-pony.html Without |
Note what is in the article is actor@ Foo which isn't what is in your code |
@SeanTAllen Oh, edited but that doesn't matter fow now. The result is still the same. :-P Is it only a problem on my side? |
Home now. Just tried, I have the issue as well. |
Header generated before death: #ifndef pony_issue-1881_h
#define pony_issue-1881_h
/* This is an auto-generated header file. Do not edit. */
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _MSC_VER
typedef struct __int128_t { uint64_t low; int64_t high; } __int128_t;
typedef struct __uint128_t { uint64_t low; uint64_t high; } __uint128_t;
#endif |
This is my bug, we shouldn't be emitting internal methods. |
@iology the fix for this will in 0.14.0 that is going to be released this weekend |
Thanks. Successfully linked to the generated object file. |
Fix for this has been released as part of 0.14.0 |
The text was updated successfully, but these errors were encountered: