pyInstaller changing dll and pyd output location

后端 未结 2 1534
陌清茗
陌清茗 2021-02-04 07:51

I\'m trying to use pyInstaller to package a wxpython application. I looking for a variation of the \"one-folder\" mode whereby the dlls and pyds are not stored in the top-level

2条回答
  •  暖寄归人
    2021-02-04 08:06

    another way, new loadmyapp.c:

    #include
    main(int argc,char *argv[]) {
        execv("yourapp/app.exe", argv);
    }
    

    gcc -o loadmyapp loadmyapp.c

    ./loadmyapp

提交回复
热议问题