Skip to content

Update build docs and s2e-config-template.lua files in examples #12

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

Merged
merged 2 commits into from
Jul 22, 2022

Conversation

LJP-TW
Copy link
Collaborator

@LJP-TW LJP-TW commented Jul 22, 2022

After #11 , I update the build docs to avoid people going the wrong way like me.

The paths in the s2e-config-template.lua files in examples are hardcoded, this PR also fix this problem.

For example:

add_plugin("HostFiles")
pluginsConfig.HostFiles = {
    baseDirs = {
        "/home/aesophor/s2e/projects/sym_stdin"
    },
    allowWrite = true,
}

The code above is updated to:

add_plugin("HostFiles")
pluginsConfig.HostFiles = {
    baseDirs = {
        os.getenv("HOME") .. "/s2e/projects/sym_stdin"
    },
    allowWrite = true,
}

@aesophor aesophor merged commit a4e2d2e into SQLab:master Jul 22, 2022
@aesophor
Copy link
Member

OMG Thanks so much!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants