Я написал базовую программу для UNIX, которая использует низкоуровневый ввод-вывод. Ничего особенного, вот код, если вы хотите посмотреть на него:
#include <fcntl.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define BUFFSIZE 1024
int main(int argc, char *argv[])
{
// Character buffer
char buffer[BUFFSIZE];
// File 1 descriptor
int file1Desc = 0;
// File 2 descriptor
int file2Desc = 0;
// Output file descriptor
int outfileDesc = 0;
// Count # of chars read in
int n = 0;
// Boolean: no stdin reads?
unsigned char zeroSTDIN = 1;
// Need at least two arguments, no more than 3
if((argc < 3) || (argc > 4)){
printf("ERROR!!!\nUsage: kitty file1 file2 <outfile>\n");
return EXIT_FAILURE;
}
/** TRY TO OPEN FILES 1 AND 2 FOR READING **/
// Check for stdin read flag
if(argv[1][0] == '-' && argv[1][1] == '\0'){
file1Desc = STDIN_FILENO;
zeroSTDIN = 0;
}
// Otherwise just open file 1 for reading
else{
if((file1Desc = open(argv[1],O_RDONLY)) < 0){
perror(argv[1]);
printf("ERROR!!!\nUnable to open %s for reading\n",argv[1]);
return EXIT_FAILURE;
}
}
// Check for stdin read flag
if(argv[2][0] == '-' && argv[2][1] == '\0'){
// Only one read from stdin
if(!zeroSTDIN){
perror(argv[2]);
printf("ERROR!!!\nOnly one read from stdin\n",argv[1]);
}
file2Desc = STDIN_FILENO;
}
// Otherwise just open file2 for reading
else{
if((file2Desc = open(argv[2],O_RDONLY)) < 0){
perror(argv[2]);
printf("ERROR!!!\nUnable to open %s for reading\n",argv[2]);
if(file1Desc != STDIN_FILENO)
close(file1Desc);
return EXIT_FAILURE;
}
}
// If argument specified, try to open output file for writing
if(argc == 4){
if((outfileDesc = open(argv[3],O_WRONLY|O_CREAT|O_TRUNC)) < 0){
perror(argv[2]);
printf("ERROR!!!\nUnable to open %s for writing\n",argv[3]);
// Can't forget these
if(file1Desc != STDIN_FILENO)
close(file1Desc);
if(file2Desc != STDIN_FILENO);
close(file2Desc);
return EXIT_FAILURE;
}
}
// stdout otherwise
else{
outfileDesc = STDOUT_FILENO;
}
// While there is anything left to read from file 1
while((n = read(file1Desc, buffer, BUFFSIZE)) > 0){
// Write n chars to output file
if(write(outfileDesc, buffer, n) != n){
printf("Error writing to output file from file 1\n");
return EXIT_FAILURE;
}
}
// While there is anything left to read from file 2
while((n = read(file2Desc, buffer, BUFFSIZE)) > 0){
// Write n chars to output file
if(write(outfileDesc, buffer, n) != n){
printf("Error writing to output file from file 1\n");
return EXIT_FAILURE;
}
}
// Exit program
if(file1Desc != STDIN_FILENO)
close(file1Desc);
if(file2Desc != STDIN_FILENO);
close(file2Desc);
if(argc == 4)
close(outfileDesc);
return 0;
}
Компилируется без каких-либо специальных опций. Тем не менее, я хочу скомпилировать в 32-битном режиме. Я использую 64-разрядную версию Fedora 15, и по умолчанию используется 64-разрядная компиляция.
Я пытаюсь использовать следующие опции:
gcc -S -m32 -O3 -o llio.asm llio.c
Итак, я хочу посмотреть на производимый код сборки, но я получаю следующие ошибки компиляции:
In file included from /usr/include/features.h:387:0,
from /usr/include/fcntl.h:27,
from kitty.c:1:
/usr/include/gnu/stubs.h:7:27: fatal error: gnu/stubs-32.h: No such file or directory
compilation terminated.
Кажется, этот сайт знает мою проблему: http://www.cyberciti.biz/faq/x86_64-linux-error-gnustub-32h-missing-error-and-solution/
Однако я посмотрел, и эти файлы, похоже, уже установлены. Чего мне не хватает?