generate_projects.sh script behaves differently on different devices #112
-
Hi, I'm trying to automate a pipeline with docker and build PhysX within it and I noticed when running ./generate_projects.sh that to build for aarch64 or clang (the two options it presents) are in different order on different devices. For example (0) is clang on the pipeline that I'm trying to automate but (0) is aarch64 on my laptop. This makes it difficult to automate the pipeline by simply being able to pass in a (0) or (1) into the script based on your hardware because (0) and (1) are different in different environments. vs |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Maybe @ayoub-belarbi knows a good workaround for scripting here. |
Beta Was this translation helpful? Give feedback.
-
Hello @farbod1277, There is a simple solution. You can pass the compiler name as an argument to that script, e.g.: Thanks |
Beta Was this translation helpful? Give feedback.
Hello @farbod1277,
There is a simple solution. You can pass the compiler name as an argument to that script, e.g.:
.
/generate_projects.sh linux
or./generate_projects.sh linux-aarch64
.Basically the preset name you can add as an argument.
Thanks