-
Notifications
You must be signed in to change notification settings - Fork 36
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
Add traefik with required libraries and build from source #54
base: master
Are you sure you want to change the base?
Add traefik with required libraries and build from source #54
Conversation
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.
@@ -0,0 +1,2 @@ | |||
|
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.
Remove the extra empty line
*Not installed by the build script.* | ||
|
||
* golang: 1.20.6 |
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.
Add the installation instructions here (don't go into details, you can just point to a link where people can find instructions).
This build script downloads the latest version of traefik form the | ||
corresponding github releases page. To modify the installation version change | ||
the `version` variable in the `build.sh`. |
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.
This build script downloads the latest version of traefik form the | |
corresponding github releases page. To modify the installation version change | |
the `version` variable in the `build.sh`. | |
This build script downloads the latest version of traefik form the corresponding github releases page. | |
To modify the installation version change the `version` variable in the `build.sh`. |
Use one line per sentence and one sentence per line.
make clean-webui -C ${appname} | ||
echo "" | ||
|
||
pushd ${appname} |
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.
pushd ${appname} | |
pushd ${appname} &> /dev/null || exit 1 |
go build -ldflags "-linkmode 'external' -extldflags '-pie'" -buildmode=pie \ | ||
./cmd/traefik | ||
|
||
popd +0 |
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.
popd +0 | |
popd +0 &> /dev/null || exit 1 |
As stated in instruction:
The problem is that it seem
Traefik
tries to create a new thread. Unikraft then kills that thread and crashes and there is not much left for us to do here. Pic related to pthread_create bug: