build executable for linuxCannot find libgmp when compiling GCC 4.5.2Cannot make anyfs-tools. My e2fslibs...
Lípínguapua dopo Pêpê
An equality about sin function?
Why is Python 2.7 still the default Python version in Ubuntu?
How would you translate this? バタコチーズライス
Will using a resistor in series with a LED to control its voltage increase the total energy expenditure?
Does an object storing more internal energy emit more thermal radiation?
How can I see if the data in a SQL Server table is page-compressed?
Running code generated in realtime in JavaScript with eval()
How far did Gandalf and the Balrog drop from the bridge in Moria?
Why is the second S silent in "Sens dessus dessous"?
What is the hottest thing in the universe?
Luggage Storage at Szechenyi Baths
Do I have to cite common CS algorithms?
How do some PhD students get 10+ papers? Is that what I need for landing good faculty position?
Why did IBM make the PC BIOS source code public?
Does an Irish VISA WARNING count as "refused entry at the border of any country other than the UK?"
Telephone number in spoken words
Does EU compensation apply to flights where the departure airport closes check-in counters during protests?
Escape Velocity - Won't the orbital path just become larger with higher initial velocity?
How much can I judge a company based on a phone screening?
"Mouth-breathing" as slang for stupidity
A trip to the library
What is the たんだ in と思ってたんだ for the sentence in question?
Does fossil fuels use since 1990 account for half of all the fossil fuels used in history?
build executable for linux
Cannot find libgmp when compiling GCC 4.5.2Cannot make anyfs-tools. My e2fslibs package seems not to be the compatible versionHow to make OpenWrt Makefile compile faster?Running python script from Linux TerminalResolving the location/registration of an executable in the system?Aardvark Control Center wants TLS/SSE2 Librarypkg-config output not working with makefile?How to compile driver in FreeBSDHow to compile and use make command to install this certain program/tool?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
This link http://aaf.sourceforge.net/AAFProjectFAQ.html, gives steps on how to build executable. However make , make install does not yield executable as expected in folder Utilities/aaffmtconv. I am certainly missing something.
Case 1:
g++ -I/AAF/ref-impl/include/ref-api aaffmtconv.cpp -o aaffmtconv
Moving ahead, this command gives errors which i thought will go away when supplied with windows.h path. But this is for windows. If this is a correct method to create executable, How can one handle the windows.h requirement this compilation needs. Otherwise what is the way out from here. ?
Error :
In file included from aaffmtconv.cpp:35:0:
/AAF/ref-impl/include/ref-api/AAF.h:44:28: fatal error: AAFCOMPlatform.h: No such file or directory
Case 2:
g++ -I/AAF/ref-impl/include/com-api aaffmtconv.cpp -o aaffmtconv
Error:
#include "rpc.h" No such file or directory
after adding path to rpc then occurs windows.h error
make executable
add a comment |
This link http://aaf.sourceforge.net/AAFProjectFAQ.html, gives steps on how to build executable. However make , make install does not yield executable as expected in folder Utilities/aaffmtconv. I am certainly missing something.
Case 1:
g++ -I/AAF/ref-impl/include/ref-api aaffmtconv.cpp -o aaffmtconv
Moving ahead, this command gives errors which i thought will go away when supplied with windows.h path. But this is for windows. If this is a correct method to create executable, How can one handle the windows.h requirement this compilation needs. Otherwise what is the way out from here. ?
Error :
In file included from aaffmtconv.cpp:35:0:
/AAF/ref-impl/include/ref-api/AAF.h:44:28: fatal error: AAFCOMPlatform.h: No such file or directory
Case 2:
g++ -I/AAF/ref-impl/include/com-api aaffmtconv.cpp -o aaffmtconv
Error:
#include "rpc.h" No such file or directory
after adding path to rpc then occurs windows.h error
make executable
2
You say the command "gives errors", but you didn't post said errors.
– Joseph Sible
15 hours ago
I just tried to compile it: it fails for me too, on target OMSSStoredObject.o, with error: "error: deleting object of abstract class type ‘OMContainerIterator<OMWeakReferenceSetElement>’ which has non-virtual destructor will cause undefined behavior". This project has no way to configure the build, so you'll have to get over every error manually...
– Vincent Achard
14 hours ago
I get that doing it manually is one way. However the bottle neck is , how to handle the windows.h file requirement.
– nish
13 hours ago
1
Reading the page that you link to, did you follow the instructions to get the Linux variant of the code?
– Kusalananda♦
12 hours ago
$ cvs checkout AAFLinuxSDK. you mean if there is any other SDK ...
– nish
10 hours ago
add a comment |
This link http://aaf.sourceforge.net/AAFProjectFAQ.html, gives steps on how to build executable. However make , make install does not yield executable as expected in folder Utilities/aaffmtconv. I am certainly missing something.
Case 1:
g++ -I/AAF/ref-impl/include/ref-api aaffmtconv.cpp -o aaffmtconv
Moving ahead, this command gives errors which i thought will go away when supplied with windows.h path. But this is for windows. If this is a correct method to create executable, How can one handle the windows.h requirement this compilation needs. Otherwise what is the way out from here. ?
Error :
In file included from aaffmtconv.cpp:35:0:
/AAF/ref-impl/include/ref-api/AAF.h:44:28: fatal error: AAFCOMPlatform.h: No such file or directory
Case 2:
g++ -I/AAF/ref-impl/include/com-api aaffmtconv.cpp -o aaffmtconv
Error:
#include "rpc.h" No such file or directory
after adding path to rpc then occurs windows.h error
make executable
This link http://aaf.sourceforge.net/AAFProjectFAQ.html, gives steps on how to build executable. However make , make install does not yield executable as expected in folder Utilities/aaffmtconv. I am certainly missing something.
Case 1:
g++ -I/AAF/ref-impl/include/ref-api aaffmtconv.cpp -o aaffmtconv
Moving ahead, this command gives errors which i thought will go away when supplied with windows.h path. But this is for windows. If this is a correct method to create executable, How can one handle the windows.h requirement this compilation needs. Otherwise what is the way out from here. ?
Error :
In file included from aaffmtconv.cpp:35:0:
/AAF/ref-impl/include/ref-api/AAF.h:44:28: fatal error: AAFCOMPlatform.h: No such file or directory
Case 2:
g++ -I/AAF/ref-impl/include/com-api aaffmtconv.cpp -o aaffmtconv
Error:
#include "rpc.h" No such file or directory
after adding path to rpc then occurs windows.h error
make executable
make executable
edited 13 hours ago
nish
asked 16 hours ago
nishnish
1791 silver badge9 bronze badges
1791 silver badge9 bronze badges
2
You say the command "gives errors", but you didn't post said errors.
– Joseph Sible
15 hours ago
I just tried to compile it: it fails for me too, on target OMSSStoredObject.o, with error: "error: deleting object of abstract class type ‘OMContainerIterator<OMWeakReferenceSetElement>’ which has non-virtual destructor will cause undefined behavior". This project has no way to configure the build, so you'll have to get over every error manually...
– Vincent Achard
14 hours ago
I get that doing it manually is one way. However the bottle neck is , how to handle the windows.h file requirement.
– nish
13 hours ago
1
Reading the page that you link to, did you follow the instructions to get the Linux variant of the code?
– Kusalananda♦
12 hours ago
$ cvs checkout AAFLinuxSDK. you mean if there is any other SDK ...
– nish
10 hours ago
add a comment |
2
You say the command "gives errors", but you didn't post said errors.
– Joseph Sible
15 hours ago
I just tried to compile it: it fails for me too, on target OMSSStoredObject.o, with error: "error: deleting object of abstract class type ‘OMContainerIterator<OMWeakReferenceSetElement>’ which has non-virtual destructor will cause undefined behavior". This project has no way to configure the build, so you'll have to get over every error manually...
– Vincent Achard
14 hours ago
I get that doing it manually is one way. However the bottle neck is , how to handle the windows.h file requirement.
– nish
13 hours ago
1
Reading the page that you link to, did you follow the instructions to get the Linux variant of the code?
– Kusalananda♦
12 hours ago
$ cvs checkout AAFLinuxSDK. you mean if there is any other SDK ...
– nish
10 hours ago
2
2
You say the command "gives errors", but you didn't post said errors.
– Joseph Sible
15 hours ago
You say the command "gives errors", but you didn't post said errors.
– Joseph Sible
15 hours ago
I just tried to compile it: it fails for me too, on target OMSSStoredObject.o, with error: "error: deleting object of abstract class type ‘OMContainerIterator<OMWeakReferenceSetElement>’ which has non-virtual destructor will cause undefined behavior". This project has no way to configure the build, so you'll have to get over every error manually...
– Vincent Achard
14 hours ago
I just tried to compile it: it fails for me too, on target OMSSStoredObject.o, with error: "error: deleting object of abstract class type ‘OMContainerIterator<OMWeakReferenceSetElement>’ which has non-virtual destructor will cause undefined behavior". This project has no way to configure the build, so you'll have to get over every error manually...
– Vincent Achard
14 hours ago
I get that doing it manually is one way. However the bottle neck is , how to handle the windows.h file requirement.
– nish
13 hours ago
I get that doing it manually is one way. However the bottle neck is , how to handle the windows.h file requirement.
– nish
13 hours ago
1
1
Reading the page that you link to, did you follow the instructions to get the Linux variant of the code?
– Kusalananda♦
12 hours ago
Reading the page that you link to, did you follow the instructions to get the Linux variant of the code?
– Kusalananda♦
12 hours ago
$ cvs checkout AAFLinuxSDK. you mean if there is any other SDK ...
– nish
10 hours ago
$ cvs checkout AAFLinuxSDK. you mean if there is any other SDK ...
– nish
10 hours ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f535474%2fbuild-executable-for-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f535474%2fbuild-executable-for-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
You say the command "gives errors", but you didn't post said errors.
– Joseph Sible
15 hours ago
I just tried to compile it: it fails for me too, on target OMSSStoredObject.o, with error: "error: deleting object of abstract class type ‘OMContainerIterator<OMWeakReferenceSetElement>’ which has non-virtual destructor will cause undefined behavior". This project has no way to configure the build, so you'll have to get over every error manually...
– Vincent Achard
14 hours ago
I get that doing it manually is one way. However the bottle neck is , how to handle the windows.h file requirement.
– nish
13 hours ago
1
Reading the page that you link to, did you follow the instructions to get the Linux variant of the code?
– Kusalananda♦
12 hours ago
$ cvs checkout AAFLinuxSDK. you mean if there is any other SDK ...
– nish
10 hours ago